chore: return boolean

userquin/feat-use-best-lang-match-for-last-update
userquin 10 months ago
parent 8d9b59a3bd
commit aa24dcdb2d

@ -13,20 +13,20 @@ const datetime = ref('')
// set time on mounted hook to avoid hydration mismatch due to // set time on mounted hook to avoid hydration mismatch due to
// potential differences in timezones of the server and clients // potential differences in timezones of the server and clients
onMounted(() => { onMounted(() => {
function findBestLocaleMatch(pageLocale: string): string | undefined { function findBestLocaleMatch(pageLocale: string) {
return navigator.languages.find((userLang) => { return navigator.languages.find((userLang) => {
if (pageLocale === userLang) if (pageLocale === userLang)
return pageLocale return true
// Edge browser: case for ca-valencia // Edge browser: case for ca-valencia
if (pageLocale === 'ca-valencia' && userLang === 'ca-Es-VALENCIA') if (pageLocale === 'ca-valencia' && userLang === 'ca-Es-VALENCIA')
return pageLocale return true
// add iso-639 support for Latin America // add iso-639 support for Latin America
if (userLang.startsWith('es-') && userLang !== 'es-ES' && pageLocale === 'es-419') if (userLang.startsWith('es-') && userLang !== 'es-ES' && pageLocale === 'es-419')
return pageLocale return true
return userLang.startsWith(pageLocale) ? pageLocale : undefined return userLang.startsWith(pageLocale)
}) })
} }
watchEffect(() => { watchEffect(() => {

Loading…
Cancel
Save