Feature(custom): add tk analytic

This commit is contained in:
Kuingsmile
2023-10-13 10:11:49 +08:00
parent 567af4588b
commit e8ea905a94
7 changed files with 94 additions and 2 deletions

View File

@@ -57,6 +57,30 @@ export const showMessageBox = (options: any) => {
})
}
export const calcDurationRange = (duration: number) => {
if (duration < 1000) {
return 500
} else if (duration < 1500) {
return 1000
} else if (duration < 3000) {
return 2000
} else if (duration < 5000) {
return 3000
} else if (duration < 7000) {
return 5000
} else if (duration < 10000) {
return 8000
} else if (duration < 12000) {
return 10000
} else if (duration < 20000) {
return 15000
} else if (duration < 30000) {
return 20000
}
// max range
return 100000
}
/**
* macOS public.file-url will get encoded file path,
* so we need to decode it