87 lines
2.4 KiB
JavaScript
87 lines
2.4 KiB
JavaScript
import { observers } from './observers/observers'
|
|
import { computations } from './computations/computations'
|
|
import { mixins } from './mixins/mixins'
|
|
import { LocalStorageStore } from './LocalStorageStore'
|
|
import { observe } from 'svelte-extras'
|
|
import { isKaiOS } from '../_utils/userAgent/isKaiOS'
|
|
|
|
const persistedState = {
|
|
alwaysShowFocusRing: false,
|
|
autoplayGifs: false,
|
|
composeData: {},
|
|
currentInstance: null,
|
|
currentRegisteredInstanceName: undefined,
|
|
currentRegisteredInstance: undefined,
|
|
// we disable scrollbars by default on iOS
|
|
disableCustomScrollbars: process.browser && /iP(?:hone|ad|od)/.test(navigator.userAgent),
|
|
disableFavCounts: false,
|
|
disableFollowerCounts: false,
|
|
disableHotkeys: false,
|
|
disableInfiniteScroll: false,
|
|
disableLongAriaLabels: false,
|
|
disableNotificationBadge: false,
|
|
disableReblogCounts: false,
|
|
disableTapOnStatus: false,
|
|
enableGrayscale: false,
|
|
hideCards: false,
|
|
largeInlineMedia: false,
|
|
leftRightChangesFocus: isKaiOS(),
|
|
instanceNameInSearch: '',
|
|
instanceThemes: {},
|
|
instanceSettings: {},
|
|
loggedInInstances: {},
|
|
loggedInInstancesInOrder: [],
|
|
markMediaAsSensitive: false,
|
|
neverMarkMediaAsSensitive: false,
|
|
ignoreBlurhash: false,
|
|
omitEmojiInDisplayNames: undefined,
|
|
pinnedPages: {},
|
|
pushSubscriptions: {},
|
|
reduceMotion:
|
|
!process.browser ||
|
|
matchMedia('(prefers-reduced-motion: reduce)').matches,
|
|
underlineLinks: false
|
|
}
|
|
|
|
const nonPersistedState = {
|
|
customEmoji: {},
|
|
followRequestCounts: {},
|
|
instanceInfos: {},
|
|
instanceLists: {},
|
|
online: !process.browser || navigator.onLine,
|
|
pinnedStatuses: {},
|
|
polls: {},
|
|
pushNotificationsSupport:
|
|
process.browser &&
|
|
('serviceWorker' in navigator &&
|
|
'PushManager' in window &&
|
|
'getKey' in window.PushSubscription.prototype),
|
|
queryInSearch: '',
|
|
repliesShown: {},
|
|
sensitivesShown: {},
|
|
spoilersShown: {},
|
|
statusModifications: {},
|
|
verifyCredentials: {},
|
|
openShareDialog: false
|
|
}
|
|
|
|
const state = Object.assign({}, persistedState, nonPersistedState)
|
|
const keysToStoreInLocalStorage = new Set(Object.keys(persistedState))
|
|
|
|
export class PinaforeStore extends LocalStorageStore {
|
|
constructor (state) {
|
|
super(state, keysToStoreInLocalStorage)
|
|
}
|
|
}
|
|
|
|
PinaforeStore.prototype.observe = observe
|
|
|
|
export const store = new PinaforeStore(state)
|
|
|
|
mixins(PinaforeStore)
|
|
computations(store)
|
|
observers(store)
|
|
|
|
if (process.browser) {
|
|
window.__store = store // for debugging
|
|
}
|