2022-05-22 09:40:59 -07:00
|
|
|
import Cookies from 'js-cookie'
|
2022-06-05 07:10:44 -07:00
|
|
|
import { setPreset, applyTheme, applyConfig } from '../services/style_setter/style_setter.js'
|
2020-06-08 08:22:07 -07:00
|
|
|
import messages from '../i18n/messages'
|
2022-05-22 09:40:59 -07:00
|
|
|
import localeService from '../services/locale/locale.service.js'
|
|
|
|
|
|
|
|
const BACKEND_LANGUAGE_COOKIE_NAME = 'userLanguage'
|
2017-02-14 13:21:23 -08:00
|
|
|
|
2018-08-25 03:12:33 -07:00
|
|
|
const browserLocale = (window.navigator.language || 'en').split('-')[0]
|
|
|
|
|
2020-05-26 12:50:37 -07:00
|
|
|
/* TODO this is a bit messy.
|
|
|
|
* We need to declare settings with their types and also deal with
|
|
|
|
* instance-default settings in some way, hopefully try to avoid copy-pasta
|
|
|
|
* in general.
|
|
|
|
*/
|
|
|
|
export const multiChoiceProperties = [
|
|
|
|
'postContentType',
|
2022-01-09 22:16:33 -08:00
|
|
|
'subjectLineBehavior',
|
2021-08-06 17:18:27 -07:00
|
|
|
'conversationDisplay', // tree | linear
|
2021-09-05 13:35:47 -07:00
|
|
|
'conversationOtherRepliesButton', // below | inside
|
2022-08-09 00:44:20 -07:00
|
|
|
'mentionLinkDisplay', // short | full_for_remote | full
|
|
|
|
'userPopoverAvatarAction' // close | zoom | open
|
2020-05-26 12:50:37 -07:00
|
|
|
]
|
|
|
|
|
2019-09-29 13:47:26 -07:00
|
|
|
export const defaultState = {
|
2022-02-22 13:31:40 -08:00
|
|
|
expertLevel: 0, // used to track which settings to show and hide
|
2017-02-22 15:04:47 -08:00
|
|
|
colors: {},
|
2020-01-21 14:37:19 -08:00
|
|
|
theme: undefined,
|
|
|
|
customTheme: undefined,
|
|
|
|
customThemeSource: undefined,
|
2019-11-10 11:42:01 -08:00
|
|
|
hideISP: false,
|
2020-12-16 08:25:07 -08:00
|
|
|
hideInstanceWallpaper: false,
|
2021-06-14 12:42:56 -07:00
|
|
|
hideShoutbox: false,
|
2019-09-29 13:47:26 -07:00
|
|
|
// bad name: actually hides posts of muted USERS
|
2019-03-02 05:07:14 -08:00
|
|
|
hideMutedPosts: undefined, // instance default
|
2021-06-08 06:14:01 -07:00
|
|
|
hideMutedThreads: undefined, // instance default
|
|
|
|
hideWordFilteredPosts: undefined, // instance default
|
2022-02-28 12:07:20 -08:00
|
|
|
muteBotStatuses: undefined, // instance default
|
2018-09-25 04:47:02 -07:00
|
|
|
collapseMessageWithSubject: undefined, // instance default
|
2019-09-23 10:29:01 -07:00
|
|
|
padEmoji: true,
|
2017-02-22 15:38:05 -08:00
|
|
|
hideAttachments: false,
|
2017-03-04 12:25:59 -08:00
|
|
|
hideAttachmentsInConv: false,
|
2019-02-27 06:38:58 -08:00
|
|
|
maxThumbnails: 16,
|
2017-04-09 06:53:23 -07:00
|
|
|
hideNsfw: true,
|
2018-12-11 14:12:29 -08:00
|
|
|
preloadImage: true,
|
2018-08-15 02:51:21 -07:00
|
|
|
loopVideo: true,
|
|
|
|
loopVideoSilentOnly: true,
|
2017-11-12 15:06:48 -08:00
|
|
|
streaming: false,
|
2020-02-11 04:24:51 -08:00
|
|
|
emojiReactionsOnTimeline: true,
|
2021-06-14 13:41:34 -07:00
|
|
|
alwaysShowNewPostButton: false,
|
2019-04-25 09:32:21 -07:00
|
|
|
autohideFloatingPostButton: false,
|
2018-08-15 02:51:21 -07:00
|
|
|
pauseOnUnfocused: true,
|
2022-02-22 13:32:12 -08:00
|
|
|
stopGifs: true,
|
2018-08-24 12:04:26 -07:00
|
|
|
replyVisibility: 'all',
|
2022-04-12 11:18:06 -07:00
|
|
|
thirdColumnMode: 'notifications',
|
2018-08-28 11:21:29 -07:00
|
|
|
notificationVisibility: {
|
|
|
|
follows: true,
|
|
|
|
mentions: true,
|
|
|
|
likes: true,
|
2019-12-10 07:00:10 -08:00
|
|
|
repeats: true,
|
2020-02-11 04:24:51 -08:00
|
|
|
moves: true,
|
2021-03-01 06:21:35 -08:00
|
|
|
emojiReactions: true,
|
2020-05-07 06:10:53 -07:00
|
|
|
followRequest: true,
|
2021-01-06 08:31:34 -08:00
|
|
|
reports: true,
|
2022-05-20 13:41:45 -07:00
|
|
|
chatMention: true,
|
|
|
|
polls: true
|
2018-08-28 11:21:29 -07:00
|
|
|
},
|
2018-12-19 22:15:30 -08:00
|
|
|
webPushNotifications: false,
|
2018-06-19 06:17:50 -07:00
|
|
|
muteWords: [],
|
2018-08-25 03:12:33 -07:00
|
|
|
highlight: {},
|
2018-09-25 04:47:02 -07:00
|
|
|
interfaceLanguage: browserLocale,
|
2019-05-07 09:13:45 -07:00
|
|
|
hideScopeNotice: false,
|
2019-12-10 11:30:27 -08:00
|
|
|
useStreamingApi: false,
|
2021-05-26 15:22:55 -07:00
|
|
|
sidebarRight: undefined, // instance default
|
2018-09-25 04:47:02 -07:00
|
|
|
scopeCopy: undefined, // instance default
|
2018-12-02 19:47:35 -08:00
|
|
|
subjectLineBehavior: undefined, // instance default
|
2019-02-05 03:57:11 -08:00
|
|
|
alwaysShowSubjectInput: undefined, // instance default
|
2019-03-03 05:15:41 -08:00
|
|
|
postContentType: undefined, // instance default
|
2019-09-29 13:47:26 -07:00
|
|
|
minimalScopesMode: undefined, // instance default
|
|
|
|
// This hides statuses filtered via a word filter
|
|
|
|
hideFilteredStatuses: undefined, // instance default
|
|
|
|
playVideosInModal: false,
|
|
|
|
useOneClickNsfw: false,
|
2022-02-22 13:32:12 -08:00
|
|
|
useContainFit: true,
|
2022-04-07 05:11:23 -07:00
|
|
|
disableStickyHeaders: false,
|
|
|
|
showScrollbars: false,
|
2022-08-08 13:42:22 -07:00
|
|
|
userPopoverAvatarAction: 'close',
|
2022-07-19 09:33:48 -07:00
|
|
|
userPopoverOverlay: true,
|
2022-08-06 07:26:43 -07:00
|
|
|
sidebarColumnWidth: '25rem',
|
|
|
|
contentColumnWidth: '45rem',
|
|
|
|
notifsColumnWidth: '25rem',
|
2022-08-16 16:33:39 -07:00
|
|
|
navbarColumnStretch: false,
|
2019-11-13 14:47:20 -08:00
|
|
|
greentext: undefined, // instance default
|
2022-01-09 21:37:39 -08:00
|
|
|
useAtIcon: undefined, // instance default
|
2022-01-09 22:16:33 -08:00
|
|
|
mentionLinkDisplay: undefined, // instance default
|
|
|
|
mentionLinkShowTooltip: undefined, // instance default
|
2022-01-09 23:05:41 -08:00
|
|
|
mentionLinkShowAvatar: undefined, // instance default
|
2022-01-09 23:31:26 -08:00
|
|
|
mentionLinkFadeDomain: undefined, // instance default
|
2022-02-03 12:34:57 -08:00
|
|
|
mentionLinkShowYous: undefined, // instance default
|
|
|
|
mentionLinkBoldenYou: undefined, // instance default
|
2019-09-29 13:47:26 -07:00
|
|
|
hidePostStats: undefined, // instance default
|
2022-02-28 13:35:00 -08:00
|
|
|
hideBotIndication: undefined, // instance default
|
2020-09-29 03:18:37 -07:00
|
|
|
hideUserStats: undefined, // instance default
|
2021-02-23 00:00:23 -08:00
|
|
|
virtualScrolling: undefined, // instance default
|
2021-08-06 17:18:27 -07:00
|
|
|
sensitiveByDefault: undefined, // instance default
|
2021-08-07 17:14:14 -07:00
|
|
|
conversationDisplay: undefined, // instance default
|
2022-03-06 10:57:48 -08:00
|
|
|
conversationTreeAdvanced: undefined, // instance default
|
2021-09-05 13:35:47 -07:00
|
|
|
conversationOtherRepliesButton: undefined, // instance default
|
2022-03-06 11:13:35 -08:00
|
|
|
conversationTreeFadeAncestors: undefined, // instance default
|
2022-03-07 16:30:24 -08:00
|
|
|
maxDepthInThread: undefined // instance default
|
2017-02-14 13:21:23 -08:00
|
|
|
}
|
|
|
|
|
2019-09-29 12:33:15 -07:00
|
|
|
// caching the instance default properties
|
|
|
|
export const instanceDefaultProperties = Object.entries(defaultState)
|
|
|
|
.filter(([key, value]) => value === undefined)
|
|
|
|
.map(([key, value]) => key)
|
|
|
|
|
2017-02-14 13:21:23 -08:00
|
|
|
const config = {
|
2020-09-30 15:43:07 -07:00
|
|
|
state: { ...defaultState },
|
2019-09-29 12:33:15 -07:00
|
|
|
getters: {
|
2020-09-30 15:43:07 -07:00
|
|
|
defaultConfig (state, getters, rootState, rootGetters) {
|
2019-09-29 12:33:15 -07:00
|
|
|
const { instance } = rootState
|
2020-09-30 15:43:07 -07:00
|
|
|
return {
|
|
|
|
...defaultState,
|
|
|
|
...Object.fromEntries(
|
|
|
|
instanceDefaultProperties.map(key => [key, instance[key]])
|
|
|
|
)
|
|
|
|
}
|
|
|
|
},
|
|
|
|
mergedConfig (state, getters, rootState, rootGetters) {
|
|
|
|
const { defaultConfig } = rootGetters
|
2019-09-29 12:33:15 -07:00
|
|
|
return {
|
2020-09-30 15:43:07 -07:00
|
|
|
...defaultConfig,
|
2021-06-14 00:58:32 -07:00
|
|
|
// Do not override with undefined
|
|
|
|
...Object.fromEntries(Object.entries(state).filter(([k, v]) => v !== undefined))
|
2019-09-29 12:33:15 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2017-02-14 13:21:23 -08:00
|
|
|
mutations: {
|
|
|
|
setOption (state, { name, value }) {
|
2021-04-25 03:24:08 -07:00
|
|
|
state[name] = value
|
2018-06-19 06:17:50 -07:00
|
|
|
},
|
2018-08-04 19:18:04 -07:00
|
|
|
setHighlight (state, { user, color, type }) {
|
|
|
|
const data = this.state.config.highlight[user]
|
|
|
|
if (color || type) {
|
2021-04-25 03:24:08 -07:00
|
|
|
state.highlight[user] = { color: color || data.color, type: type || data.type }
|
2018-06-19 06:17:50 -07:00
|
|
|
} else {
|
2021-04-25 03:24:08 -07:00
|
|
|
delete state.highlight[user]
|
2018-06-19 06:17:50 -07:00
|
|
|
}
|
2017-02-14 13:21:23 -08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
actions: {
|
2021-03-08 09:53:30 -08:00
|
|
|
loadSettings ({ dispatch }, data) {
|
2021-03-08 11:56:20 -08:00
|
|
|
const knownKeys = new Set(Object.keys(defaultState))
|
2021-03-08 11:14:03 -08:00
|
|
|
const presentKeys = new Set(Object.keys(data))
|
|
|
|
const intersection = new Set()
|
2022-07-31 02:35:48 -07:00
|
|
|
for (const elem of presentKeys) {
|
2021-03-08 11:14:03 -08:00
|
|
|
if (knownKeys.has(elem)) {
|
|
|
|
intersection.add(elem)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-08 11:56:20 -08:00
|
|
|
intersection.forEach(
|
2021-03-08 09:53:30 -08:00
|
|
|
name => dispatch('setOption', { name, value: data[name] })
|
|
|
|
)
|
|
|
|
},
|
2018-08-04 19:18:04 -07:00
|
|
|
setHighlight ({ commit, dispatch }, { user, color, type }) {
|
2019-07-05 00:02:14 -07:00
|
|
|
commit('setHighlight', { user, color, type })
|
2018-06-19 06:17:50 -07:00
|
|
|
},
|
2022-06-05 07:10:44 -07:00
|
|
|
setOption ({ commit, dispatch, state }, { name, value }) {
|
2019-07-05 00:02:14 -07:00
|
|
|
commit('setOption', { name, value })
|
2017-02-14 13:21:23 -08:00
|
|
|
switch (name) {
|
|
|
|
case 'theme':
|
2020-01-21 14:37:19 -08:00
|
|
|
setPreset(value)
|
2017-11-13 15:37:49 -08:00
|
|
|
break
|
2022-06-05 07:10:44 -07:00
|
|
|
case 'sidebarColumnWidth':
|
|
|
|
case 'contentColumnWidth':
|
|
|
|
case 'notifsColumnWidth':
|
|
|
|
applyConfig(state)
|
|
|
|
break
|
2017-11-13 15:37:49 -08:00
|
|
|
case 'customTheme':
|
2020-03-03 14:23:14 -08:00
|
|
|
case 'customThemeSource':
|
2020-01-21 14:37:19 -08:00
|
|
|
applyTheme(value)
|
2020-06-08 08:22:07 -07:00
|
|
|
break
|
|
|
|
case 'interfaceLanguage':
|
|
|
|
messages.setLanguage(this.getters.i18n, value)
|
2022-09-20 17:15:32 -07:00
|
|
|
dispatch('loadUnicodeEmojiData', value)
|
2022-05-22 09:40:59 -07:00
|
|
|
Cookies.set(BACKEND_LANGUAGE_COOKIE_NAME, localeService.internalToBackendLocale(value))
|
2020-06-08 08:22:07 -07:00
|
|
|
break
|
2022-04-12 11:18:06 -07:00
|
|
|
case 'thirdColumnMode':
|
|
|
|
dispatch('setLayoutWidth', undefined)
|
|
|
|
break
|
2017-02-14 13:21:23 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default config
|