You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
import { defineStore } from 'pinia'
|
|
|
|
|
|
|
|
export const useConfigStore = defineStore('configStore', () => {
|
|
|
|
const { isMobileMode: globalIsMobile } = useGlobal()
|
|
|
|
const isMobileMode = ref(window.innerWidth < 820)
|
|
|
|
|
|
|
|
const isViewPortMobile = () => window.innerWidth < 820
|
|
|
|
|
|
|
|
const onViewPortResize = () => {
|
|
|
|
isMobileMode.value = isViewPortMobile()
|
|
|
|
}
|
|
|
|
|
|
|
|
window.addEventListener('DOMContentLoaded', onViewPortResize)
|
|
|
|
window.addEventListener('resize', onViewPortResize)
|
|
|
|
|
|
|
|
watch(
|
|
|
|
isMobileMode,
|
|
|
|
() => {
|
|
|
|
globalIsMobile.value = isMobileMode.value
|
|
|
|
|
|
|
|
// Change --topbar-height css variable
|
|
|
|
document.documentElement.style.setProperty('--topbar-height', isMobileMode.value ? '3.25rem' : '3.1rem')
|
|
|
|
},
|
|
|
|
{
|
|
|
|
immediate: true,
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
|
|
|
return {
|
|
|
|
isMobileMode,
|
|
|
|
isViewPortMobile,
|
|
|
|
}
|
|
|
|
})
|