Client - detect navigator language on startup
This commit is contained in:
parent
0e10abb276
commit
95c6bd095c
@ -35,6 +35,7 @@
|
|||||||
import { ROOT_STORE } from '@/store/constants'
|
import { ROOT_STORE } from '@/store/constants'
|
||||||
import { TAppConfig } from '@/types/application'
|
import { TAppConfig } from '@/types/application'
|
||||||
import { useStore } from '@/use/useStore'
|
import { useStore } from '@/use/useStore'
|
||||||
|
import { localeFromLanguage } from '@/utils/locales'
|
||||||
|
|
||||||
const store = useStore()
|
const store = useStore()
|
||||||
|
|
||||||
@ -47,7 +48,10 @@
|
|||||||
const hideScrollBar = ref(false)
|
const hideScrollBar = ref(false)
|
||||||
const displayScrollButton = ref(false)
|
const displayScrollButton = ref(false)
|
||||||
|
|
||||||
onBeforeMount(() => store.dispatch(ROOT_STORE.ACTIONS.GET_APPLICATION_CONFIG))
|
onBeforeMount(() => {
|
||||||
|
initLanguage()
|
||||||
|
store.dispatch(ROOT_STORE.ACTIONS.GET_APPLICATION_CONFIG)
|
||||||
|
})
|
||||||
onMounted(() => scroll())
|
onMounted(() => scroll())
|
||||||
|
|
||||||
function updateHideScrollBar(isMenuOpen: boolean) {
|
function updateHideScrollBar(isMenuOpen: boolean) {
|
||||||
@ -74,6 +78,18 @@
|
|||||||
displayScrollButton.value = false
|
displayScrollButton.value = false
|
||||||
}, 300)
|
}, 300)
|
||||||
}
|
}
|
||||||
|
function initLanguage() {
|
||||||
|
let language = 'en'
|
||||||
|
try {
|
||||||
|
const navigatorLanguage = navigator.language.split('-')[0]
|
||||||
|
if (navigatorLanguage in localeFromLanguage) {
|
||||||
|
language = navigatorLanguage
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
language = 'en'
|
||||||
|
}
|
||||||
|
store.dispatch(ROOT_STORE.ACTIONS.UPDATE_APPLICATION_LANGUAGE, language)
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
|
Loading…
Reference in New Issue
Block a user