2017-12-04 07:26:40 +00:00
|
|
|
import api, { getLinks } from 'flavours/glitch/util/api';
|
2016-11-21 09:24:50 +00:00
|
|
|
import IntlMessageFormat from 'intl-messageformat';
|
2016-11-20 18:39:18 +00:00
|
|
|
import { fetchRelationships } from './accounts';
|
2017-05-12 12:46:21 +00:00
|
|
|
import { defineMessages } from 'react-intl';
|
2018-12-18 16:22:01 +00:00
|
|
|
import { List as ImmutableList } from 'immutable';
|
2018-05-10 11:04:55 +00:00
|
|
|
import { unescapeHTML } from 'flavours/glitch/util/html';
|
2018-07-08 18:13:00 +00:00
|
|
|
import { getFilters, regexFromFilters } from 'flavours/glitch/selectors';
|
2016-11-20 18:39:18 +00:00
|
|
|
|
|
|
|
export const NOTIFICATIONS_UPDATE = 'NOTIFICATIONS_UPDATE';
|
|
|
|
|
2017-07-21 18:33:16 +00:00
|
|
|
// tracking the notif cleaning request
|
|
|
|
export const NOTIFICATIONS_DELETE_MARKED_REQUEST = 'NOTIFICATIONS_DELETE_MARKED_REQUEST';
|
|
|
|
export const NOTIFICATIONS_DELETE_MARKED_SUCCESS = 'NOTIFICATIONS_DELETE_MARKED_SUCCESS';
|
|
|
|
export const NOTIFICATIONS_DELETE_MARKED_FAIL = 'NOTIFICATIONS_DELETE_MARKED_FAIL';
|
2017-07-30 16:36:28 +00:00
|
|
|
export const NOTIFICATIONS_MARK_ALL_FOR_DELETE = 'NOTIFICATIONS_MARK_ALL_FOR_DELETE';
|
2017-07-21 18:33:16 +00:00
|
|
|
export const NOTIFICATIONS_ENTER_CLEARING_MODE = 'NOTIFICATIONS_ENTER_CLEARING_MODE'; // arg: yes
|
|
|
|
// Unmark notifications (when the cleaning mode is left)
|
|
|
|
export const NOTIFICATIONS_UNMARK_ALL_FOR_DELETE = 'NOTIFICATIONS_UNMARK_ALL_FOR_DELETE';
|
|
|
|
// Mark one for delete
|
|
|
|
export const NOTIFICATION_MARK_FOR_DELETE = 'NOTIFICATION_MARK_FOR_DELETE';
|
2017-07-14 15:03:43 +00:00
|
|
|
|
2016-11-20 18:39:18 +00:00
|
|
|
export const NOTIFICATIONS_EXPAND_REQUEST = 'NOTIFICATIONS_EXPAND_REQUEST';
|
|
|
|
export const NOTIFICATIONS_EXPAND_SUCCESS = 'NOTIFICATIONS_EXPAND_SUCCESS';
|
|
|
|
export const NOTIFICATIONS_EXPAND_FAIL = 'NOTIFICATIONS_EXPAND_FAIL';
|
|
|
|
|
2018-12-18 16:22:01 +00:00
|
|
|
export const NOTIFICATIONS_FILTER_SET = 'NOTIFICATIONS_FILTER_SET';
|
|
|
|
|
2017-02-20 23:10:49 +00:00
|
|
|
export const NOTIFICATIONS_CLEAR = 'NOTIFICATIONS_CLEAR';
|
|
|
|
export const NOTIFICATIONS_SCROLL_TOP = 'NOTIFICATIONS_SCROLL_TOP';
|
2017-02-06 23:06:40 +00:00
|
|
|
|
2018-09-06 13:47:13 +00:00
|
|
|
export const NOTIFICATIONS_MOUNT = 'NOTIFICATIONS_MOUNT';
|
|
|
|
export const NOTIFICATIONS_UNMOUNT = 'NOTIFICATIONS_UNMOUNT';
|
|
|
|
|
2018-09-06 15:47:33 +00:00
|
|
|
export const NOTIFICATIONS_SET_VISIBILITY = 'NOTIFICATIONS_SET_VISIBILITY';
|
|
|
|
|
2017-06-23 14:05:04 +00:00
|
|
|
defineMessages({
|
2017-05-12 12:46:21 +00:00
|
|
|
mention: { id: 'notification.mention', defaultMessage: '{name} mentioned you' },
|
|
|
|
});
|
|
|
|
|
2016-11-20 18:39:18 +00:00
|
|
|
const fetchRelatedRelationships = (dispatch, notifications) => {
|
|
|
|
const accountIds = notifications.filter(item => item.type === 'follow').map(item => item.account.id);
|
|
|
|
|
|
|
|
if (accountIds > 0) {
|
|
|
|
dispatch(fetchRelationships(accountIds));
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-11-21 09:24:50 +00:00
|
|
|
export function updateNotifications(notification, intlMessages, intlLocale) {
|
2017-01-02 13:09:57 +00:00
|
|
|
return (dispatch, getState) => {
|
2017-01-17 19:37:54 +00:00
|
|
|
const showAlert = getState().getIn(['settings', 'notifications', 'alerts', notification.type], true);
|
|
|
|
const playSound = getState().getIn(['settings', 'notifications', 'sounds', notification.type], true);
|
2018-07-08 18:13:00 +00:00
|
|
|
const filters = getFilters(getState(), { contextType: 'notifications' });
|
|
|
|
|
|
|
|
let filtered = false;
|
|
|
|
|
|
|
|
if (notification.type === 'mention') {
|
|
|
|
const regex = regexFromFilters(filters);
|
|
|
|
const searchIndex = notification.status.spoiler_text + '\n' + unescapeHTML(notification.status.content);
|
|
|
|
|
|
|
|
filtered = regex && regex.test(searchIndex);
|
|
|
|
}
|
2017-01-17 19:09:03 +00:00
|
|
|
|
2016-11-20 18:39:18 +00:00
|
|
|
dispatch({
|
|
|
|
type: NOTIFICATIONS_UPDATE,
|
|
|
|
notification,
|
|
|
|
account: notification.account,
|
2017-01-17 19:09:03 +00:00
|
|
|
status: notification.status,
|
2018-07-08 18:13:00 +00:00
|
|
|
meta: (playSound && !filtered) ? { sound: 'boop' } : undefined,
|
2016-11-20 18:39:18 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
fetchRelatedRelationships(dispatch, [notification]);
|
2016-11-21 09:24:50 +00:00
|
|
|
|
|
|
|
// Desktop notifications
|
2018-07-08 18:13:00 +00:00
|
|
|
if (typeof window.Notification !== 'undefined' && showAlert && !filtered) {
|
2016-11-21 09:59:59 +00:00
|
|
|
const title = new IntlMessageFormat(intlMessages[`notification.${notification.type}`], intlLocale).format({ name: notification.account.display_name.length > 0 ? notification.account.display_name : notification.account.username });
|
2017-05-13 02:03:43 +00:00
|
|
|
const body = (notification.status && notification.status.spoiler_text.length > 0) ? notification.status.spoiler_text : unescapeHTML(notification.status ? notification.status.content : '');
|
2016-11-21 09:24:50 +00:00
|
|
|
|
2017-05-11 11:34:05 +00:00
|
|
|
const notify = new Notification(title, { body, icon: notification.account.avatar, tag: notification.id });
|
|
|
|
notify.addEventListener('click', () => {
|
|
|
|
window.focus();
|
|
|
|
notify.close();
|
|
|
|
});
|
2016-11-21 09:59:59 +00:00
|
|
|
}
|
2016-11-20 18:39:18 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2017-04-11 20:53:58 +00:00
|
|
|
const excludeTypesFromSettings = state => state.getIn(['settings', 'notifications', 'shows']).filter(enabled => !enabled).keySeq().toJS();
|
|
|
|
|
2017-04-10 21:45:29 +00:00
|
|
|
|
2018-12-18 16:22:01 +00:00
|
|
|
const excludeTypesFromFilter = filter => {
|
|
|
|
const allTypes = ImmutableList(['follow', 'favourite', 'reblog', 'mention']);
|
|
|
|
return allTypes.filterNot(item => item === filter).toJS();
|
|
|
|
};
|
|
|
|
|
2018-05-27 17:42:45 +00:00
|
|
|
const noOp = () => {};
|
|
|
|
|
|
|
|
export function expandNotifications({ maxId } = {}, done = noOp) {
|
2016-11-20 18:39:18 +00:00
|
|
|
return (dispatch, getState) => {
|
2018-12-18 16:22:01 +00:00
|
|
|
const activeFilter = getState().getIn(['settings', 'notifications', 'quickFilter', 'active']);
|
2018-05-27 17:42:45 +00:00
|
|
|
const notifications = getState().get('notifications');
|
2018-11-10 17:01:39 +00:00
|
|
|
const isLoadingMore = !!maxId;
|
2018-05-27 17:42:45 +00:00
|
|
|
|
|
|
|
if (notifications.get('isLoading')) {
|
|
|
|
done();
|
2016-11-20 18:39:18 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-05-04 21:41:34 +00:00
|
|
|
const params = {
|
2018-05-27 17:30:52 +00:00
|
|
|
max_id: maxId,
|
2018-12-18 16:22:01 +00:00
|
|
|
exclude_types: activeFilter === 'all'
|
|
|
|
? excludeTypesFromSettings(getState())
|
|
|
|
: excludeTypesFromFilter(activeFilter),
|
2017-05-04 21:41:34 +00:00
|
|
|
};
|
2017-04-10 21:45:29 +00:00
|
|
|
|
2018-05-27 17:42:45 +00:00
|
|
|
if (!maxId && notifications.get('items').size > 0) {
|
2018-12-01 16:54:12 +00:00
|
|
|
params.since_id = notifications.getIn(['items', 0, 'id']);
|
2018-05-27 17:42:45 +00:00
|
|
|
}
|
|
|
|
|
2018-11-10 17:01:39 +00:00
|
|
|
dispatch(expandNotificationsRequest(isLoadingMore));
|
2017-04-10 21:45:29 +00:00
|
|
|
|
2017-06-11 15:07:35 +00:00
|
|
|
api(getState).get('/api/v1/notifications', { params }).then(response => {
|
2016-11-20 18:39:18 +00:00
|
|
|
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
2018-11-10 17:01:39 +00:00
|
|
|
dispatch(expandNotificationsSuccess(response.data, next ? next.uri : null, isLoadingMore));
|
2016-11-20 18:39:18 +00:00
|
|
|
fetchRelatedRelationships(dispatch, response.data);
|
2018-05-27 17:42:45 +00:00
|
|
|
done();
|
2016-11-20 18:39:18 +00:00
|
|
|
}).catch(error => {
|
2018-11-10 17:01:39 +00:00
|
|
|
dispatch(expandNotificationsFail(error, isLoadingMore));
|
2018-05-27 17:42:45 +00:00
|
|
|
done();
|
2016-11-20 18:39:18 +00:00
|
|
|
});
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2018-11-10 17:01:39 +00:00
|
|
|
export function expandNotificationsRequest(isLoadingMore) {
|
2016-09-12 17:20:55 +00:00
|
|
|
return {
|
2017-05-20 15:31:47 +00:00
|
|
|
type: NOTIFICATIONS_EXPAND_REQUEST,
|
2018-11-10 17:01:39 +00:00
|
|
|
skipLoading: !isLoadingMore,
|
2016-09-12 17:20:55 +00:00
|
|
|
};
|
|
|
|
};
|
2016-09-21 20:07:18 +00:00
|
|
|
|
2018-11-10 17:01:39 +00:00
|
|
|
export function expandNotificationsSuccess(notifications, next, isLoadingMore) {
|
2016-09-21 20:07:18 +00:00
|
|
|
return {
|
2016-11-20 18:39:18 +00:00
|
|
|
type: NOTIFICATIONS_EXPAND_SUCCESS,
|
|
|
|
notifications,
|
|
|
|
accounts: notifications.map(item => item.account),
|
2016-12-22 10:23:30 +00:00
|
|
|
statuses: notifications.map(item => item.status).filter(status => !!status),
|
2017-05-20 15:31:47 +00:00
|
|
|
next,
|
2018-11-10 17:01:39 +00:00
|
|
|
skipLoading: !isLoadingMore,
|
2016-09-21 20:07:18 +00:00
|
|
|
};
|
|
|
|
};
|
2016-10-18 15:09:45 +00:00
|
|
|
|
2018-11-10 17:01:39 +00:00
|
|
|
export function expandNotificationsFail(error, isLoadingMore) {
|
2016-10-18 15:09:45 +00:00
|
|
|
return {
|
2016-11-20 18:39:18 +00:00
|
|
|
type: NOTIFICATIONS_EXPAND_FAIL,
|
2017-05-20 15:31:47 +00:00
|
|
|
error,
|
2018-11-10 17:01:39 +00:00
|
|
|
skipLoading: !isLoadingMore,
|
2016-10-18 15:09:45 +00:00
|
|
|
};
|
|
|
|
};
|
2017-02-06 23:06:40 +00:00
|
|
|
|
|
|
|
export function clearNotifications() {
|
|
|
|
return (dispatch, getState) => {
|
|
|
|
dispatch({
|
2017-05-20 15:31:47 +00:00
|
|
|
type: NOTIFICATIONS_CLEAR,
|
2017-02-06 23:06:40 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
api(getState).post('/api/v1/notifications/clear');
|
|
|
|
};
|
|
|
|
};
|
2017-02-20 23:10:49 +00:00
|
|
|
|
|
|
|
export function scrollTopNotifications(top) {
|
|
|
|
return {
|
|
|
|
type: NOTIFICATIONS_SCROLL_TOP,
|
2017-05-20 15:31:47 +00:00
|
|
|
top,
|
2017-02-20 23:10:49 +00:00
|
|
|
};
|
|
|
|
};
|
2017-07-14 15:03:43 +00:00
|
|
|
|
2017-07-21 18:33:16 +00:00
|
|
|
export function deleteMarkedNotifications() {
|
2017-07-14 15:03:43 +00:00
|
|
|
return (dispatch, getState) => {
|
2017-07-21 18:33:16 +00:00
|
|
|
dispatch(deleteMarkedNotificationsRequest());
|
|
|
|
|
|
|
|
let ids = [];
|
|
|
|
getState().getIn(['notifications', 'items']).forEach((n) => {
|
|
|
|
if (n.get('markedForDelete')) {
|
|
|
|
ids.push(n.get('id'));
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
if (ids.length === 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
api(getState).delete(`/api/v1/notifications/destroy_multiple?ids[]=${ids.join('&ids[]=')}`).then(() => {
|
|
|
|
dispatch(deleteMarkedNotificationsSuccess());
|
|
|
|
}).catch(error => {
|
|
|
|
console.error(error);
|
|
|
|
dispatch(deleteMarkedNotificationsFail(error));
|
2017-07-14 15:03:43 +00:00
|
|
|
});
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2017-07-21 18:33:16 +00:00
|
|
|
export function enterNotificationClearingMode(yes) {
|
|
|
|
return {
|
|
|
|
type: NOTIFICATIONS_ENTER_CLEARING_MODE,
|
|
|
|
yes: yes,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2017-07-30 16:36:28 +00:00
|
|
|
export function markAllNotifications(yes) {
|
|
|
|
return {
|
|
|
|
type: NOTIFICATIONS_MARK_ALL_FOR_DELETE,
|
|
|
|
yes: yes, // true, false or null. null = invert
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2017-07-21 18:33:16 +00:00
|
|
|
export function deleteMarkedNotificationsRequest() {
|
2017-07-14 15:03:43 +00:00
|
|
|
return {
|
2017-07-21 18:33:16 +00:00
|
|
|
type: NOTIFICATIONS_DELETE_MARKED_REQUEST,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function deleteMarkedNotificationsFail() {
|
|
|
|
return {
|
|
|
|
type: NOTIFICATIONS_DELETE_MARKED_FAIL,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function markNotificationForDelete(id, yes) {
|
|
|
|
return {
|
|
|
|
type: NOTIFICATION_MARK_FOR_DELETE,
|
2017-07-14 15:03:43 +00:00
|
|
|
id: id,
|
2017-07-21 18:33:16 +00:00
|
|
|
yes: yes,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function deleteMarkedNotificationsSuccess() {
|
|
|
|
return {
|
|
|
|
type: NOTIFICATIONS_DELETE_MARKED_SUCCESS,
|
2017-07-14 15:03:43 +00:00
|
|
|
};
|
|
|
|
};
|
2018-09-06 13:47:13 +00:00
|
|
|
|
|
|
|
export function mountNotifications() {
|
|
|
|
return {
|
|
|
|
type: NOTIFICATIONS_MOUNT,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function unmountNotifications() {
|
|
|
|
return {
|
|
|
|
type: NOTIFICATIONS_UNMOUNT,
|
|
|
|
};
|
|
|
|
};
|
2018-09-06 15:47:33 +00:00
|
|
|
|
|
|
|
export function notificationsSetVisibility(visibility) {
|
|
|
|
return {
|
|
|
|
type: NOTIFICATIONS_SET_VISIBILITY,
|
|
|
|
visibility: visibility,
|
|
|
|
};
|
|
|
|
};
|
2018-12-18 16:22:01 +00:00
|
|
|
|
|
|
|
export function setFilter (filterType) {
|
|
|
|
return dispatch => {
|
|
|
|
dispatch({
|
|
|
|
type: NOTIFICATIONS_FILTER_SET,
|
|
|
|
path: ['notifications', 'quickFilter', 'active'],
|
|
|
|
value: filterType,
|
|
|
|
});
|
|
|
|
dispatch(expandNotifications());
|
|
|
|
};
|
|
|
|
};
|