2018-03-03 23:15:50 +01:00
|
|
|
import { observers } from './observers/observers'
|
|
|
|
import { computations } from './computations/computations'
|
|
|
|
import { mixins } from './mixins/mixins'
|
2018-01-28 22:09:39 +01:00
|
|
|
import { LocalStorageStore } from './LocalStorageStore'
|
2018-05-01 02:20:20 +02:00
|
|
|
import { observe } from 'svelte-extras'
|
2018-01-28 22:09:39 +01:00
|
|
|
|
2018-12-01 20:53:20 +01:00
|
|
|
const persistedState = {
|
|
|
|
autoplayGifs: false,
|
|
|
|
composeData: {},
|
2018-01-28 22:09:39 +01:00
|
|
|
currentInstance: null,
|
2018-12-01 20:53:20 +01:00
|
|
|
currentRegisteredInstanceName: undefined,
|
|
|
|
currentRegisteredInstance: undefined,
|
|
|
|
disableCustomScrollbars: false,
|
|
|
|
disableLongAriaLabels: false,
|
2018-12-03 06:12:58 +01:00
|
|
|
disableTapOnStatus: false,
|
2018-12-01 20:53:20 +01:00
|
|
|
instanceNameInSearch: '',
|
|
|
|
instanceThemes: {},
|
2018-01-28 22:09:39 +01:00
|
|
|
loggedInInstances: {},
|
|
|
|
loggedInInstancesInOrder: [],
|
2018-02-08 07:49:50 +01:00
|
|
|
markMediaAsSensitive: false,
|
2018-12-01 23:09:08 +01:00
|
|
|
neverMarkMediaAsSensitive: false,
|
2018-12-01 20:53:20 +01:00
|
|
|
omitEmojiInDisplayNames: undefined,
|
2018-02-08 18:15:25 +01:00
|
|
|
pinnedPages: {},
|
2018-12-01 20:53:20 +01:00
|
|
|
pushSubscription: null,
|
|
|
|
reduceMotion: !process.browser || window.matchMedia('(prefers-reduced-motion: reduce)').matches
|
|
|
|
}
|
|
|
|
|
|
|
|
const nonPersistedState = {
|
2018-03-03 19:11:32 +01:00
|
|
|
customEmoji: {},
|
2018-12-01 20:53:20 +01:00
|
|
|
instanceInfos: {},
|
|
|
|
instanceLists: {},
|
2018-10-06 22:06:10 +02:00
|
|
|
online: !process.browser || navigator.onLine,
|
2018-12-01 20:53:20 +01:00
|
|
|
pinnedStatuses: {},
|
2018-10-06 22:06:10 +02:00
|
|
|
pushNotificationsSupport: process.browser && ('serviceWorker' in navigator && 'PushManager' in window && 'getKey' in window.PushSubscription.prototype),
|
2018-12-01 20:53:20 +01:00
|
|
|
queryInSearch: '',
|
|
|
|
repliesShown: {},
|
|
|
|
sensitivesShown: {},
|
|
|
|
spoilersShown: {},
|
|
|
|
statusModifications: {},
|
|
|
|
verifyCredentials: {}
|
|
|
|
}
|
|
|
|
|
|
|
|
const state = Object.assign({}, persistedState, nonPersistedState)
|
|
|
|
const keysToStoreInLocalStorage = new Set(Object.keys(persistedState))
|
|
|
|
|
|
|
|
class PinaforeStore extends LocalStorageStore {
|
|
|
|
constructor (state) {
|
|
|
|
super(state, keysToStoreInLocalStorage)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
PinaforeStore.prototype.observe = observe
|
|
|
|
|
|
|
|
export const store = new PinaforeStore(state)
|
2018-01-28 22:09:39 +01:00
|
|
|
|
|
|
|
mixins(PinaforeStore)
|
|
|
|
computations(store)
|
2018-02-21 06:29:59 +01:00
|
|
|
observers(store)
|
2018-01-28 22:09:39 +01:00
|
|
|
|
2018-02-20 05:15:24 +01:00
|
|
|
if (process.browser && process.env.NODE_ENV !== 'production') {
|
|
|
|
window.store = store // for debugging
|
2018-02-20 05:28:31 +01:00
|
|
|
}
|
2018-05-26 22:51:41 +02:00
|
|
|
|
|
|
|
// needed for tests
|
|
|
|
if (process.browser) {
|
2018-08-30 06:42:57 +02:00
|
|
|
window.__forceOnline = online => store.set({ online })
|
2018-05-26 22:51:41 +02:00
|
|
|
}
|