|
|
@ -8,6 +8,7 @@ import {
|
|
|
|
importFetchedStatuses,
|
|
|
|
importFetchedStatuses,
|
|
|
|
} from './importer';
|
|
|
|
} from './importer';
|
|
|
|
import { defineMessages } from 'react-intl';
|
|
|
|
import { defineMessages } from 'react-intl';
|
|
|
|
|
|
|
|
import { unescapeHTML } from '../utils/html';
|
|
|
|
|
|
|
|
|
|
|
|
export const NOTIFICATIONS_UPDATE = 'NOTIFICATIONS_UPDATE';
|
|
|
|
export const NOTIFICATIONS_UPDATE = 'NOTIFICATIONS_UPDATE';
|
|
|
|
export const NOTIFICATIONS_UPDATE_NOOP = 'NOTIFICATIONS_UPDATE_NOOP';
|
|
|
|
export const NOTIFICATIONS_UPDATE_NOOP = 'NOTIFICATIONS_UPDATE_NOOP';
|
|
|
@ -31,13 +32,6 @@ const fetchRelatedRelationships = (dispatch, notifications) => {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const unescapeHTML = (html) => {
|
|
|
|
|
|
|
|
const wrapper = document.createElement('div');
|
|
|
|
|
|
|
|
html = html.replace(/<br \/>|<br>|\n/g, ' ');
|
|
|
|
|
|
|
|
wrapper.innerHTML = html;
|
|
|
|
|
|
|
|
return wrapper.textContent;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export function updateNotifications(notification, intlMessages, intlLocale) {
|
|
|
|
export function updateNotifications(notification, intlMessages, intlLocale) {
|
|
|
|
return (dispatch, getState) => {
|
|
|
|
return (dispatch, getState) => {
|
|
|
|
const showInColumn = getState().getIn(['settings', 'notifications', 'shows', notification.type], true);
|
|
|
|
const showInColumn = getState().getIn(['settings', 'notifications', 'shows', notification.type], true);
|
|
|
|