Refine unescapeHTML (#2977)

This commit is contained in:
Yamagishi Kazutoshi 2017-05-11 09:22:40 +09:00 committed by Eugen Rochko
parent e6fbf0334f
commit 7ff84cb07e
1 changed files with 5 additions and 2 deletions

View File

@ -1,7 +1,6 @@
import api, { getLinks } from '../api'
import Immutable from 'immutable';
import IntlMessageFormat from 'intl-messageformat';
import { unescape } from 'lodash';
import { fetchRelationships } from './accounts';
export const NOTIFICATIONS_UPDATE = 'NOTIFICATIONS_UPDATE';
@ -25,7 +24,11 @@ const fetchRelatedRelationships = (dispatch, notifications) => {
}
};
const unescapeHTML = (html) => unescape(html).replace(/<\/?\w+(?:\s[^>]*)?>/g, '');
const unescapeHTML = (html) => {
const wrapper = document.createElement('div');
wrapper.innerHTML = html;
return wrapper.textContent;
}
export function updateNotifications(notification, intlMessages, intlLocale) {
return (dispatch, getState) => {