bigbuffet-rw/app/soapbox/reducers/statuses.ts

227 lines
7.7 KiB
TypeScript
Raw Normal View History

2022-02-19 23:27:29 -08:00
import escapeTextContentForBrowser from 'escape-html';
2022-03-19 12:41:16 -07:00
import { Map as ImmutableMap, List as ImmutableList } from 'immutable';
import { AnyAction } from 'redux';
2022-02-19 23:27:29 -08:00
import emojify from 'soapbox/features/emoji/emoji';
import { normalizeStatus } from 'soapbox/normalizers';
2022-01-10 14:01:24 -08:00
import { simulateEmojiReact, simulateUnEmojiReact } from 'soapbox/utils/emoji_reacts';
import { stripCompatibilityFeatures, unescapeHTML } from 'soapbox/utils/html';
2022-03-10 17:55:14 -08:00
import { makeEmojiMap } from 'soapbox/utils/normalizers';
import {
EMOJI_REACT_REQUEST,
UNEMOJI_REACT_REQUEST,
} from '../actions/emoji_reacts';
import { STATUS_IMPORT, STATUSES_IMPORT } from '../actions/importer';
2020-03-27 13:59:38 -07:00
import {
REBLOG_REQUEST,
REBLOG_FAIL,
UNREBLOG_REQUEST,
UNREBLOG_FAIL,
2020-03-27 13:59:38 -07:00
FAVOURITE_REQUEST,
UNFAVOURITE_REQUEST,
2020-03-27 13:59:38 -07:00
FAVOURITE_FAIL,
} from '../actions/interactions';
import {
2021-11-12 10:18:11 -08:00
STATUS_CREATE_REQUEST,
STATUS_CREATE_FAIL,
2020-03-27 13:59:38 -07:00
STATUS_MUTE_SUCCESS,
STATUS_UNMUTE_SUCCESS,
STATUS_REVEAL,
STATUS_HIDE,
} from '../actions/statuses';
import { TIMELINE_DELETE } from '../actions/timelines';
2022-02-19 23:27:29 -08:00
const domParser = new DOMParser();
2022-03-19 12:41:16 -07:00
type StatusRecord = ReturnType<typeof normalizeStatus>;
type APIEntity = Record<string, any>;
type APIEntities = Array<APIEntity>;
type State = ImmutableMap<string, StatusRecord>;
const minifyStatus = (status: StatusRecord): StatusRecord => {
return status.mergeWith((o, n) => n || o, {
account: status.getIn(['account', 'id']),
reblog: status.getIn(['reblog', 'id']),
poll: status.getIn(['poll', 'id']),
2022-02-23 15:25:38 -08:00
quote: status.getIn(['quote', 'id']),
2022-02-19 23:27:29 -08:00
});
};
// Gets titles of poll options from status
const getPollOptionTitles = (status: StatusRecord): Array<string> => {
return status.poll?.options.map(({ title }: { title: string }) => title);
};
// Creates search text from the status
const buildSearchContent = (status: StatusRecord): string => {
const pollOptionTitles = getPollOptionTitles(status);
const fields = ImmutableList([
status.spoiler_text,
status.content,
]).concat(pollOptionTitles);
return unescapeHTML(fields.join('\n\n'));
};
2022-02-19 23:27:29 -08:00
// Only calculate these values when status first encountered
// Otherwise keep the ones already in the reducer
2022-03-19 15:29:46 -07:00
export const calculateStatus = (
2022-03-19 12:41:16 -07:00
status: StatusRecord,
oldStatus: StatusRecord,
expandSpoilers: boolean = false,
): StatusRecord => {
2022-02-19 23:27:29 -08:00
if (oldStatus) {
return status.merge({
2022-03-19 12:41:16 -07:00
search_index: oldStatus.search_index,
contentHtml: oldStatus.contentHtml,
spoilerHtml: oldStatus.spoilerHtml,
hidden: oldStatus.hidden,
2022-02-19 23:27:29 -08:00
});
} else {
2022-03-19 12:41:16 -07:00
const spoilerText = status.spoiler_text;
const searchContent = buildSearchContent(status);
2022-03-19 12:41:16 -07:00
const emojiMap = makeEmojiMap(status.emojis);
2022-02-19 23:27:29 -08:00
return status.merge({
search_index: domParser.parseFromString(searchContent, 'text/html').documentElement.textContent || undefined,
2022-03-19 12:41:16 -07:00
contentHtml: stripCompatibilityFeatures(emojify(status.content, emojiMap)),
2022-02-19 23:27:29 -08:00
spoilerHtml: emojify(escapeTextContentForBrowser(spoilerText), emojiMap),
2022-03-19 12:41:16 -07:00
hidden: expandSpoilers ? false : spoilerText.length > 0 || status.sensitive,
2022-02-19 23:27:29 -08:00
});
}
};
2022-02-23 15:25:38 -08:00
// Check whether a status is a quote by secondary characteristics
2022-03-19 12:41:16 -07:00
const isQuote = (status: StatusRecord) => {
return Boolean(status.getIn(['pleroma', 'quote_url']));
};
// Preserve quote if an existing status already has it
2022-03-19 12:41:16 -07:00
const fixQuote = (status: StatusRecord, oldStatus: StatusRecord): StatusRecord => {
if (oldStatus && !status.quote && isQuote(status)) {
2022-01-28 08:17:38 -08:00
return status
2022-03-19 12:41:16 -07:00
.set('quote', oldStatus.quote)
2022-01-28 08:17:38 -08:00
.updateIn(['pleroma', 'quote_visible'], visible => visible || oldStatus.getIn(['pleroma', 'quote_visible']));
} else {
return status;
}
};
2022-03-19 12:41:16 -07:00
const fixStatus = (state: State, status: APIEntity, expandSpoilers: boolean): StatusRecord => {
const oldStatus: StatusRecord = state.get(status.id);
2022-02-19 23:27:29 -08:00
2022-03-08 21:47:30 -08:00
return normalizeStatus(status).withMutations(status => {
fixQuote(status, oldStatus);
2022-02-20 09:44:10 -08:00
calculateStatus(status, oldStatus, expandSpoilers);
2022-02-19 23:27:29 -08:00
minifyStatus(status);
2022-01-07 14:57:58 -08:00
});
};
2022-03-19 12:41:16 -07:00
const importStatus = (state: State, status: APIEntity, expandSpoilers: boolean): State =>
state.set(status.id, fixStatus(state, status, expandSpoilers));
2020-03-27 13:59:38 -07:00
2022-03-19 12:41:16 -07:00
const importStatuses = (state: State, statuses: APIEntities, expandSpoilers: boolean): State =>
2022-02-20 09:44:10 -08:00
state.withMutations(mutable => statuses.forEach(status => importStatus(mutable, status, expandSpoilers)));
2020-03-27 13:59:38 -07:00
2022-03-19 12:41:16 -07:00
const deleteStatus = (state: State, id: string, references: Array<string>) => {
2020-03-27 13:59:38 -07:00
references.forEach(ref => {
state = deleteStatus(state, ref[0], []);
});
return state.delete(id);
};
2022-03-19 12:41:16 -07:00
const importPendingStatus = (state: State, { in_reply_to_id }: APIEntity) => {
2021-11-12 10:18:11 -08:00
if (in_reply_to_id) {
return state.updateIn([in_reply_to_id, 'replies_count'], 0, count => {
return typeof count === 'number' ? count + 1 : 0;
});
2021-11-12 10:18:11 -08:00
} else {
return state;
}
};
2022-03-19 12:41:16 -07:00
const deletePendingStatus = (state: State, { in_reply_to_id }: APIEntity) => {
2021-11-12 10:18:11 -08:00
if (in_reply_to_id) {
return state.updateIn([in_reply_to_id, 'replies_count'], 0, count => {
return typeof count === 'number' ? Math.max(0, count - 1) : 0;
});
2021-11-12 10:18:11 -08:00
} else {
return state;
}
};
2022-03-19 12:41:16 -07:00
const initialState: State = ImmutableMap();
2020-03-27 13:59:38 -07:00
2022-03-19 12:41:16 -07:00
export default function statuses(state = initialState, action: AnyAction): State {
2020-03-27 13:59:38 -07:00
switch(action.type) {
case STATUS_IMPORT:
2022-02-20 09:44:10 -08:00
return importStatus(state, action.status, action.expandSpoilers);
2020-03-27 13:59:38 -07:00
case STATUSES_IMPORT:
2022-02-20 09:44:10 -08:00
return importStatuses(state, action.statuses, action.expandSpoilers);
2021-11-12 10:18:11 -08:00
case STATUS_CREATE_REQUEST:
return importPendingStatus(state, action.params);
case STATUS_CREATE_FAIL:
return deletePendingStatus(state, action.params);
2020-03-27 13:59:38 -07:00
case FAVOURITE_REQUEST:
return state.update(action.status.get('id'), status =>
status
.set('favourited', true)
.update('favourites_count', count => count + 1));
case UNFAVOURITE_REQUEST:
return state.update(action.status.get('id'), status =>
status
.set('favourited', false)
.update('favourites_count', count => Math.max(0, count - 1)));
2020-05-23 18:29:25 -07:00
case EMOJI_REACT_REQUEST:
return state
.updateIn(
[action.status.get('id'), 'pleroma', 'emoji_reactions'],
emojiReacts => simulateEmojiReact(emojiReacts, action.emoji),
);
case UNEMOJI_REACT_REQUEST:
return state
.updateIn(
[action.status.get('id'), 'pleroma', 'emoji_reactions'],
emojiReacts => simulateUnEmojiReact(emojiReacts, action.emoji),
);
2020-03-27 13:59:38 -07:00
case FAVOURITE_FAIL:
return state.get(action.status.get('id')) === undefined ? state : state.setIn([action.status.get('id'), 'favourited'], false);
case REBLOG_REQUEST:
return state.setIn([action.status.get('id'), 'reblogged'], true);
case REBLOG_FAIL:
return state.get(action.status.get('id')) === undefined ? state : state.setIn([action.status.get('id'), 'reblogged'], false);
case UNREBLOG_REQUEST:
return state.setIn([action.status.get('id'), 'reblogged'], false);
case UNREBLOG_FAIL:
return state.get(action.status.get('id')) === undefined ? state : state.setIn([action.status.get('id'), 'reblogged'], true);
2020-03-27 13:59:38 -07:00
case STATUS_MUTE_SUCCESS:
return state.setIn([action.id, 'muted'], true);
case STATUS_UNMUTE_SUCCESS:
return state.setIn([action.id, 'muted'], false);
case STATUS_REVEAL:
return state.withMutations(map => {
2022-03-19 12:41:16 -07:00
action.ids.forEach((id: string) => {
2020-03-27 13:59:38 -07:00
if (!(state.get(id) === undefined)) {
map.setIn([id, 'hidden'], false);
}
});
});
case STATUS_HIDE:
return state.withMutations(map => {
2022-03-19 12:41:16 -07:00
action.ids.forEach((id: string) => {
2020-03-27 13:59:38 -07:00
if (!(state.get(id) === undefined)) {
map.setIn([id, 'hidden'], true);
}
});
});
case TIMELINE_DELETE:
return deleteStatus(state, action.id, action.references);
default:
return state;
}
2021-08-03 12:22:51 -07:00
}