pinafore/routes/_store/store.js

52 lines
1.2 KiB
JavaScript
Raw Normal View History

2018-02-08 18:15:25 +01:00
import { observers } from './observers'
2018-01-28 22:09:39 +01:00
import { computations } from './computations'
import { mixins } from './mixins'
import { LocalStorageStore } from './LocalStorageStore'
const KEYS_TO_STORE_IN_LOCAL_STORAGE = new Set([
2018-02-09 07:29:29 +01:00
'currentInstance',
'currentRegisteredInstance',
'currentRegisteredInstanceName',
'instanceNameInSearch',
'instanceThemes',
'loggedInInstances',
'loggedInInstancesInOrder',
'autoplayGifs',
'markMediaAsSensitive',
'pinnedPages'
2018-01-28 22:09:39 +01:00
])
class PinaforeStore extends LocalStorageStore {
2018-02-09 07:29:29 +01:00
constructor (state) {
2018-01-28 22:09:39 +01:00
super(state, KEYS_TO_STORE_IN_LOCAL_STORAGE)
}
}
2018-02-20 05:15:24 +01:00
export const store = new PinaforeStore({
2018-01-28 22:09:39 +01:00
instanceNameInSearch: '',
2018-02-07 05:54:49 +01:00
queryInSearch: '',
2018-01-28 22:09:39 +01:00
currentInstance: null,
loggedInInstances: {},
loggedInInstancesInOrder: [],
instanceThemes: {},
spoilersShown: {},
sensitivesShown: {},
autoplayGifs: false,
markMediaAsSensitive: false,
2018-02-08 18:15:25 +01:00
pinnedPages: {},
2018-02-11 19:35:25 +01:00
instanceLists: {},
2018-02-11 22:46:57 +01:00
pinnedStatuses: {},
instanceInfos: {}
2018-01-28 22:09:39 +01:00
})
mixins(PinaforeStore)
computations(store)
2018-02-20 05:28:31 +01:00
export function initStore () {
2018-02-20 05:15:24 +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
}