2020-06-01 11:41:28 +02:00
|
|
|
import { writable } from "svelte/store"
|
2020-05-30 01:14:41 +02:00
|
|
|
|
2020-08-06 22:12:35 +02:00
|
|
|
// we assume that the reference to this state object
|
|
|
|
// will remain for the life of the application
|
|
|
|
const rootState = {}
|
|
|
|
const rootStore = writable(rootState)
|
|
|
|
const contextStores = {}
|
2020-05-30 01:14:41 +02:00
|
|
|
|
2020-08-06 22:12:35 +02:00
|
|
|
// contextProviderId is the component id that provides the data for the context
|
|
|
|
const contextStoreKey = (dataProviderId, childIndex) =>
|
|
|
|
`${dataProviderId}${childIndex >= 0 ? ":" + childIndex : ""}`
|
2020-05-30 01:14:41 +02:00
|
|
|
|
2020-08-06 22:12:35 +02:00
|
|
|
// creates a store for a datacontext (e.g. each item in a list component)
|
2020-09-14 13:46:49 +02:00
|
|
|
// overrides store if already exists
|
2020-08-06 22:12:35 +02:00
|
|
|
const create = (data, dataProviderId, childIndex, parentContextStoreId) => {
|
|
|
|
const key = contextStoreKey(dataProviderId, childIndex)
|
|
|
|
const state = { data }
|
|
|
|
|
|
|
|
// add reference to parent state object,
|
|
|
|
// so we can use bindings like state.parent.parent
|
|
|
|
// (if no parent, then parent is rootState )
|
|
|
|
state.parent = parentContextStoreId
|
|
|
|
? contextStores[parentContextStoreId].state
|
|
|
|
: rootState
|
|
|
|
|
2020-09-14 13:46:49 +02:00
|
|
|
contextStores[key] = {
|
|
|
|
store: writable(state),
|
|
|
|
subscriberCount: 0,
|
|
|
|
state,
|
|
|
|
parentContextStoreId,
|
2020-08-06 22:12:35 +02:00
|
|
|
}
|
2020-09-14 13:46:49 +02:00
|
|
|
|
2020-08-06 22:12:35 +02:00
|
|
|
return key
|
|
|
|
}
|
|
|
|
|
|
|
|
const subscribe = (subscription, storeKey) => {
|
|
|
|
if (!storeKey) {
|
|
|
|
return rootStore.subscribe(subscription)
|
|
|
|
}
|
|
|
|
const contextStore = contextStores[storeKey]
|
|
|
|
|
|
|
|
// we are subscribing to multiple stores,
|
2020-08-27 11:00:36 +02:00
|
|
|
// we dont want to run our listener for every subscription, the first time
|
2020-08-06 22:12:35 +02:00
|
|
|
// as this could repeatedly run $set on the same component
|
|
|
|
// ... which already has its initial properties set properly
|
|
|
|
const ignoreFirstSubscription = () => {
|
|
|
|
let hasRunOnce = false
|
|
|
|
return () => {
|
|
|
|
if (hasRunOnce) subscription(contextStore.state)
|
|
|
|
hasRunOnce = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const unsubscribes = [rootStore.subscribe(ignoreFirstSubscription())]
|
|
|
|
|
|
|
|
// we subscribe to all stores in the hierarchy
|
|
|
|
const ancestorSubscribe = ctxStore => {
|
|
|
|
// unsubscribe func returned by svelte store
|
|
|
|
const svelteUnsub = ctxStore.store.subscribe(ignoreFirstSubscription())
|
|
|
|
|
|
|
|
// we wrap the svelte unsubscribe, so we can
|
|
|
|
// cleanup stores when they are no longer subscribed to
|
|
|
|
const unsub = () => {
|
|
|
|
ctxStore.subscriberCount = contextStore.subscriberCount - 1
|
|
|
|
// when no subscribers left, we delete the store
|
|
|
|
if (ctxStore.subscriberCount === 0) {
|
|
|
|
delete ctxStore[storeKey]
|
|
|
|
}
|
|
|
|
svelteUnsub()
|
|
|
|
}
|
|
|
|
unsubscribes.push(unsub)
|
|
|
|
if (ctxStore.parentContextStoreId) {
|
|
|
|
ancestorSubscribe(contextStores[ctxStore.parentContextStoreId])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ancestorSubscribe(contextStore)
|
|
|
|
|
|
|
|
// our final unsubscribe function calls unsubscribe on all stores
|
|
|
|
return () => unsubscribes.forEach(u => u())
|
|
|
|
}
|
|
|
|
|
|
|
|
const findStore = (dataProviderId, childIndex) =>
|
|
|
|
dataProviderId
|
|
|
|
? contextStores[contextStoreKey(dataProviderId, childIndex)].store
|
|
|
|
: rootStore
|
|
|
|
|
|
|
|
const update = (updatefunc, dataProviderId, childIndex) =>
|
|
|
|
findStore(dataProviderId, childIndex).update(updatefunc)
|
|
|
|
|
|
|
|
const set = (value, dataProviderId, childIndex) =>
|
|
|
|
findStore(dataProviderId, childIndex).set(value)
|
|
|
|
|
|
|
|
const getState = contextStoreKey =>
|
|
|
|
contextStoreKey ? contextStores[contextStoreKey].state : rootState
|
|
|
|
|
2020-09-14 13:32:10 +02:00
|
|
|
const getStore = contextStoreKey =>
|
|
|
|
contextStoreKey ? contextStores[contextStoreKey] : rootStore
|
|
|
|
|
2020-08-06 22:12:35 +02:00
|
|
|
export default {
|
|
|
|
subscribe,
|
|
|
|
update,
|
|
|
|
set,
|
|
|
|
getState,
|
|
|
|
create,
|
|
|
|
contextStoreKey,
|
2020-09-14 13:32:10 +02:00
|
|
|
getStore,
|
2020-08-06 22:12:35 +02:00
|
|
|
}
|