2016-11-20 18:39:18 +00:00
|
|
|
import api, { getLinks } from '../api'
|
|
|
|
import Immutable from 'immutable';
|
2016-11-21 09:24:50 +00:00
|
|
|
import IntlMessageFormat from 'intl-messageformat';
|
2016-09-12 17:20:55 +00:00
|
|
|
|
2016-11-20 18:39:18 +00:00
|
|
|
import { fetchRelationships } from './accounts';
|
|
|
|
|
|
|
|
export const NOTIFICATIONS_UPDATE = 'NOTIFICATIONS_UPDATE';
|
|
|
|
|
|
|
|
export const NOTIFICATIONS_REFRESH_REQUEST = 'NOTIFICATIONS_REFRESH_REQUEST';
|
|
|
|
export const NOTIFICATIONS_REFRESH_SUCCESS = 'NOTIFICATIONS_REFRESH_SUCCESS';
|
|
|
|
export const NOTIFICATIONS_REFRESH_FAIL = 'NOTIFICATIONS_REFRESH_FAIL';
|
|
|
|
|
|
|
|
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
|
|
|
|
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);
|
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,
|
2017-01-17 19:28:32 +00:00
|
|
|
meta: playSound ? { sound: 'boop' } : undefined
|
2016-11-20 18:39:18 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
fetchRelatedRelationships(dispatch, [notification]);
|
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-01-26 17:48:56 +00:00
|
|
|
const body = (notification.status && notification.status.spoiler_text.length > 0) ? notification.status.spoiler_text : $('<p>').html(notification.status ? notification.status.content : '').text();
|
2016-11-21 09:24:50 +00:00
|
|
|
|
2017-01-05 21:26:45 +00:00
|
|
|
new Notification(title, { body, icon: notification.account.avatar, tag: notification.id });
|
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();
|
|
|
|
|
2016-11-20 18:39:18 +00:00
|
|
|
export function refreshNotifications() {
|
|
|
|
return (dispatch, getState) => {
|
|
|
|
dispatch(refreshNotificationsRequest());
|
|
|
|
|
|
|
|
const params = {};
|
|
|
|
const ids = getState().getIn(['notifications', 'items']);
|
|
|
|
|
|
|
|
if (ids.size > 0) {
|
|
|
|
params.since_id = ids.first().get('id');
|
|
|
|
}
|
|
|
|
|
2017-04-11 20:53:58 +00:00
|
|
|
params.exclude_types = excludeTypesFromSettings(getState());
|
2017-04-10 21:45:29 +00:00
|
|
|
|
2016-11-20 18:39:18 +00:00
|
|
|
api(getState).get('/api/v1/notifications', { params }).then(response => {
|
|
|
|
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
|
|
|
|
|
|
|
dispatch(refreshNotificationsSuccess(response.data, next ? next.uri : null));
|
|
|
|
fetchRelatedRelationships(dispatch, response.data);
|
|
|
|
}).catch(error => {
|
|
|
|
dispatch(refreshNotificationsFail(error));
|
|
|
|
});
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function refreshNotificationsRequest() {
|
|
|
|
return {
|
|
|
|
type: NOTIFICATIONS_REFRESH_REQUEST
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function refreshNotificationsSuccess(notifications, next) {
|
|
|
|
return {
|
|
|
|
type: NOTIFICATIONS_REFRESH_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),
|
2016-11-20 18:39:18 +00:00
|
|
|
next
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function refreshNotificationsFail(error) {
|
|
|
|
return {
|
|
|
|
type: NOTIFICATIONS_REFRESH_FAIL,
|
|
|
|
error
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function expandNotifications() {
|
|
|
|
return (dispatch, getState) => {
|
|
|
|
const url = getState().getIn(['notifications', 'next'], null);
|
|
|
|
|
2017-01-26 03:30:40 +00:00
|
|
|
if (url === null || getState().getIn(['notifications', 'isLoading'])) {
|
2016-11-20 18:39:18 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
dispatch(expandNotificationsRequest());
|
|
|
|
|
2017-04-10 21:45:29 +00:00
|
|
|
const params = {};
|
|
|
|
|
2017-04-11 20:53:58 +00:00
|
|
|
params.exclude_types = excludeTypesFromSettings(getState());
|
2017-04-10 21:45:29 +00:00
|
|
|
|
|
|
|
api(getState).get(url, params).then(response => {
|
2016-11-20 18:39:18 +00:00
|
|
|
const next = getLinks(response).refs.find(link => link.rel === 'next');
|
|
|
|
|
|
|
|
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 {
|
2016-11-20 18:39:18 +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,
|
|
|
|
accounts: notifications.map(item => item.account),
|
2016-12-22 10:23:30 +00:00
|
|
|
statuses: notifications.map(item => item.status).filter(status => !!status),
|
2016-11-20 18:39:18 +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,
|
|
|
|
error
|
2016-10-18 15:09:45 +00:00
|
|
|
};
|
|
|
|
};
|
2017-02-06 23:06:40 +00:00
|
|
|
|
|
|
|
export function clearNotifications() {
|
|
|
|
return (dispatch, getState) => {
|
|
|
|
dispatch({
|
|
|
|
type: NOTIFICATIONS_CLEAR
|
|
|
|
});
|
|
|
|
|
|
|
|
api(getState).post('/api/v1/notifications/clear');
|
|
|
|
};
|
|
|
|
};
|
2017-02-20 23:10:49 +00:00
|
|
|
|
|
|
|
export function scrollTopNotifications(top) {
|
|
|
|
return {
|
|
|
|
type: NOTIFICATIONS_SCROLL_TOP,
|
|
|
|
top
|
|
|
|
};
|
|
|
|
};
|