pinafore/src/routes/_store/computations/timelineComputations.js

47 lines
1.6 KiB
JavaScript
Raw Normal View History

import { get } from '../../_utils/lodash-lite'
function computeForTimeline (store, key, defaultValue) {
store.compute(key,
['currentInstance', 'currentTimeline', `timelineData_${key}`],
2018-05-07 02:35:22 +02:00
(currentInstance, currentTimeline, root) => (
get(root, [currentInstance, currentTimeline], defaultValue)
)
)
}
2018-02-09 07:29:29 +01:00
export function timelineComputations (store) {
computeForTimeline(store, 'timelineItemIds', null)
computeForTimeline(store, 'runningUpdate', false)
computeForTimeline(store, 'lastFocusedElementSelector', null)
computeForTimeline(store, 'ignoreBlurEvents', false)
computeForTimeline(store, 'itemIdsToAdd', null)
computeForTimeline(store, 'showHeader', false)
computeForTimeline(store, 'shouldShowHeader', false)
2018-03-11 20:11:06 +01:00
computeForTimeline(store, 'timelineItemIdsAreStale', false)
store.compute('firstTimelineItemId', ['timelineItemIds'], (timelineItemIds) => {
return timelineItemIds && timelineItemIds[0]
})
store.compute('lastTimelineItemId', ['timelineItemIds'], (timelineItemIds) => {
return timelineItemIds && timelineItemIds[timelineItemIds.length - 1]
})
2018-01-28 22:09:39 +01:00
store.compute('numberOfNotifications',
[`timelineData_itemIdsToAdd`, 'currentInstance', 'currentTimeline'],
(root, currentInstance, currentTimeline) => {
return (
currentTimeline !== 'notifications' &&
root &&
root[currentInstance] &&
root[currentInstance].notifications &&
root[currentInstance].notifications.length
) || 0
}
)
store.compute('hasNotifications',
['numberOfNotifications'],
(numberOfNotifications) => !!numberOfNotifications
)
2018-02-09 07:29:29 +01:00
}