2017-05-21 01:31:47 +10:00
|
|
|
import api, { getLinks } from '../api';
|
2016-11-21 20:24:50 +11:00
|
|
|
import IntlMessageFormat from 'intl-messageformat';
|
2016-11-21 05:39:18 +11:00
|
|
|
import { fetchRelationships } from './accounts';
|
2018-03-24 23:06:27 +11:00
|
|
|
import {
|
|
|
|
importFetchedAccount,
|
|
|
|
importFetchedAccounts,
|
|
|
|
importFetchedStatus,
|
|
|
|
importFetchedStatuses,
|
|
|
|
} from './importer';
|
2019-03-17 13:13:29 +11:00
|
|
|
import { saveSettings } from './settings';
|
2017-05-12 22:46:21 +10:00
|
|
|
import { defineMessages } from 'react-intl';
|
2018-12-16 15:56:41 +11:00
|
|
|
import { List as ImmutableList } from 'immutable';
|
2018-05-07 17:30:38 +10:00
|
|
|
import { unescapeHTML } from '../utils/html';
|
2018-07-08 03:31:19 +10:00
|
|
|
import { getFilters, regexFromFilters } from '../selectors';
|
2016-11-21 05:39:18 +11:00
|
|
|
|
2018-04-13 09:20:04 +10:00
|
|
|
export const NOTIFICATIONS_UPDATE = 'NOTIFICATIONS_UPDATE';
|
|
|
|
export const NOTIFICATIONS_UPDATE_NOOP = 'NOTIFICATIONS_UPDATE_NOOP';
|
2016-11-21 05:39:18 +11: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-16 15:56:41 +11:00
|
|
|
export const NOTIFICATIONS_FILTER_SET = 'NOTIFICATIONS_FILTER_SET';
|
|
|
|
|
2017-02-21 10:10:49 +11:00
|
|
|
export const NOTIFICATIONS_CLEAR = 'NOTIFICATIONS_CLEAR';
|
|
|
|
export const NOTIFICATIONS_SCROLL_TOP = 'NOTIFICATIONS_SCROLL_TOP';
|
2017-02-07 10:06:40 +11:00
|
|
|
|
2017-06-24 00:05:04 +10:00
|
|
|
defineMessages({
|
2017-05-12 22:46:21 +10:00
|
|
|
mention: { id: 'notification.mention', defaultMessage: '{name} mentioned you' },
|
2018-05-19 22:46:47 +10:00
|
|
|
group: { id: 'notifications.group', defaultMessage: '{count} notifications' },
|
2017-05-12 22:46:21 +10:00
|
|
|
});
|
|
|
|
|
2016-11-21 05:39:18 +11:00
|
|
|
const fetchRelatedRelationships = (dispatch, notifications) => {
|
|
|
|
const accountIds = notifications.filter(item => item.type === 'follow').map(item => item.account.id);
|
|
|
|
|
2018-03-12 13:20:56 +11:00
|
|
|
if (accountIds.length > 0) {
|
2016-11-21 05:39:18 +11:00
|
|
|
dispatch(fetchRelationships(accountIds));
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-11-21 20:24:50 +11:00
|
|
|
export function updateNotifications(notification, intlMessages, intlLocale) {
|
2017-01-03 00:09:57 +11:00
|
|
|
return (dispatch, getState) => {
|
2018-04-13 09:20:04 +10:00
|
|
|
const showInColumn = getState().getIn(['settings', 'notifications', 'shows', notification.type], true);
|
|
|
|
const showAlert = getState().getIn(['settings', 'notifications', 'alerts', notification.type], true);
|
|
|
|
const playSound = getState().getIn(['settings', 'notifications', 'sounds', notification.type], true);
|
2018-07-08 03:31:19 +10: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-18 06:09:03 +11:00
|
|
|
|
2018-04-13 09:20:04 +10:00
|
|
|
if (showInColumn) {
|
|
|
|
dispatch(importFetchedAccount(notification.account));
|
|
|
|
|
|
|
|
if (notification.status) {
|
|
|
|
dispatch(importFetchedStatus(notification.status));
|
|
|
|
}
|
2018-03-24 23:06:27 +11:00
|
|
|
|
2018-04-13 09:20:04 +10:00
|
|
|
dispatch({
|
|
|
|
type: NOTIFICATIONS_UPDATE,
|
|
|
|
notification,
|
2018-07-08 03:31:19 +10:00
|
|
|
meta: (playSound && !filtered) ? { sound: 'boop' } : undefined,
|
2018-04-13 09:20:04 +10:00
|
|
|
});
|
2016-11-21 05:39:18 +11:00
|
|
|
|
2018-04-13 09:20:04 +10:00
|
|
|
fetchRelatedRelationships(dispatch, [notification]);
|
2018-07-08 03:31:19 +10:00
|
|
|
} else if (playSound && !filtered) {
|
2018-04-13 09:20:04 +10:00
|
|
|
dispatch({
|
|
|
|
type: NOTIFICATIONS_UPDATE_NOOP,
|
|
|
|
meta: { sound: 'boop' },
|
|
|
|
});
|
|
|
|
}
|
2016-11-21 20:24:50 +11:00
|
|
|
|
|
|
|
// Desktop notifications
|
2018-07-08 03:31:19 +10:00
|
|
|
if (typeof window.Notification !== 'undefined' && showAlert && !filtered) {
|
2016-11-21 20:59:59 +11: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 12:03:43 +10:00
|
|
|
const body = (notification.status && notification.status.spoiler_text.length > 0) ? notification.status.spoiler_text : unescapeHTML(notification.status ? notification.status.content : '');
|
2016-11-21 20:24:50 +11:00
|
|
|
|
2017-05-11 21:34:05 +10:00
|
|
|
const notify = new Notification(title, { body, icon: notification.account.avatar, tag: notification.id });
|
2018-04-13 09:20:04 +10:00
|
|
|
|
2017-05-11 21:34:05 +10:00
|
|
|
notify.addEventListener('click', () => {
|
|
|
|
window.focus();
|
|
|
|
notify.close();
|
|
|
|
});
|
2016-11-21 20:59:59 +11:00
|
|
|
}
|
2016-11-21 05:39:18 +11:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2017-04-12 06:53:58 +10:00
|
|
|
const excludeTypesFromSettings = state => state.getIn(['settings', 'notifications', 'shows']).filter(enabled => !enabled).keySeq().toJS();
|
|
|
|
|
2018-12-16 15:56:41 +11:00
|
|
|
const excludeTypesFromFilter = filter => {
|
2019-03-11 10:49:31 +11:00
|
|
|
const allTypes = ImmutableList(['follow', 'favourite', 'reblog', 'mention', 'poll']);
|
2018-12-16 15:56:41 +11:00
|
|
|
return allTypes.filterNot(item => item === filter).toJS();
|
|
|
|
};
|
|
|
|
|
2018-05-18 10:32:35 +10:00
|
|
|
const noOp = () => {};
|
|
|
|
|
|
|
|
export function expandNotifications({ maxId } = {}, done = noOp) {
|
2016-11-21 05:39:18 +11:00
|
|
|
return (dispatch, getState) => {
|
2018-12-16 15:56:41 +11:00
|
|
|
const activeFilter = getState().getIn(['settings', 'notifications', 'quickFilter', 'active']);
|
2018-05-18 10:32:35 +10:00
|
|
|
const notifications = getState().get('notifications');
|
2018-11-11 01:04:13 +11:00
|
|
|
const isLoadingMore = !!maxId;
|
2018-05-18 10:32:35 +10:00
|
|
|
|
|
|
|
if (notifications.get('isLoading')) {
|
|
|
|
done();
|
2016-11-21 05:39:18 +11:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-05-05 07:41:34 +10:00
|
|
|
const params = {
|
2018-03-25 08:07:23 +11:00
|
|
|
max_id: maxId,
|
2018-12-16 15:56:41 +11:00
|
|
|
exclude_types: activeFilter === 'all'
|
|
|
|
? excludeTypesFromSettings(getState())
|
|
|
|
: excludeTypesFromFilter(activeFilter),
|
2017-05-05 07:41:34 +10:00
|
|
|
};
|
2017-04-11 07:45:29 +10:00
|
|
|
|
2018-05-18 10:32:35 +10:00
|
|
|
if (!maxId && notifications.get('items').size > 0) {
|
2018-12-02 04:36:41 +11:00
|
|
|
params.since_id = notifications.getIn(['items', 0, 'id']);
|
2018-05-18 10:32:35 +10:00
|
|
|
}
|
|
|
|
|
2018-11-11 01:04:13 +11:00
|
|
|
dispatch(expandNotificationsRequest(isLoadingMore));
|
2017-04-11 07:45:29 +10:00
|
|
|
|
2017-06-12 01:07:35 +10:00
|
|
|
api(getState).get('/api/v1/notifications', { params }).then(response => {
|
2016-11-21 05:39:18 +11:00
|
|
|
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
2018-03-24 23:06:27 +11:00
|
|
|
|
|
|
|
dispatch(importFetchedAccounts(response.data.map(item => item.account)));
|
|
|
|
dispatch(importFetchedStatuses(response.data.map(item => item.status).filter(status => !!status)));
|
|
|
|
|
2018-11-11 01:04:13 +11:00
|
|
|
dispatch(expandNotificationsSuccess(response.data, next ? next.uri : null, isLoadingMore));
|
2016-11-21 05:39:18 +11:00
|
|
|
fetchRelatedRelationships(dispatch, response.data);
|
2018-05-18 10:32:35 +10:00
|
|
|
done();
|
2016-11-21 05:39:18 +11:00
|
|
|
}).catch(error => {
|
2018-11-11 01:04:13 +11:00
|
|
|
dispatch(expandNotificationsFail(error, isLoadingMore));
|
2018-05-18 10:32:35 +10:00
|
|
|
done();
|
2016-11-21 05:39:18 +11:00
|
|
|
});
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2018-11-11 01:04:13 +11:00
|
|
|
export function expandNotificationsRequest(isLoadingMore) {
|
2016-09-13 03:20:55 +10:00
|
|
|
return {
|
2017-05-21 01:31:47 +10:00
|
|
|
type: NOTIFICATIONS_EXPAND_REQUEST,
|
2018-11-11 01:04:13 +11:00
|
|
|
skipLoading: !isLoadingMore,
|
2016-09-13 03:20:55 +10:00
|
|
|
};
|
|
|
|
};
|
2016-09-22 06:07:18 +10:00
|
|
|
|
2018-11-11 01:04:13 +11:00
|
|
|
export function expandNotificationsSuccess(notifications, next, isLoadingMore) {
|
2016-09-22 06:07:18 +10:00
|
|
|
return {
|
2016-11-21 05:39:18 +11:00
|
|
|
type: NOTIFICATIONS_EXPAND_SUCCESS,
|
|
|
|
notifications,
|
2017-05-21 01:31:47 +10:00
|
|
|
next,
|
2018-11-11 01:04:13 +11:00
|
|
|
skipLoading: !isLoadingMore,
|
2016-09-22 06:07:18 +10:00
|
|
|
};
|
|
|
|
};
|
2016-10-19 02:09:45 +11:00
|
|
|
|
2018-11-11 01:04:13 +11:00
|
|
|
export function expandNotificationsFail(error, isLoadingMore) {
|
2016-10-19 02:09:45 +11:00
|
|
|
return {
|
2016-11-21 05:39:18 +11:00
|
|
|
type: NOTIFICATIONS_EXPAND_FAIL,
|
2017-05-21 01:31:47 +10:00
|
|
|
error,
|
2018-11-11 01:04:13 +11:00
|
|
|
skipLoading: !isLoadingMore,
|
2016-10-19 02:09:45 +11:00
|
|
|
};
|
|
|
|
};
|
2017-02-07 10:06:40 +11:00
|
|
|
|
|
|
|
export function clearNotifications() {
|
|
|
|
return (dispatch, getState) => {
|
|
|
|
dispatch({
|
2017-05-21 01:31:47 +10:00
|
|
|
type: NOTIFICATIONS_CLEAR,
|
2017-02-07 10:06:40 +11:00
|
|
|
});
|
|
|
|
|
|
|
|
api(getState).post('/api/v1/notifications/clear');
|
|
|
|
};
|
|
|
|
};
|
2017-02-21 10:10:49 +11:00
|
|
|
|
|
|
|
export function scrollTopNotifications(top) {
|
|
|
|
return {
|
|
|
|
type: NOTIFICATIONS_SCROLL_TOP,
|
2017-05-21 01:31:47 +10:00
|
|
|
top,
|
2017-02-21 10:10:49 +11:00
|
|
|
};
|
|
|
|
};
|
2018-12-16 15:56:41 +11:00
|
|
|
|
|
|
|
export function setFilter (filterType) {
|
|
|
|
return dispatch => {
|
|
|
|
dispatch({
|
|
|
|
type: NOTIFICATIONS_FILTER_SET,
|
|
|
|
path: ['notifications', 'quickFilter', 'active'],
|
|
|
|
value: filterType,
|
|
|
|
});
|
|
|
|
dispatch(expandNotifications());
|
2019-03-17 13:13:29 +11:00
|
|
|
dispatch(saveSettings());
|
2018-12-16 15:56:41 +11:00
|
|
|
};
|
|
|
|
};
|