1
0
mirror of https://github.com/nolanlawson/pinafore synced 2025-02-02 22:57:36 +01:00

46 lines
1.5 KiB
JavaScript
Raw Normal View History

import pickBy from 'lodash-es/pickBy'
2018-03-09 22:31:26 -08:00
2018-03-03 14:15:50 -08:00
export function timelineMixins (Store) {
2018-01-28 13:09:39 -08:00
Store.prototype.setForTimeline = function (instanceName, timelineName, obj) {
let valuesToSet = {}
for (let key of Object.keys(obj)) {
let rootKey = `timelineData_${key}`
let root = this.get(rootKey) || {}
let instanceData = root[instanceName] = root[instanceName] || {}
instanceData[timelineName] = obj[key]
valuesToSet[rootKey] = root
}
this.set(valuesToSet)
2018-01-28 13:09:39 -08:00
}
Store.prototype.getForTimeline = function (instanceName, timelineName, key) {
let rootKey = `timelineData_${key}`
let root = this.get(rootKey)
return root && root[instanceName] && root[instanceName][timelineName]
2018-01-28 13:09:39 -08:00
}
2018-03-21 00:53:52 -07:00
Store.prototype.getForCurrentTimeline = function (key) {
let { currentInstance, currentTimeline } = this.get()
return this.getForTimeline(currentInstance, currentTimeline, key)
2018-03-21 00:53:52 -07:00
}
2018-03-10 16:21:10 -08:00
Store.prototype.getAllTimelineData = function (instanceName, key) {
let root = this.get(`timelineData_${key}`) || {}
return root[instanceName] || {}
}
Store.prototype.setForCurrentTimeline = function (obj) {
let { currentInstance, currentTimeline } = this.get()
this.setForTimeline(currentInstance, currentTimeline, obj)
}
2018-03-09 22:31:26 -08:00
2018-03-10 16:21:10 -08:00
Store.prototype.getThreads = function (instanceName) {
let instanceData = this.getAllTimelineData(instanceName, 'timelineItemIds')
2018-03-09 22:31:26 -08:00
return pickBy(instanceData, (value, key) => {
return key.startsWith('status/')
})
}
2018-01-28 13:09:39 -08:00
}