
* implement wellness settings fixes #1192 Adds - grayscale mode (as well as separate grayscale/dark grayscale themes) - disable follower/boost/fav counts (follower counts capped at 10) - disable unread notification count (red dot) * fix lint * fix crawler
182 lines
7 KiB
JavaScript
182 lines
7 KiB
JavaScript
import { get } from '../../_utils/lodash-lite'
|
|
import { getFirstIdFromItemSummaries, getLastIdFromItemSummaries } from '../../_utils/getIdFromItemSummaries'
|
|
import {
|
|
HOME_REBLOGS,
|
|
HOME_REPLIES,
|
|
NOTIFICATION_REBLOGS,
|
|
NOTIFICATION_FOLLOWS,
|
|
NOTIFICATION_FAVORITES,
|
|
NOTIFICATION_POLLS,
|
|
NOTIFICATION_MENTIONS
|
|
} from '../../_static/instanceSettings'
|
|
|
|
function computeForTimeline (store, key, defaultValue) {
|
|
store.compute(key,
|
|
['currentInstance', 'currentTimeline', `timelineData_${key}`],
|
|
(currentInstance, currentTimeline, root) => (
|
|
get(root, [currentInstance, currentTimeline], defaultValue)
|
|
)
|
|
)
|
|
}
|
|
|
|
// Compute just the boolean, e.g. 'showPolls', so that we can use that boolean as
|
|
// the input to the timelineFilterFunction computations. This should reduce the need to
|
|
// re-compute the timelineFilterFunction over and over.
|
|
function computeTimelineFilter (store, computationName, timelinesToSettingsKeys) {
|
|
store.compute(
|
|
computationName,
|
|
['currentInstance', 'instanceSettings', 'currentTimeline'],
|
|
(currentInstance, instanceSettings, currentTimeline) => {
|
|
let settingsKey = timelinesToSettingsKeys[currentTimeline]
|
|
return settingsKey ? get(instanceSettings, [currentInstance, settingsKey], true) : true
|
|
}
|
|
)
|
|
}
|
|
|
|
// Ditto for notifications, which we always have to keep track of due to the notification count.
|
|
function computeNotificationFilter (store, computationName, key) {
|
|
store.compute(
|
|
computationName,
|
|
['currentInstance', 'instanceSettings'],
|
|
(currentInstance, instanceSettings) => {
|
|
return get(instanceSettings, [currentInstance, key], true)
|
|
}
|
|
)
|
|
}
|
|
|
|
export function timelineComputations (store) {
|
|
computeForTimeline(store, 'timelineItemSummaries', null)
|
|
computeForTimeline(store, 'timelineItemSummariesToAdd', null)
|
|
computeForTimeline(store, 'runningUpdate', false)
|
|
computeForTimeline(store, 'lastFocusedElementId', null)
|
|
computeForTimeline(store, 'ignoreBlurEvents', false)
|
|
computeForTimeline(store, 'showHeader', false)
|
|
computeForTimeline(store, 'shouldShowHeader', false)
|
|
computeForTimeline(store, 'timelineItemSummariesAreStale', false)
|
|
|
|
store.compute('currentTimelineType', ['currentTimeline'], currentTimeline => (
|
|
currentTimeline && currentTimeline.split('/')[0])
|
|
)
|
|
store.compute('currentTimelineValue', ['currentTimeline'], currentTimeline => {
|
|
if (!currentTimeline) {
|
|
return void 0
|
|
}
|
|
let split = currentTimeline.split('/')
|
|
let len = split.length
|
|
if (split[len - 1] === 'with_replies' || split[len - 1] === 'media') {
|
|
return split[len - 2]
|
|
}
|
|
return split[len - 1]
|
|
})
|
|
store.compute('firstTimelineItemId', ['timelineItemSummaries'], (timelineItemSummaries) => (
|
|
getFirstIdFromItemSummaries(timelineItemSummaries)
|
|
))
|
|
store.compute('lastTimelineItemId', ['timelineItemSummaries'], (timelineItemSummaries) => (
|
|
getLastIdFromItemSummaries(timelineItemSummaries)
|
|
))
|
|
|
|
computeTimelineFilter(store, 'timelineShowReblogs', { home: HOME_REBLOGS, notifications: NOTIFICATION_REBLOGS })
|
|
computeTimelineFilter(store, 'timelineShowReplies', { home: HOME_REPLIES })
|
|
computeTimelineFilter(store, 'timelineShowFollows', { notifications: NOTIFICATION_FOLLOWS })
|
|
computeTimelineFilter(store, 'timelineShowFavs', { notifications: NOTIFICATION_FAVORITES })
|
|
computeTimelineFilter(store, 'timelineShowMentions', { notifications: NOTIFICATION_MENTIONS })
|
|
computeTimelineFilter(store, 'timelineShowPolls', { notifications: NOTIFICATION_POLLS })
|
|
|
|
computeNotificationFilter(store, 'timelineNotificationShowReblogs', NOTIFICATION_REBLOGS)
|
|
computeNotificationFilter(store, 'timelineNotificationShowFollows', NOTIFICATION_FOLLOWS)
|
|
computeNotificationFilter(store, 'timelineNotificationShowFavs', NOTIFICATION_FAVORITES)
|
|
computeNotificationFilter(store, 'timelineNotificationShowMentions', NOTIFICATION_MENTIONS)
|
|
computeNotificationFilter(store, 'timelineNotificationShowPolls', NOTIFICATION_POLLS)
|
|
|
|
function createFilterFunction (showReblogs, showReplies, showFollows, showFavs, showMentions, showPolls) {
|
|
return item => {
|
|
switch (item.type) {
|
|
case 'poll':
|
|
return showPolls
|
|
case 'favourite':
|
|
return showFavs
|
|
case 'reblog':
|
|
return showReblogs
|
|
case 'mention':
|
|
return showMentions
|
|
case 'follow':
|
|
return showFollows
|
|
}
|
|
if (item.reblogId) {
|
|
return showReblogs
|
|
} else if (item.replyId) {
|
|
return showReplies
|
|
} else {
|
|
return true
|
|
}
|
|
}
|
|
}
|
|
|
|
store.compute(
|
|
'timelineFilterFunction',
|
|
[
|
|
'timelineShowReblogs', 'timelineShowReplies', 'timelineShowFollows',
|
|
'timelineShowFavs', 'timelineShowMentions', 'timelineShowPolls'
|
|
],
|
|
(showReblogs, showReplies, showFollows, showFavs, showMentions, showPolls) => (
|
|
createFilterFunction(showReblogs, showReplies, showFollows, showFavs, showMentions, showPolls)
|
|
)
|
|
)
|
|
|
|
store.compute(
|
|
'timelineNotificationFilterFunction',
|
|
[
|
|
'timelineNotificationShowReblogs', 'timelineNotificationShowFollows',
|
|
'timelineNotificationShowFavs', 'timelineNotificationShowMentions',
|
|
'timelineNotificationShowPolls'
|
|
],
|
|
(showReblogs, showFollows, showFavs, showMentions, showPolls) => (
|
|
createFilterFunction(showReblogs, true, showFollows, showFavs, showMentions, showPolls)
|
|
)
|
|
)
|
|
|
|
store.compute(
|
|
'filteredTimelineItemSummaries',
|
|
['timelineItemSummaries', 'timelineFilterFunction'],
|
|
(timelineItemSummaries, timelineFilterFunction) => {
|
|
return timelineItemSummaries && timelineItemSummaries.filter(timelineFilterFunction)
|
|
}
|
|
)
|
|
|
|
store.compute(
|
|
'filteredTimelineItemSummariesToAdd',
|
|
['timelineItemSummariesToAdd', 'timelineFilterFunction'],
|
|
(timelineItemSummariesToAdd, timelineFilterFunction) => {
|
|
return timelineItemSummariesToAdd && timelineItemSummariesToAdd.filter(timelineFilterFunction)
|
|
}
|
|
)
|
|
|
|
store.compute('timelineNotificationItemSummaries',
|
|
[`timelineData_timelineItemSummariesToAdd`, 'timelineFilterFunction', 'currentInstance'],
|
|
(root, timelineFilterFunction, currentInstance) => (
|
|
get(root, [currentInstance, 'notifications'])
|
|
)
|
|
)
|
|
|
|
store.compute(
|
|
'filteredTimelineNotificationItemSummaries',
|
|
['timelineNotificationItemSummaries', 'timelineNotificationFilterFunction'],
|
|
(timelineNotificationItemSummaries, timelineNotificationFilterFunction) => (
|
|
timelineNotificationItemSummaries && timelineNotificationItemSummaries.filter(timelineNotificationFilterFunction)
|
|
)
|
|
)
|
|
|
|
store.compute('numberOfNotifications',
|
|
['filteredTimelineNotificationItemSummaries'],
|
|
(filteredTimelineNotificationItemSummaries) => (
|
|
filteredTimelineNotificationItemSummaries ? filteredTimelineNotificationItemSummaries.length : 0
|
|
)
|
|
)
|
|
|
|
store.compute('hasNotifications',
|
|
['numberOfNotifications', 'currentPage', 'disableNotificationBadge'],
|
|
(numberOfNotifications, currentPage, $disableNotificationBadge) => (
|
|
!$disableNotificationBadge && currentPage !== 'notifications' && !!numberOfNotifications
|
|
)
|
|
)
|
|
}
|