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