2018-03-10 07:31:26 +01:00
|
|
|
import pickBy from 'lodash/pickBy'
|
|
|
|
|
2018-03-03 23:15:50 +01:00
|
|
|
export function timelineMixins (Store) {
|
2018-01-28 22:09:39 +01:00
|
|
|
Store.prototype.setForTimeline = function (instanceName, timelineName, obj) {
|
2018-03-04 21:55:45 +01:00
|
|
|
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 22:09:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Store.prototype.getForTimeline = function (instanceName, timelineName, key) {
|
2018-03-04 21:55:45 +01:00
|
|
|
let rootKey = `timelineData_${key}`
|
|
|
|
let root = this.get(rootKey)
|
|
|
|
return root && root[instanceName] && root[instanceName][timelineName]
|
2018-01-28 22:09:39 +01:00
|
|
|
}
|
2018-02-10 22:57:04 +01:00
|
|
|
|
2018-03-21 08:53:52 +01:00
|
|
|
Store.prototype.getForCurrentTimeline = function (key) {
|
|
|
|
let instanceName = this.get('currentInstance')
|
|
|
|
let timelineName = this.get('currentTimeline')
|
|
|
|
return this.getForTimeline(instanceName, timelineName, key)
|
|
|
|
}
|
|
|
|
|
2018-03-11 01:21:10 +01:00
|
|
|
Store.prototype.getAllTimelineData = function (instanceName, key) {
|
|
|
|
let root = this.get(`timelineData_${key}`) || {}
|
|
|
|
return root[instanceName] || {}
|
|
|
|
}
|
|
|
|
|
2018-02-10 22:57:04 +01:00
|
|
|
Store.prototype.setForCurrentTimeline = function (obj) {
|
|
|
|
let instanceName = this.get('currentInstance')
|
|
|
|
let timelineName = this.get('currentTimeline')
|
|
|
|
this.setForTimeline(instanceName, timelineName, obj)
|
|
|
|
}
|
2018-03-10 07:31:26 +01:00
|
|
|
|
2018-03-11 01:21:10 +01:00
|
|
|
Store.prototype.getThreads = function (instanceName) {
|
|
|
|
let instanceData = this.getAllTimelineData(instanceName, 'timelineItemIds')
|
2018-03-10 07:31:26 +01:00
|
|
|
|
|
|
|
return pickBy(instanceData, (value, key) => {
|
|
|
|
return key.startsWith('status/')
|
|
|
|
})
|
|
|
|
}
|
2018-01-28 22:09:39 +01:00
|
|
|
}
|