2023-01-15 12:23:47 +00:00
|
|
|
import { DEFAULT_FONT_SIZE } from '~/constants'
|
2023-01-12 17:52:52 +00:00
|
|
|
|
2023-01-22 20:18:03 +00:00
|
|
|
export type FontSize = `${number}px`
|
|
|
|
|
|
|
|
// Temporary type for backward compatibility
|
|
|
|
export type OldFontSize = '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
|
|
|
|
2023-01-15 14:19:22 +00:00
|
|
|
export interface PreferencesSettings {
|
2023-01-12 17:52:52 +00:00
|
|
|
hideBoostCount: boolean
|
2023-01-26 12:41:43 +00:00
|
|
|
hideReplyCount: boolean
|
2023-01-12 17:52:52 +00:00
|
|
|
hideFavoriteCount: boolean
|
|
|
|
hideFollowerCount: boolean
|
2023-01-21 10:19:03 +00:00
|
|
|
hideTranslation: boolean
|
2023-01-24 20:46:33 +00:00
|
|
|
hideAccountHoverCard: boolean
|
2023-01-17 12:55:36 +00:00
|
|
|
grayscaleMode: boolean
|
2023-01-19 18:33:50 +00:00
|
|
|
enableAutoplay: boolean
|
2023-02-01 14:43:27 +00:00
|
|
|
enablePinchToZoom: boolean
|
2023-01-15 14:19:22 +00:00
|
|
|
experimentalVirtualScroller: boolean
|
|
|
|
experimentalGitHubCards: boolean
|
|
|
|
experimentalUserPicker: boolean
|
2023-01-12 17:52:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export interface UserSettings {
|
2023-01-15 14:19:22 +00:00
|
|
|
preferences: Partial<PreferencesSettings>
|
2023-01-12 17:52:52 +00:00
|
|
|
colorMode?: ColorMode
|
|
|
|
fontSize: FontSize
|
|
|
|
language: string
|
2023-01-29 12:18:49 +00:00
|
|
|
disabledTranslationLanguages: 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-12 17:52:52 +00:00
|
|
|
}
|
|
|
|
|
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 {
|
2023-01-12 17:52:52 +00:00
|
|
|
return {
|
2023-01-15 12:23:47 +00:00
|
|
|
language: getDefaultLanguage(locales),
|
2023-01-12 17:52:52 +00:00
|
|
|
fontSize: DEFAULT_FONT_SIZE,
|
2023-01-29 12:18:49 +00:00
|
|
|
disabledTranslationLanguages: [],
|
2023-01-14 12:58:32 +00:00
|
|
|
zenMode: false,
|
2023-01-15 14:19:22 +00:00
|
|
|
preferences: {},
|
2023-01-12 17:52:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-15 14:19:22 +00:00
|
|
|
export const DEFAULT__PREFERENCES_SETTINGS: PreferencesSettings = {
|
2023-01-12 17:52:52 +00:00
|
|
|
hideBoostCount: false,
|
2023-01-26 12:41:43 +00:00
|
|
|
hideReplyCount: false,
|
2023-01-12 17:52:52 +00:00
|
|
|
hideFavoriteCount: false,
|
|
|
|
hideFollowerCount: false,
|
2023-01-21 10:19:03 +00:00
|
|
|
hideTranslation: false,
|
2023-01-24 20:46:33 +00:00
|
|
|
hideAccountHoverCard: false,
|
2023-01-17 12:55:36 +00:00
|
|
|
grayscaleMode: false,
|
2023-01-19 18:33:50 +00:00
|
|
|
enableAutoplay: true,
|
2023-02-01 14:43:27 +00:00
|
|
|
enablePinchToZoom: false,
|
2023-01-12 17:52:52 +00:00
|
|
|
experimentalVirtualScroller: true,
|
|
|
|
experimentalGitHubCards: true,
|
|
|
|
experimentalUserPicker: true,
|
|
|
|
}
|