2018-03-03 22:23:26 +01:00
|
|
|
function computeForInstance (store, computedKey, key, defaultValue) {
|
|
|
|
store.compute(computedKey,
|
|
|
|
[key, 'currentInstance'],
|
|
|
|
(instanceData, currentInstance) => (currentInstance && instanceData[currentInstance]) || defaultValue)
|
|
|
|
}
|
|
|
|
|
2018-02-09 07:29:29 +01:00
|
|
|
export function instanceComputations (store) {
|
2018-03-03 22:23:26 +01:00
|
|
|
computeForInstance(store, 'currentTheme', 'instanceThemes', 'default')
|
|
|
|
computeForInstance(store, 'currentVerifyCredentials', 'verifyCredentials', null)
|
|
|
|
computeForInstance(store, 'currentInstanceInfo', 'instanceInfos', null)
|
|
|
|
computeForInstance(store, 'pinnedPage', 'pinnedPages', '/local')
|
|
|
|
computeForInstance(store, 'lists', 'instanceLists', [])
|
|
|
|
computeForInstance(store, 'currentStatusModifications', 'statusModifications', null)
|
|
|
|
computeForInstance(store, 'currentComposeText', 'composeText', {})
|
|
|
|
computeForInstance(store, 'currentUploadedMedia', 'uploadedMedia', {})
|
|
|
|
computeForInstance(store, 'currentCustomEmoji', 'customEmoji', [])
|
|
|
|
computeForInstance(store, 'currentPostPrivacy', 'postPrivacy', {})
|
|
|
|
|
2018-01-28 22:09:39 +01:00
|
|
|
store.compute(
|
|
|
|
'isUserLoggedIn',
|
|
|
|
['currentInstance', 'loggedInInstances'],
|
|
|
|
(currentInstance, loggedInInstances) => !!(currentInstance && Object.keys(loggedInInstances).includes(currentInstance))
|
|
|
|
)
|
|
|
|
|
|
|
|
store.compute(
|
|
|
|
'loggedInInstancesAsList',
|
|
|
|
['currentInstance', 'loggedInInstances', 'loggedInInstancesInOrder'],
|
|
|
|
(currentInstance, loggedInInstances, loggedInInstancesInOrder) => {
|
|
|
|
return loggedInInstancesInOrder.map(instanceName => {
|
|
|
|
return Object.assign({
|
|
|
|
current: currentInstance === instanceName,
|
|
|
|
name: instanceName
|
|
|
|
}, loggedInInstances[instanceName])
|
|
|
|
})
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
store.compute(
|
|
|
|
'currentInstanceData',
|
|
|
|
['currentInstance', 'loggedInInstances'],
|
|
|
|
(currentInstance, loggedInInstances) => {
|
|
|
|
return Object.assign({
|
|
|
|
name: currentInstance
|
|
|
|
}, loggedInInstances[currentInstance])
|
|
|
|
})
|
|
|
|
|
|
|
|
store.compute(
|
|
|
|
'accessToken',
|
|
|
|
['currentInstanceData'],
|
2018-01-29 00:44:33 +01:00
|
|
|
(currentInstanceData) => currentInstanceData && currentInstanceData.access_token
|
2018-01-28 22:09:39 +01:00
|
|
|
)
|
|
|
|
|
2018-02-08 18:15:25 +01:00
|
|
|
store.compute(
|
|
|
|
'pinnedListTitle',
|
|
|
|
['lists', 'pinnedPage'],
|
|
|
|
(lists, pinnedPage) => {
|
|
|
|
if (!pinnedPage.startsWith('/lists')) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
let listId = pinnedPage.split('/').slice(-1)[0]
|
|
|
|
let list = lists.find(_ => _.id === listId)
|
|
|
|
return list ? list.title : ''
|
|
|
|
}
|
|
|
|
)
|
2018-02-16 17:59:44 +01:00
|
|
|
|
|
|
|
store.compute('numberOfNotifications',
|
|
|
|
['timelines', 'currentInstance', 'currentTimeline'],
|
|
|
|
(timelines, currentInstance, currentTimeline) => {
|
|
|
|
return currentTimeline !== 'notifications' &&
|
|
|
|
timelines &&
|
|
|
|
timelines[currentInstance] &&
|
|
|
|
timelines[currentInstance].notifications &&
|
|
|
|
timelines[currentInstance].notifications.itemIdsToAdd &&
|
|
|
|
timelines[currentInstance].notifications.itemIdsToAdd.length
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
store.compute('hasNotifications',
|
|
|
|
['numberOfNotifications'],
|
2018-03-03 22:23:26 +01:00
|
|
|
(numberOfNotifications) => !!numberOfNotifications
|
2018-02-28 08:18:07 +01:00
|
|
|
)
|
2018-02-09 07:29:29 +01:00
|
|
|
}
|