2016-10-02 09:14:26 -04:00
|
|
|
import {
|
2016-11-20 13:39:18 -05:00
|
|
|
NOTIFICATIONS_UPDATE,
|
2017-01-02 08:09:57 -05:00
|
|
|
NOTIFICATIONS_EXPAND_SUCCESS,
|
2017-01-25 22:30:40 -05:00
|
|
|
NOTIFICATIONS_EXPAND_REQUEST,
|
2017-02-06 18:06:40 -05:00
|
|
|
NOTIFICATIONS_EXPAND_FAIL,
|
2018-12-15 23:56:41 -05:00
|
|
|
NOTIFICATIONS_FILTER_SET,
|
2017-02-20 18:10:49 -05:00
|
|
|
NOTIFICATIONS_CLEAR,
|
2017-05-20 11:31:47 -04:00
|
|
|
NOTIFICATIONS_SCROLL_TOP,
|
2019-07-16 00:30:47 -04:00
|
|
|
NOTIFICATIONS_LOAD_PENDING,
|
2019-09-21 03:12:13 -04:00
|
|
|
NOTIFICATIONS_MOUNT,
|
|
|
|
NOTIFICATIONS_UNMOUNT,
|
2020-09-26 14:57:07 -04:00
|
|
|
NOTIFICATIONS_MARK_AS_READ,
|
2016-10-30 10:06:43 -04:00
|
|
|
} from '../actions/notifications';
|
2017-10-02 20:01:54 -04:00
|
|
|
import {
|
|
|
|
ACCOUNT_BLOCK_SUCCESS,
|
|
|
|
ACCOUNT_MUTE_SUCCESS,
|
2019-12-01 11:25:29 -05:00
|
|
|
FOLLOW_REQUEST_AUTHORIZE_SUCCESS,
|
|
|
|
FOLLOW_REQUEST_REJECT_SUCCESS,
|
2017-10-02 20:01:54 -04:00
|
|
|
} from '../actions/accounts';
|
2020-09-26 14:57:07 -04:00
|
|
|
import {
|
|
|
|
MARKERS_FETCH_SUCCESS,
|
|
|
|
} from '../actions/markers';
|
|
|
|
import {
|
|
|
|
APP_FOCUS,
|
|
|
|
APP_UNFOCUS,
|
|
|
|
} from '../actions/app';
|
2019-07-24 22:17:35 -04:00
|
|
|
import { DOMAIN_BLOCK_SUCCESS } from 'mastodon/actions/domain_blocks';
|
2018-03-24 17:07:23 -04:00
|
|
|
import { TIMELINE_DELETE, TIMELINE_DISCONNECT } from '../actions/timelines';
|
2017-07-10 19:00:14 -04:00
|
|
|
import { Map as ImmutableMap, List as ImmutableList } from 'immutable';
|
2018-04-18 10:50:19 -04:00
|
|
|
import compareId from '../compare_id';
|
2016-09-12 13:20:55 -04:00
|
|
|
|
2017-07-10 19:00:14 -04:00
|
|
|
const initialState = ImmutableMap({
|
2019-07-16 00:30:47 -04:00
|
|
|
pendingItems: ImmutableList(),
|
2017-07-10 19:00:14 -04:00
|
|
|
items: ImmutableList(),
|
2018-03-24 17:07:23 -04:00
|
|
|
hasMore: true,
|
2019-05-27 15:56:29 -04:00
|
|
|
top: false,
|
2020-09-26 14:57:07 -04:00
|
|
|
mounted: 0,
|
2017-02-20 18:10:49 -05:00
|
|
|
unread: 0,
|
2020-09-26 14:57:07 -04:00
|
|
|
lastReadId: '0',
|
|
|
|
readMarkerId: '0',
|
|
|
|
isTabVisible: true,
|
2018-03-24 17:07:23 -04:00
|
|
|
isLoading: false,
|
2016-11-20 13:39:18 -05:00
|
|
|
});
|
|
|
|
|
2017-07-10 19:00:14 -04:00
|
|
|
const notificationToMap = notification => ImmutableMap({
|
2016-11-20 13:39:18 -05:00
|
|
|
id: notification.id,
|
|
|
|
type: notification.type,
|
|
|
|
account: notification.account.id,
|
2018-08-26 11:53:26 -04:00
|
|
|
created_at: notification.created_at,
|
2017-05-20 11:31:47 -04:00
|
|
|
status: notification.status ? notification.status.id : null,
|
2016-11-20 13:39:18 -05:00
|
|
|
});
|
|
|
|
|
2019-07-16 00:30:47 -04:00
|
|
|
const normalizeNotification = (state, notification, usePendingItems) => {
|
2019-09-22 18:48:31 -04:00
|
|
|
const top = state.get('top');
|
2019-09-16 13:39:44 -04:00
|
|
|
|
2019-09-22 18:48:31 -04:00
|
|
|
if (usePendingItems || !state.get('pendingItems').isEmpty()) {
|
2019-09-16 09:45:06 -04:00
|
|
|
return state.update('pendingItems', list => list.unshift(notificationToMap(notification))).update('unread', unread => unread + 1);
|
2019-07-16 00:30:47 -04:00
|
|
|
}
|
|
|
|
|
2020-09-26 14:57:07 -04:00
|
|
|
if (shouldCountUnreadNotifications(state)) {
|
2017-02-20 18:10:49 -05:00
|
|
|
state = state.update('unread', unread => unread + 1);
|
2020-09-26 14:57:07 -04:00
|
|
|
} else {
|
|
|
|
state = state.set('lastReadId', notification.id);
|
2017-02-20 18:10:49 -05:00
|
|
|
}
|
|
|
|
|
2017-05-04 17:41:34 -04:00
|
|
|
return state.update('items', list => {
|
|
|
|
if (top && list.size > 40) {
|
|
|
|
list = list.take(20);
|
|
|
|
}
|
|
|
|
|
|
|
|
return list.unshift(notificationToMap(notification));
|
|
|
|
});
|
2016-11-20 13:39:18 -05:00
|
|
|
};
|
|
|
|
|
2019-09-18 05:27:10 -04:00
|
|
|
const expandNormalizedNotifications = (state, notifications, next, isLoadingRecent, usePendingItems) => {
|
2020-09-26 14:57:07 -04:00
|
|
|
const lastReadId = state.get('lastReadId');
|
2017-07-10 19:00:14 -04:00
|
|
|
let items = ImmutableList();
|
2016-11-20 13:39:18 -05:00
|
|
|
|
|
|
|
notifications.forEach((n, i) => {
|
|
|
|
items = items.set(i, notificationToMap(n));
|
|
|
|
});
|
|
|
|
|
2018-03-24 17:07:23 -04:00
|
|
|
return state.withMutations(mutable => {
|
|
|
|
if (!items.isEmpty()) {
|
2019-09-22 18:48:31 -04:00
|
|
|
usePendingItems = isLoadingRecent && (usePendingItems || !mutable.get('pendingItems').isEmpty());
|
2019-09-16 13:39:44 -04:00
|
|
|
|
2019-07-16 00:30:47 -04:00
|
|
|
mutable.update(usePendingItems ? 'pendingItems' : 'items', list => {
|
2018-03-24 17:07:23 -04:00
|
|
|
const lastIndex = 1 + list.findLastIndex(
|
2020-03-08 11:02:36 -04:00
|
|
|
item => item !== null && (compareId(item.get('id'), items.last().get('id')) > 0 || item.get('id') === items.last().get('id')),
|
2018-03-24 17:07:23 -04:00
|
|
|
);
|
|
|
|
|
|
|
|
const firstIndex = 1 + list.take(lastIndex).findLastIndex(
|
2020-03-08 11:02:36 -04:00
|
|
|
item => item !== null && compareId(item.get('id'), items.first().get('id')) > 0,
|
2018-03-24 17:07:23 -04:00
|
|
|
);
|
|
|
|
|
|
|
|
return list.take(firstIndex).concat(items, list.skip(lastIndex));
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!next) {
|
2018-10-07 17:44:58 -04:00
|
|
|
mutable.set('hasMore', false);
|
2018-03-24 17:07:23 -04:00
|
|
|
}
|
|
|
|
|
2020-09-26 14:57:07 -04:00
|
|
|
if (shouldCountUnreadNotifications(state)) {
|
|
|
|
mutable.update('unread', unread => unread + items.count(item => compareId(item.get('id'), lastReadId) > 0));
|
|
|
|
} else {
|
|
|
|
const mostRecent = items.find(item => item !== null);
|
|
|
|
if (mostRecent && compareId(lastReadId, mostRecent.get('id')) < 0) {
|
|
|
|
mutable.set('lastReadId', mostRecent.get('id'));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-24 17:07:23 -04:00
|
|
|
mutable.set('isLoading', false);
|
|
|
|
});
|
2016-11-20 13:39:18 -05:00
|
|
|
};
|
2016-09-17 10:36:10 -04:00
|
|
|
|
2019-12-01 11:25:29 -05:00
|
|
|
const filterNotifications = (state, accountIds, type) => {
|
|
|
|
const helper = list => list.filterNot(item => item !== null && accountIds.includes(item.get('account')) && (type === undefined || type === item.get('type')));
|
2019-07-16 00:30:47 -04:00
|
|
|
return state.update('items', helper).update('pendingItems', helper);
|
2016-11-23 16:57:57 -05:00
|
|
|
};
|
|
|
|
|
2020-09-26 14:57:07 -04:00
|
|
|
const clearUnread = (state) => {
|
|
|
|
state = state.set('unread', state.get('pendingItems').size);
|
|
|
|
const lastNotification = state.get('items').find(item => item !== null);
|
|
|
|
return state.set('lastReadId', lastNotification ? lastNotification.get('id') : '0');
|
|
|
|
};
|
|
|
|
|
2017-02-20 18:10:49 -05:00
|
|
|
const updateTop = (state, top) => {
|
2020-09-26 14:57:07 -04:00
|
|
|
state = state.set('top', top);
|
|
|
|
|
|
|
|
if (!shouldCountUnreadNotifications(state)) {
|
|
|
|
state = clearUnread(state);
|
2017-02-20 18:10:49 -05:00
|
|
|
}
|
|
|
|
|
2020-09-26 14:57:07 -04:00
|
|
|
return state;
|
2017-02-20 18:10:49 -05:00
|
|
|
};
|
|
|
|
|
2017-05-11 15:54:47 -04:00
|
|
|
const deleteByStatus = (state, statusId) => {
|
2020-09-26 14:57:07 -04:00
|
|
|
const lastReadId = state.get('lastReadId');
|
|
|
|
|
|
|
|
if (shouldCountUnreadNotifications(state)) {
|
|
|
|
const deletedUnread = state.get('items').filter(item => item !== null && item.get('status') === statusId && compareId(item.get('id'), lastReadId) > 0);
|
|
|
|
state = state.update('unread', unread => unread - deletedUnread.size);
|
|
|
|
}
|
|
|
|
|
2019-07-16 00:30:47 -04:00
|
|
|
const helper = list => list.filterNot(item => item !== null && item.get('status') === statusId);
|
2020-09-26 14:57:07 -04:00
|
|
|
const deletedUnread = state.get('pendingItems').filter(item => item !== null && item.get('status') === statusId && compareId(item.get('id'), lastReadId) > 0);
|
|
|
|
state = state.update('unread', unread => unread - deletedUnread.size);
|
2019-07-16 00:30:47 -04:00
|
|
|
return state.update('items', helper).update('pendingItems', helper);
|
2017-05-11 15:54:47 -04:00
|
|
|
};
|
|
|
|
|
2020-09-26 14:57:07 -04:00
|
|
|
const updateMounted = (state) => {
|
|
|
|
state = state.update('mounted', count => count + 1);
|
2020-10-07 18:35:27 -04:00
|
|
|
if (!shouldCountUnreadNotifications(state, state.get('mounted') === 1)) {
|
2020-09-26 14:57:07 -04:00
|
|
|
state = state.set('readMarkerId', state.get('lastReadId'));
|
|
|
|
state = clearUnread(state);
|
|
|
|
}
|
|
|
|
return state;
|
|
|
|
};
|
|
|
|
|
|
|
|
const updateVisibility = (state, visibility) => {
|
|
|
|
state = state.set('isTabVisible', visibility);
|
|
|
|
if (!shouldCountUnreadNotifications(state)) {
|
|
|
|
state = state.set('readMarkerId', state.get('lastReadId'));
|
|
|
|
state = clearUnread(state);
|
|
|
|
}
|
|
|
|
return state;
|
|
|
|
};
|
|
|
|
|
2020-10-07 18:35:27 -04:00
|
|
|
const shouldCountUnreadNotifications = (state, ignoreScroll = false) => {
|
2020-09-26 14:57:07 -04:00
|
|
|
const isTabVisible = state.get('isTabVisible');
|
|
|
|
const isOnTop = state.get('top');
|
|
|
|
const isMounted = state.get('mounted') > 0;
|
|
|
|
const lastReadId = state.get('lastReadId');
|
|
|
|
const lastItemReached = !state.get('hasMore') || lastReadId === '0' || (!state.get('items').isEmpty() && compareId(state.get('items').last().get('id'), lastReadId) <= 0);
|
|
|
|
|
2020-10-07 18:35:27 -04:00
|
|
|
return !(isTabVisible && (ignoreScroll || isOnTop) && isMounted && lastItemReached);
|
2020-09-26 14:57:07 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
const recountUnread = (state, last_read_id) => {
|
|
|
|
return state.withMutations(mutable => {
|
|
|
|
if (compareId(last_read_id, mutable.get('lastReadId')) > 0) {
|
|
|
|
mutable.set('lastReadId', last_read_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (compareId(last_read_id, mutable.get('readMarkerId')) > 0) {
|
|
|
|
mutable.set('readMarkerId', last_read_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (state.get('unread') > 0 || shouldCountUnreadNotifications(state)) {
|
|
|
|
mutable.set('unread', mutable.get('pendingItems').count(item => item !== null) + mutable.get('items').count(item => item && compareId(item.get('id'), last_read_id) > 0));
|
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2016-09-19 17:25:59 -04:00
|
|
|
export default function notifications(state = initialState, action) {
|
2016-09-12 13:20:55 -04:00
|
|
|
switch(action.type) {
|
2020-09-26 14:57:07 -04:00
|
|
|
case MARKERS_FETCH_SUCCESS:
|
|
|
|
return action.markers.notifications ? recountUnread(state, action.markers.notifications.last_read_id) : state;
|
|
|
|
case NOTIFICATIONS_MOUNT:
|
|
|
|
return updateMounted(state);
|
|
|
|
case NOTIFICATIONS_UNMOUNT:
|
|
|
|
return state.update('mounted', count => count - 1);
|
|
|
|
case APP_FOCUS:
|
|
|
|
return updateVisibility(state, true);
|
|
|
|
case APP_UNFOCUS:
|
|
|
|
return updateVisibility(state, false);
|
2019-07-16 00:30:47 -04:00
|
|
|
case NOTIFICATIONS_LOAD_PENDING:
|
|
|
|
return state.update('items', list => state.get('pendingItems').concat(list.take(40))).set('pendingItems', ImmutableList()).set('unread', 0);
|
2017-01-25 22:30:40 -05:00
|
|
|
case NOTIFICATIONS_EXPAND_REQUEST:
|
2017-11-11 22:51:07 -05:00
|
|
|
return state.set('isLoading', true);
|
2017-01-25 22:30:40 -05:00
|
|
|
case NOTIFICATIONS_EXPAND_FAIL:
|
2017-11-11 22:51:07 -05:00
|
|
|
return state.set('isLoading', false);
|
2018-12-15 23:56:41 -05:00
|
|
|
case NOTIFICATIONS_FILTER_SET:
|
2019-07-16 00:30:47 -04:00
|
|
|
return state.set('items', ImmutableList()).set('pendingItems', ImmutableList()).set('hasMore', true);
|
2017-02-20 18:10:49 -05:00
|
|
|
case NOTIFICATIONS_SCROLL_TOP:
|
|
|
|
return updateTop(state, action.top);
|
2017-01-09 08:00:55 -05:00
|
|
|
case NOTIFICATIONS_UPDATE:
|
2019-07-16 00:30:47 -04:00
|
|
|
return normalizeNotification(state, action.notification, action.usePendingItems);
|
2017-01-09 08:00:55 -05:00
|
|
|
case NOTIFICATIONS_EXPAND_SUCCESS:
|
2019-09-18 05:27:10 -04:00
|
|
|
return expandNormalizedNotifications(state, action.notifications, action.next, action.isLoadingRecent, action.usePendingItems);
|
2017-01-09 08:00:55 -05:00
|
|
|
case ACCOUNT_BLOCK_SUCCESS:
|
2019-07-24 22:17:35 -04:00
|
|
|
return filterNotifications(state, [action.relationship.id]);
|
2017-10-02 20:01:54 -04:00
|
|
|
case ACCOUNT_MUTE_SUCCESS:
|
2019-07-24 22:17:35 -04:00
|
|
|
return action.relationship.muting_notifications ? filterNotifications(state, [action.relationship.id]) : state;
|
|
|
|
case DOMAIN_BLOCK_SUCCESS:
|
|
|
|
return filterNotifications(state, action.accounts);
|
2019-12-01 11:25:29 -05:00
|
|
|
case FOLLOW_REQUEST_AUTHORIZE_SUCCESS:
|
|
|
|
case FOLLOW_REQUEST_REJECT_SUCCESS:
|
|
|
|
return filterNotifications(state, [action.id], 'follow_request');
|
|
|
|
case ACCOUNT_MUTE_SUCCESS:
|
|
|
|
return action.relationship.muting_notifications ? filterNotifications(state, [action.relationship.id]) : state;
|
2017-02-06 18:06:40 -05:00
|
|
|
case NOTIFICATIONS_CLEAR:
|
2019-07-16 00:30:47 -04:00
|
|
|
return state.set('items', ImmutableList()).set('pendingItems', ImmutableList()).set('hasMore', false);
|
2017-05-11 15:54:47 -04:00
|
|
|
case TIMELINE_DELETE:
|
|
|
|
return deleteByStatus(state, action.id);
|
2018-03-24 17:07:23 -04:00
|
|
|
case TIMELINE_DISCONNECT:
|
|
|
|
return action.timeline === 'home' ?
|
2019-07-16 00:30:47 -04:00
|
|
|
state.update(action.usePendingItems ? 'pendingItems' : 'items', items => items.first() ? items.unshift(null) : items) :
|
2018-03-24 17:07:23 -04:00
|
|
|
state;
|
2020-09-26 14:57:07 -04:00
|
|
|
case NOTIFICATIONS_MARK_AS_READ:
|
|
|
|
const lastNotification = state.get('items').find(item => item !== null);
|
|
|
|
return lastNotification ? recountUnread(state, lastNotification.get('id')) : state;
|
2017-01-09 08:00:55 -05:00
|
|
|
default:
|
|
|
|
return state;
|
2016-09-12 13:20:55 -04:00
|
|
|
}
|
|
|
|
};
|