mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-02 23:19:57 +00:00
40 lines
970 B
TypeScript
40 lines
970 B
TypeScript
import type { InjectionKey, Ref } from 'vue'
|
|
import { STORAGE_KEY_FONT_SIZE } from '~/constants'
|
|
|
|
const InjectionKeyFontSize = Symbol('fontSize') as InjectionKey<Ref<FontSize>>
|
|
const DEFAULT = 'md'
|
|
|
|
export type FontSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl'
|
|
|
|
export function getFontSize() {
|
|
return inject(InjectionKeyFontSize)!
|
|
}
|
|
|
|
const fontSizeMap = {
|
|
xs: '13px',
|
|
sm: '14px',
|
|
md: '15px',
|
|
lg: '16px',
|
|
xl: '17px',
|
|
}
|
|
|
|
export async function setupFontSize() {
|
|
const fontSize = useCookie<FontSize>(STORAGE_KEY_FONT_SIZE, { default: () => DEFAULT })
|
|
getCurrentInstance()?.appContext.app.provide(InjectionKeyFontSize, fontSize)
|
|
|
|
if (!process.server) {
|
|
watchEffect(() => {
|
|
document.documentElement.style.setProperty('--font-size', fontSizeMap[fontSize.value || DEFAULT])
|
|
})
|
|
}
|
|
else {
|
|
useHead({
|
|
style: [
|
|
{
|
|
innerHTML: `:root { --font-size: ${fontSizeMap[fontSize.value || DEFAULT]}; }`,
|
|
},
|
|
],
|
|
})
|
|
}
|
|
}
|