2023-01-15 15:23:47 +03:00
|
|
|
import { DEFAULT_FONT_SIZE } from '~/constants'
|
2023-01-12 20:52:52 +03:00
|
|
|
|
2023-01-22 23:18:03 +03:00
|
|
|
export type FontSize = `${number}px`
|
|
|
|
|
|
|
|
// Temporary type for backward compatibility
|
|
|
|
export type OldFontSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl'
|
|
|
|
|
2023-01-12 21:29:10 +03:00
|
|
|
export type ColorMode = 'light' | 'dark' | 'system'
|
2023-01-12 20:52:52 +03:00
|
|
|
|
2023-01-15 17:19:22 +03:00
|
|
|
export interface PreferencesSettings {
|
2023-02-03 20:12:48 +03:00
|
|
|
hideAltIndicatorOnPosts: boolean
|
2023-01-12 20:52:52 +03:00
|
|
|
hideBoostCount: boolean
|
2023-01-26 15:41:43 +03:00
|
|
|
hideReplyCount: boolean
|
2023-01-12 20:52:52 +03:00
|
|
|
hideFavoriteCount: boolean
|
|
|
|
hideFollowerCount: boolean
|
2023-01-21 13:19:03 +03:00
|
|
|
hideTranslation: boolean
|
2023-02-04 20:02:05 +03:00
|
|
|
hideUsernameEmojis: boolean
|
2023-01-24 23:46:33 +03:00
|
|
|
hideAccountHoverCard: boolean
|
2023-01-17 15:55:36 +03:00
|
|
|
grayscaleMode: boolean
|
2023-01-19 21:33:50 +03:00
|
|
|
enableAutoplay: boolean
|
2023-02-15 13:34:23 +03:00
|
|
|
enableDataSaving: boolean
|
2023-02-01 17:43:27 +03:00
|
|
|
enablePinchToZoom: boolean
|
2023-04-23 13:21:33 +03:00
|
|
|
zenMode: boolean
|
2023-01-15 17:19:22 +03:00
|
|
|
experimentalVirtualScroller: boolean
|
|
|
|
experimentalGitHubCards: boolean
|
|
|
|
experimentalUserPicker: boolean
|
2023-01-12 20:52:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
export interface UserSettings {
|
2023-01-15 17:19:22 +03:00
|
|
|
preferences: Partial<PreferencesSettings>
|
2023-01-12 20:52:52 +03:00
|
|
|
colorMode?: ColorMode
|
|
|
|
fontSize: FontSize
|
|
|
|
language: string
|
2023-01-29 15:18:49 +03:00
|
|
|
disabledTranslationLanguages: string[]
|
2023-01-16 13:26:19 +03: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 20:52:52 +03:00
|
|
|
}
|
|
|
|
|
2023-01-15 15:23:47 +03:00
|
|
|
export function getDefaultLanguage(languages: string[]) {
|
|
|
|
if (process.server)
|
|
|
|
return 'en-US'
|
|
|
|
return matchLanguages(languages, navigator.languages) || 'en-US'
|
|
|
|
}
|
|
|
|
|
2023-01-15 17:19:22 +03:00
|
|
|
export const DEFAULT__PREFERENCES_SETTINGS: PreferencesSettings = {
|
2023-02-03 20:12:48 +03:00
|
|
|
hideAltIndicatorOnPosts: false,
|
2023-01-12 20:52:52 +03:00
|
|
|
hideBoostCount: false,
|
2023-01-26 15:41:43 +03:00
|
|
|
hideReplyCount: false,
|
2023-01-12 20:52:52 +03:00
|
|
|
hideFavoriteCount: false,
|
|
|
|
hideFollowerCount: false,
|
2023-01-21 13:19:03 +03:00
|
|
|
hideTranslation: false,
|
2023-02-04 20:02:05 +03:00
|
|
|
hideUsernameEmojis: false,
|
2023-01-24 23:46:33 +03:00
|
|
|
hideAccountHoverCard: false,
|
2023-01-17 15:55:36 +03:00
|
|
|
grayscaleMode: false,
|
2023-01-19 21:33:50 +03:00
|
|
|
enableAutoplay: true,
|
2023-02-15 13:34:23 +03:00
|
|
|
enableDataSaving: false,
|
2023-02-01 17:43:27 +03:00
|
|
|
enablePinchToZoom: false,
|
2023-04-23 13:21:33 +03:00
|
|
|
zenMode: false,
|
2023-01-12 20:52:52 +03:00
|
|
|
experimentalVirtualScroller: true,
|
|
|
|
experimentalGitHubCards: true,
|
|
|
|
experimentalUserPicker: true,
|
|
|
|
}
|
2023-04-23 13:21:33 +03:00
|
|
|
|
|
|
|
export function getDefaultUserSettings(locales: string[]): UserSettings {
|
|
|
|
return {
|
|
|
|
language: getDefaultLanguage(locales),
|
|
|
|
fontSize: DEFAULT_FONT_SIZE,
|
|
|
|
disabledTranslationLanguages: [],
|
|
|
|
preferences: DEFAULT__PREFERENCES_SETTINGS,
|
|
|
|
}
|
|
|
|
}
|