2023-01-12 17:52:52 +00:00
|
|
|
import { DEFAULT_FONT_SIZE, DEFAULT_LANGUAGE } from '~/constants'
|
|
|
|
|
|
|
|
export type FontSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl'
|
2023-01-12 18:29:10 +00:00
|
|
|
export type ColorMode = 'light' | 'dark' | 'system'
|
2023-01-12 17:52:52 +00:00
|
|
|
|
|
|
|
export interface FeatureFlags {
|
|
|
|
experimentalVirtualScroller: boolean
|
|
|
|
experimentalGitHubCards: boolean
|
|
|
|
experimentalUserPicker: boolean
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface WellnessSettings {
|
|
|
|
hideBoostCount: boolean
|
|
|
|
hideFavoriteCount: boolean
|
|
|
|
hideFollowerCount: boolean
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface UserSettings {
|
|
|
|
featureFlags: Partial<FeatureFlags>
|
|
|
|
wellnessSettings: Partial<WellnessSettings>
|
|
|
|
colorMode?: ColorMode
|
|
|
|
fontSize: FontSize
|
|
|
|
language: string
|
2023-01-14 12:58:32 +00:00
|
|
|
zenMode: boolean
|
2023-01-12 17:52:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export function getDefaultUserSettings(): UserSettings {
|
|
|
|
return {
|
|
|
|
language: DEFAULT_LANGUAGE,
|
|
|
|
fontSize: DEFAULT_FONT_SIZE,
|
2023-01-14 12:58:32 +00:00
|
|
|
zenMode: false,
|
2023-01-12 17:52:52 +00:00
|
|
|
featureFlags: {},
|
|
|
|
wellnessSettings: {},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export const DEFAULT_WELLNESS_SETTINGS: WellnessSettings = {
|
|
|
|
hideBoostCount: false,
|
|
|
|
hideFavoriteCount: false,
|
|
|
|
hideFollowerCount: false,
|
|
|
|
}
|
|
|
|
|
|
|
|
export const DEFAULT_FEATURE_FLAGS: FeatureFlags = {
|
|
|
|
experimentalVirtualScroller: true,
|
|
|
|
experimentalGitHubCards: true,
|
|
|
|
experimentalUserPicker: true,
|
|
|
|
}
|