mirror of https://github.com/elk-zone/elk.git
22 lines
556 B
TypeScript
22 lines
556 B
TypeScript
|
import type { FeatureFlags } from './featureFlags'
|
||
|
import type { ColorMode, FontSize } from '~/types'
|
||
|
import { STORAGE_KEY_SETTINGS } from '~/constants'
|
||
|
|
||
|
export interface UserSettings {
|
||
|
featureFlags: Partial<FeatureFlags>
|
||
|
colorMode?: ColorMode
|
||
|
fontSize?: FontSize
|
||
|
lang?: string
|
||
|
zenMode?: boolean
|
||
|
}
|
||
|
|
||
|
export function getDefaultUserSettings(): UserSettings {
|
||
|
return {
|
||
|
featureFlags: {},
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export const userSettings = process.server
|
||
|
? computed(getDefaultUserSettings)
|
||
|
: useUserLocalStorage(STORAGE_KEY_SETTINGS, getDefaultUserSettings)
|