elk/composables/settings/definition.ts

63 wiersze
1.5 KiB
TypeScript
Czysty Zwykły widok Historia

2023-01-15 12:23:47 +00:00
import { DEFAULT_FONT_SIZE } from '~/constants'
export type FontSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl'
export type ColorMode = 'light' | 'dark' | 'system'
2023-01-15 14:19:22 +00:00
export interface PreferencesSettings {
hideBoostCount: boolean
hideFavoriteCount: boolean
hideFollowerCount: boolean
2023-01-15 14:19:22 +00:00
experimentalVirtualScroller: boolean
experimentalGitHubCards: boolean
experimentalUserPicker: boolean
}
export interface UserSettings {
2023-01-15 14:19:22 +00:00
preferences: Partial<PreferencesSettings>
colorMode?: ColorMode
fontSize: FontSize
language: string
2023-01-14 12:58:32 +00:00
zenMode: boolean
2023-01-16 10:26:19 +00:00
themeColors?: ThemeColors
}
export interface ThemeColors {
'--theme-color-name': string
'--c-primary': string
'--c-primary-active': string
'--c-primary-light': string
'--c-primary-fade': string
'--c-dark-primary': string
'--c-dark-primary-active': string
'--c-dark-primary-light': string
'--c-dark-primary-fade': string
'--rgb-primary': string
'--rgb-dark-primary': string
}
2023-01-15 12:23:47 +00:00
export function getDefaultLanguage(languages: string[]) {
if (process.server)
return 'en-US'
return matchLanguages(languages, navigator.languages) || 'en-US'
}
export function getDefaultUserSettings(locales: string[]): UserSettings {
return {
2023-01-15 12:23:47 +00:00
language: getDefaultLanguage(locales),
fontSize: DEFAULT_FONT_SIZE,
2023-01-14 12:58:32 +00:00
zenMode: false,
2023-01-15 14:19:22 +00:00
preferences: {},
}
}
2023-01-15 14:19:22 +00:00
export const DEFAULT__PREFERENCES_SETTINGS: PreferencesSettings = {
hideBoostCount: false,
hideFavoriteCount: false,
hideFollowerCount: false,
experimentalVirtualScroller: true,
experimentalGitHubCards: true,
experimentalUserPicker: true,
}