2017-05-20 15:31:47 +00:00
|
|
|
import api, { getLinks } from '../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';
|
2018-03-24 12:06:27 +00:00
|
|
|
import {
|
|
|
|
importFetchedAccount,
|
|
|
|
importFetchedAccounts,
|
|
|
|
importFetchedStatus,
|
|
|
|
importFetchedStatuses,
|
|
|
|
} from './importer';
|
2017-05-12 12:46:21 +00:00
|
|
|
import { defineMessages } from 'react-intl';
|
2016-11-20 18:39:18 +00:00
|
|
|
|
2018-04-12 23:20:04 +00:00
|
|
|
export const NOTIFICATIONS_UPDATE = 'NOTIFICATIONS_UPDATE';
|
|
|
|
export const NOTIFICATIONS_UPDATE_NOOP = 'NOTIFICATIONS_UPDATE_NOOP';
|
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';
|
|
|
|
|
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
|
|
|
|
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);
|
|
|
|
|
2018-03-12 02:20:56 +00:00
|
|
|
if (accountIds.length > 0) {
|
2016-11-20 18:39:18 +00:00
|
|
|
dispatch(fetchRelationships(accountIds));
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-05-11 00:22:40 +00:00
|
|
|
const unescapeHTML = (html) => {
|
|
|
|
const wrapper = document.createElement('div');
|
2018-01-02 18:35:24 +00:00
|
|
|
html = html.replace(/<br \/>|<br>|\n/g, ' ');
|
2017-05-11 00:22:40 +00:00
|
|
|
wrapper.innerHTML = html;
|
|
|
|
return wrapper.textContent;
|
2017-05-20 15:31:47 +00:00
|
|
|
};
|
2017-05-09 12:50:43 +00:00
|
|
|
|
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) => {
|
2018-04-12 23:20:04 +00: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);
|
2017-01-17 19:09:03 +00:00
|
|
|
|
2018-04-12 23:20:04 +00:00
|
|
|
if (showInColumn) {
|
|
|
|
dispatch(importFetchedAccount(notification.account));
|
|
|
|
|
|
|
|
if (notification.status) {
|
|
|
|
dispatch(importFetchedStatus(notification.status));
|
|
|
|
}
|
2018-03-24 12:06:27 +00:00
|
|
|
|
2018-04-12 23:20:04 +00:00
|
|
|
dispatch({
|
|
|
|
type: NOTIFICATIONS_UPDATE,
|
|
|
|
notification,
|
|
|
|
meta: playSound ? { sound: 'boop' } : undefined,
|
|
|
|
});
|
2016-11-20 18:39:18 +00:00
|
|
|
|
2018-04-12 23:20:04 +00:00
|
|
|
fetchRelatedRelationships(dispatch, [notification]);
|
|
|
|
} else if (playSound) {
|
|
|
|
dispatch({
|
|
|
|
type: NOTIFICATIONS_UPDATE_NOOP,
|
|
|
|
meta: { sound: 'boop' },
|
|
|
|
});
|
|
|
|
}
|
2016-11-21 09:24:50 +00:00
|
|
|
|
|
|
|
// Desktop notifications
|
2017-01-17 19:09:03 +00:00
|
|
|
if (typeof window.Notification !== 'undefined' && showAlert) {
|
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 });
|
2018-04-12 23:20:04 +00:00
|
|
|
|
2017-05-11 11:34:05 +00:00
|
|
|
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();
|
|
|
|
|
2018-03-24 21:07:23 +00:00
|
|
|
export function expandNotifications({ maxId } = {}) {
|
2016-11-20 18:39:18 +00:00
|
|
|
return (dispatch, getState) => {
|
2018-03-24 21:07:23 +00:00
|
|
|
if (getState().getIn(['notifications', 'isLoading'])) {
|
2016-11-20 18:39:18 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-05-04 21:41:34 +00:00
|
|
|
const params = {
|
2018-03-24 21:07:23 +00:00
|
|
|
max_id: maxId,
|
2017-06-11 15:07:35 +00:00
|
|
|
exclude_types: excludeTypesFromSettings(getState()),
|
2017-05-04 21:41:34 +00:00
|
|
|
};
|
2017-04-10 21:45:29 +00:00
|
|
|
|
2017-06-11 15:07:35 +00:00
|
|
|
dispatch(expandNotificationsRequest());
|
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-03-24 12:06:27 +00:00
|
|
|
|
|
|
|
dispatch(importFetchedAccounts(response.data.map(item => item.account)));
|
|
|
|
dispatch(importFetchedStatuses(response.data.map(item => item.status).filter(status => !!status)));
|
|
|
|
|
2016-11-20 18:39:18 +00:00
|
|
|
dispatch(expandNotificationsSuccess(response.data, next ? next.uri : null));
|
|
|
|
fetchRelatedRelationships(dispatch, response.data);
|
|
|
|
}).catch(error => {
|
|
|
|
dispatch(expandNotificationsFail(error));
|
|
|
|
});
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function expandNotificationsRequest() {
|
2016-09-12 17:20:55 +00:00
|
|
|
return {
|
2017-05-20 15:31:47 +00:00
|
|
|
type: NOTIFICATIONS_EXPAND_REQUEST,
|
2016-09-12 17:20:55 +00:00
|
|
|
};
|
|
|
|
};
|
2016-09-21 20:07:18 +00:00
|
|
|
|
2016-11-20 18:39:18 +00:00
|
|
|
export function expandNotificationsSuccess(notifications, next) {
|
2016-09-21 20:07:18 +00:00
|
|
|
return {
|
2016-11-20 18:39:18 +00:00
|
|
|
type: NOTIFICATIONS_EXPAND_SUCCESS,
|
|
|
|
notifications,
|
2017-05-20 15:31:47 +00:00
|
|
|
next,
|
2016-09-21 20:07:18 +00:00
|
|
|
};
|
|
|
|
};
|
2016-10-18 15:09:45 +00:00
|
|
|
|
2016-11-20 18:39:18 +00:00
|
|
|
export function expandNotificationsFail(error) {
|
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,
|
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
|
|
|
};
|
|
|
|
};
|