2019-03-05 20:15:43 +01:00
|
|
|
import escapeTextContentForBrowser from 'escape-html';
|
|
|
|
import emojify from 'flavours/glitch/util/emoji';
|
|
|
|
import { unescapeHTML } from 'flavours/glitch/util/html';
|
|
|
|
|
|
|
|
const domParser = new DOMParser();
|
|
|
|
|
|
|
|
const makeEmojiMap = record => record.emojis.reduce((obj, emoji) => {
|
|
|
|
obj[`:${emoji.shortcode}:`] = emoji;
|
|
|
|
return obj;
|
|
|
|
}, {});
|
|
|
|
|
2019-10-15 22:55:27 +02:00
|
|
|
export function searchTextFromRawStatus (status) {
|
|
|
|
const spoilerText = status.spoiler_text || '';
|
2020-06-09 00:11:42 +02: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-10-15 22:55:27 +02:00
|
|
|
return domParser.parseFromString(searchContent, 'text/html').documentElement.textContent;
|
|
|
|
}
|
|
|
|
|
2019-03-05 20:15:43 +01:00
|
|
|
export function normalizeAccount(account) {
|
|
|
|
account = { ...account };
|
|
|
|
|
|
|
|
const emojiMap = makeEmojiMap(account);
|
|
|
|
const displayName = account.display_name.trim().length === 0 ? account.username : account.display_name;
|
|
|
|
|
|
|
|
account.display_name_html = emojify(escapeTextContentForBrowser(displayName), emojiMap);
|
|
|
|
account.note_emojified = emojify(account.note, emojiMap);
|
2021-04-19 14:45:15 +02:00
|
|
|
account.note_plain = unescapeHTML(account.note);
|
2019-03-05 20:15:43 +01:00
|
|
|
|
|
|
|
if (account.fields) {
|
|
|
|
account.fields = account.fields.map(pair => ({
|
|
|
|
...pair,
|
2019-07-23 10:33:25 +02:00
|
|
|
name_emojified: emojify(escapeTextContentForBrowser(pair.name), emojiMap),
|
2019-03-05 20:15:43 +01:00
|
|
|
value_emojified: emojify(pair.value, emojiMap),
|
|
|
|
value_plain: unescapeHTML(pair.value),
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (account.moved) {
|
|
|
|
account.moved = account.moved.id;
|
|
|
|
}
|
|
|
|
|
|
|
|
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 22:18:23 +01:00
|
|
|
if (status.poll && status.poll.id) {
|
|
|
|
normalStatus.poll = status.poll.id;
|
|
|
|
}
|
|
|
|
|
2022-01-19 22:37:27 +01: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) {
|
2019-03-05 20:15:43 +01:00
|
|
|
normalStatus.search_index = normalOldStatus.get('search_index');
|
|
|
|
normalStatus.contentHtml = normalOldStatus.get('contentHtml');
|
|
|
|
normalStatus.spoilerHtml = normalOldStatus.get('spoilerHtml');
|
|
|
|
} else {
|
|
|
|
const spoilerText = normalStatus.spoiler_text || '';
|
2021-12-28 23:25:50 +01: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-03-05 20:15:43 +01:00
|
|
|
const emojiMap = makeEmojiMap(normalStatus);
|
|
|
|
|
|
|
|
normalStatus.search_index = domParser.parseFromString(searchContent, 'text/html').documentElement.textContent;
|
|
|
|
normalStatus.contentHtml = emojify(normalStatus.content, emojiMap);
|
|
|
|
normalStatus.spoilerHtml = emojify(escapeTextContentForBrowser(spoilerText), emojiMap);
|
|
|
|
}
|
|
|
|
|
|
|
|
return normalStatus;
|
|
|
|
}
|
2019-03-06 03:57:46 +01:00
|
|
|
|
|
|
|
export function normalizePoll(poll) {
|
|
|
|
const normalPoll = { ...poll };
|
2019-03-20 17:29:12 +01:00
|
|
|
const emojiMap = makeEmojiMap(normalPoll);
|
|
|
|
|
2019-09-22 14:15:18 +02:00
|
|
|
normalPoll.options = poll.options.map((option, index) => ({
|
2019-03-06 03:57:46 +01:00
|
|
|
...option,
|
2019-09-22 14:15:18 +02:00
|
|
|
voted: poll.own_votes && poll.own_votes.includes(index),
|
2019-03-20 17:29:12 +01:00
|
|
|
title_emojified: emojify(escapeTextContentForBrowser(option.title), emojiMap),
|
2019-03-06 03:57:46 +01:00
|
|
|
}));
|
|
|
|
|
|
|
|
return normalPoll;
|
|
|
|
}
|
2020-01-23 22:00:13 +01:00
|
|
|
|
|
|
|
export function normalizeAnnouncement(announcement) {
|
|
|
|
const normalAnnouncement = { ...announcement };
|
|
|
|
const emojiMap = makeEmojiMap(normalAnnouncement);
|
|
|
|
|
|
|
|
normalAnnouncement.contentHtml = emojify(normalAnnouncement.content, emojiMap);
|
|
|
|
|
|
|
|
return normalAnnouncement;
|
|
|
|
}
|