2018-03-24 12:06:27 +00:00
|
|
|
import escapeTextContentForBrowser from 'escape-html';
|
|
|
|
import emojify from '../../features/emoji/emoji';
|
2018-05-07 07:30:38 +00:00
|
|
|
import { unescapeHTML } from '../../utils/html';
|
2018-09-24 03:44:01 +00:00
|
|
|
import { expandSpoilers } from '../../initial_state';
|
2018-03-24 12:06:27 +00:00
|
|
|
|
|
|
|
const domParser = new DOMParser();
|
|
|
|
|
2018-05-06 09:48:51 +00:00
|
|
|
const makeEmojiMap = record => record.emojis.reduce((obj, emoji) => {
|
|
|
|
obj[`:${emoji.shortcode}:`] = emoji;
|
|
|
|
return obj;
|
|
|
|
}, {});
|
|
|
|
|
2019-11-04 12:01:50 +00:00
|
|
|
export function searchTextFromRawStatus (status) {
|
|
|
|
const spoilerText = status.spoiler_text || '';
|
2020-06-08 22:11:42 +00:00
|
|
|
const searchContent = ([spoilerText, status.content].concat((status.poll && status.poll.options) ? status.poll.options.map(option => option.title) : [])).concat(status.media_attachments.map(att => att.description)).join('\n\n').replace(/<br\s*\/?>/g, '\n').replace(/<\/p><p>/g, '\n\n');
|
2019-11-04 12:01:50 +00:00
|
|
|
return domParser.parseFromString(searchContent, 'text/html').documentElement.textContent;
|
|
|
|
}
|
|
|
|
|
2018-03-24 12:06:27 +00:00
|
|
|
export function normalizeAccount(account) {
|
|
|
|
account = { ...account };
|
|
|
|
|
2018-05-06 09:48:51 +00:00
|
|
|
const emojiMap = makeEmojiMap(account);
|
2018-10-30 16:06:12 +00:00
|
|
|
const displayName = account.display_name.trim().length === 0 ? account.username : account.display_name;
|
2018-05-06 09:48:51 +00:00
|
|
|
|
|
|
|
account.display_name_html = emojify(escapeTextContentForBrowser(displayName), emojiMap);
|
|
|
|
account.note_emojified = emojify(account.note, emojiMap);
|
2021-04-19 12:45:15 +00:00
|
|
|
account.note_plain = unescapeHTML(account.note);
|
2018-03-24 12:06:27 +00:00
|
|
|
|
2018-04-14 10:41:08 +00:00
|
|
|
if (account.fields) {
|
|
|
|
account.fields = account.fields.map(pair => ({
|
|
|
|
...pair,
|
2019-07-21 01:40:27 +00:00
|
|
|
name_emojified: emojify(escapeTextContentForBrowser(pair.name), emojiMap),
|
2018-05-06 09:48:51 +00:00
|
|
|
value_emojified: emojify(pair.value, emojiMap),
|
2018-05-07 07:30:38 +00:00
|
|
|
value_plain: unescapeHTML(pair.value),
|
2018-04-14 10:41:08 +00:00
|
|
|
}));
|
|
|
|
}
|
|
|
|
|
2018-03-26 10:48:01 +00:00
|
|
|
if (account.moved) {
|
|
|
|
account.moved = account.moved.id;
|
|
|
|
}
|
|
|
|
|
2018-03-24 12:06:27 +00:00
|
|
|
return account;
|
|
|
|
}
|
|
|
|
|
|
|
|
export function normalizeStatus(status, normalOldStatus) {
|
|
|
|
const normalStatus = { ...status };
|
|
|
|
normalStatus.account = status.account.id;
|
|
|
|
|
|
|
|
if (status.reblog && status.reblog.id) {
|
|
|
|
normalStatus.reblog = status.reblog.id;
|
|
|
|
}
|
|
|
|
|
2019-03-03 21:18:23 +00:00
|
|
|
if (status.poll && status.poll.id) {
|
|
|
|
normalStatus.poll = status.poll.id;
|
|
|
|
}
|
|
|
|
|
2022-01-19 21:37:27 +00:00
|
|
|
// Only calculate these values when status first encountered and
|
|
|
|
// when the underlying values change. Otherwise keep the ones
|
|
|
|
// already in the reducer
|
|
|
|
if (normalOldStatus && normalOldStatus.get('content') === normalStatus.content && normalOldStatus.get('spoiler_text') === normalStatus.spoiler_text) {
|
2018-03-24 12:06:27 +00:00
|
|
|
normalStatus.search_index = normalOldStatus.get('search_index');
|
|
|
|
normalStatus.contentHtml = normalOldStatus.get('contentHtml');
|
|
|
|
normalStatus.spoilerHtml = normalOldStatus.get('spoilerHtml');
|
2021-05-11 20:21:47 +00:00
|
|
|
normalStatus.spoiler_text = normalOldStatus.get('spoiler_text');
|
2018-03-24 12:06:27 +00:00
|
|
|
normalStatus.hidden = normalOldStatus.get('hidden');
|
|
|
|
} else {
|
2021-05-05 21:41:02 +00:00
|
|
|
// If the status has a CW but no contents, treat the CW as if it were the
|
|
|
|
// status' contents, to avoid having a CW toggle with seemingly no effect.
|
|
|
|
if (normalStatus.spoiler_text && !normalStatus.content) {
|
|
|
|
normalStatus.content = normalStatus.spoiler_text;
|
|
|
|
normalStatus.spoiler_text = '';
|
|
|
|
}
|
|
|
|
|
2018-06-14 06:03:51 +00:00
|
|
|
const spoilerText = normalStatus.spoiler_text || '';
|
2021-12-28 22:25:50 +00:00
|
|
|
const searchContent = ([spoilerText, status.content].concat((status.poll && status.poll.options) ? status.poll.options.map(option => option.title) : [])).concat(status.media_attachments.map(att => att.description)).join('\n\n').replace(/<br\s*\/?>/g, '\n').replace(/<\/p><p>/g, '\n\n');
|
2018-06-14 06:03:51 +00:00
|
|
|
const emojiMap = makeEmojiMap(normalStatus);
|
2018-03-24 12:06:27 +00:00
|
|
|
|
|
|
|
normalStatus.search_index = domParser.parseFromString(searchContent, 'text/html').documentElement.textContent;
|
|
|
|
normalStatus.contentHtml = emojify(normalStatus.content, emojiMap);
|
2018-06-14 06:03:51 +00:00
|
|
|
normalStatus.spoilerHtml = emojify(escapeTextContentForBrowser(spoilerText), emojiMap);
|
2018-09-24 03:44:01 +00:00
|
|
|
normalStatus.hidden = expandSpoilers ? false : spoilerText.length > 0 || normalStatus.sensitive;
|
2018-03-24 12:06:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return normalStatus;
|
|
|
|
}
|
2019-03-06 02:57:46 +00:00
|
|
|
|
|
|
|
export function normalizePoll(poll) {
|
|
|
|
const normalPoll = { ...poll };
|
2019-03-20 16:29:12 +00:00
|
|
|
const emojiMap = makeEmojiMap(normalPoll);
|
|
|
|
|
2019-09-22 12:15:18 +00:00
|
|
|
normalPoll.options = poll.options.map((option, index) => ({
|
2019-03-06 02:57:46 +00:00
|
|
|
...option,
|
2019-09-22 12:15:18 +00:00
|
|
|
voted: poll.own_votes && poll.own_votes.includes(index),
|
2019-03-20 16:29:12 +00:00
|
|
|
title_emojified: emojify(escapeTextContentForBrowser(option.title), emojiMap),
|
2019-03-06 02:57:46 +00:00
|
|
|
}));
|
|
|
|
|
|
|
|
return normalPoll;
|
|
|
|
}
|
2020-01-23 21:00:13 +00:00
|
|
|
|
|
|
|
export function normalizeAnnouncement(announcement) {
|
|
|
|
const normalAnnouncement = { ...announcement };
|
|
|
|
const emojiMap = makeEmojiMap(normalAnnouncement);
|
|
|
|
|
|
|
|
normalAnnouncement.contentHtml = emojify(normalAnnouncement.content, emojiMap);
|
|
|
|
|
|
|
|
return normalAnnouncement;
|
|
|
|
}
|