elk/composables/fontSize.ts

42 lines
1 KiB
TypeScript
Raw Normal View History

2022-12-23 23:19:17 +00:00
import type { InjectionKey, Ref } from 'vue'
2022-12-23 22:47:13 +00:00
import { STORAGE_KEY_FONT_SIZE } from '~/constants'
export type FontSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl'
2022-12-23 23:19:17 +00:00
export const InjectionKeyFontSize = Symbol('fontSize') as InjectionKey<Ref<FontSize>>
2022-12-23 22:47:13 +00:00
export function setFontSize(size: FontSize) {
2022-12-23 23:19:17 +00:00
inject(InjectionKeyFontSize)!.value = size
}
export function getFontSize() {
return inject(InjectionKeyFontSize)!
2022-12-23 22:47:13 +00:00
}
export const fontSizeMap = {
xs: '13px',
sm: '14px',
md: '15px',
lg: '16px',
xl: '17px',
}
2022-12-23 23:19:17 +00:00
export async function setupFontSize() {
const fontSize = useCookie<FontSize>(STORAGE_KEY_FONT_SIZE, { default: () => 'md' })
getCurrentInstance()?.appContext.app.provide(InjectionKeyFontSize, fontSize)
if (!process.server) {
watchEffect(() => {
document.documentElement.style.setProperty('--font-size', fontSizeMap[fontSize.value || 'md'])
})
}
else {
useHead({
style: [
{
innerHTML: `:root { --font-size: ${fontSizeMap[fontSize.value || 'md']}; }`,
},
],
})
}
2022-12-23 22:47:13 +00:00
}