mirror of
https://github.com/koel/koel
synced 2024-12-20 09:33:23 +00:00
43 lines
1.2 KiB
TypeScript
43 lines
1.2 KiB
TypeScript
/**
|
|
* Convert a duration in seconds into H:i:s format.
|
|
* If H is 0, it will be omitted.
|
|
*/
|
|
export const secondsToHis = (d: number): string => {
|
|
d = ~~d
|
|
|
|
const s = d % 60
|
|
const sString = s < 10 ? `0${s}` : String(s)
|
|
|
|
const i = Math.floor((d / 60) % 60)
|
|
const iString = i < 10 ? `0${i}` : String(i)
|
|
|
|
const h = Math.floor(d / 3600)
|
|
const hString = h < 10 ? `0${h}` : String(h)
|
|
|
|
return (hString === '00' ? '' : `${hString}:`) + iString + ':' + sString
|
|
}
|
|
|
|
export type ServerValidationError = {
|
|
message: string
|
|
errors: Record<string, string[]>
|
|
}
|
|
/**
|
|
* Parse the validation error from the server into a flattened array of messages.
|
|
*/
|
|
export const parseValidationError = (serverError: ServerValidationError): string[] => {
|
|
let messages = [] as string[]
|
|
|
|
Object.keys(serverError.errors).forEach(key => {
|
|
messages = messages.concat(...serverError.errors[key])
|
|
})
|
|
|
|
return messages
|
|
}
|
|
|
|
/**
|
|
* Turn <br> into new line characters.
|
|
*/
|
|
export const br2nl = (str: string): string => str ? str.replace(/<br\s*[/]?>/gi, '\n') : ''
|
|
|
|
export const slugToTitle = (slug: string, separator = '-'): string =>
|
|
slug.split(separator).map(w => w.charAt(0).toUpperCase() + w.substring(1).toLowerCase()).join(' ')
|