vikunja-frontend/src/helpers/hourToSalutation.ts

24 lines
459 B
TypeScript
Raw Normal View History

2021-12-30 17:14:43 +01:00
const TRANSLATION_KEY_PREFIX = 'home.welcome'
export function hourToSalutation(now: Date = new Date()): String {
const hours = new Date(now).getHours()
if (hours < 5) {
2021-12-30 17:14:43 +01:00
return `${TRANSLATION_KEY_PREFIX}Night`
}
if (hours < 11) {
2021-12-30 17:14:43 +01:00
return `${TRANSLATION_KEY_PREFIX}Morning`
}
if (hours < 18) {
2021-12-30 17:14:43 +01:00
return `${TRANSLATION_KEY_PREFIX}Day`
}
if (hours < 23) {
2021-12-30 17:14:43 +01:00
return `${TRANSLATION_KEY_PREFIX}Evening`
}
2021-12-30 17:14:43 +01:00
return `${TRANSLATION_KEY_PREFIX}Night`
}