2019-07-12 16:53:40 +00:00
|
|
|
import escapeTextContentForBrowser from 'escape-html';
|
2017-02-26 00:23:44 +00:00
|
|
|
import { createSelector } from 'reselect';
|
2022-06-30 08:39:29 +00:00
|
|
|
import { List as ImmutableList } from 'immutable';
|
2022-10-11 08:41:15 +00:00
|
|
|
import { toServerSideType } from 'flavours/glitch/utils/filters';
|
2022-10-11 08:17:04 +00:00
|
|
|
import { me } from 'flavours/glitch/initial_state';
|
2016-10-07 22:01:22 +00:00
|
|
|
|
2016-10-30 14:06:43 +00:00
|
|
|
const getAccountBase = (state, id) => state.getIn(['accounts', id], null);
|
2017-05-03 00:04:16 +00:00
|
|
|
const getAccountCounters = (state, id) => state.getIn(['accounts_counters', id], null);
|
2017-04-02 20:02:38 +00:00
|
|
|
const getAccountRelationship = (state, id) => state.getIn(['relationships', id], null);
|
2018-03-29 12:43:20 +00:00
|
|
|
const getAccountMoved = (state, id) => state.getIn(['accounts', state.getIn(['accounts', id, 'moved'])]);
|
2016-10-07 22:01:22 +00:00
|
|
|
|
2016-10-27 19:59:56 +00:00
|
|
|
export const makeGetAccount = () => {
|
2018-03-29 12:43:20 +00:00
|
|
|
return createSelector([getAccountBase, getAccountCounters, getAccountRelationship, getAccountMoved], (base, counters, relationship, moved) => {
|
2016-10-27 19:59:56 +00:00
|
|
|
if (base === null) {
|
|
|
|
return null;
|
|
|
|
}
|
2016-10-07 22:01:22 +00:00
|
|
|
|
2018-03-29 12:43:20 +00:00
|
|
|
return base.merge(counters).withMutations(map => {
|
|
|
|
map.set('relationship', relationship);
|
|
|
|
map.set('moved', moved);
|
|
|
|
});
|
2016-10-27 19:59:56 +00:00
|
|
|
});
|
|
|
|
};
|
2016-10-07 22:01:22 +00:00
|
|
|
|
2022-06-28 07:42:13 +00:00
|
|
|
const getFilters = (state, { contextType }) => {
|
|
|
|
if (!contextType) return null;
|
2019-06-29 22:12:38 +00:00
|
|
|
|
2022-06-28 07:42:13 +00:00
|
|
|
const serverSideType = toServerSideType(contextType);
|
|
|
|
const now = new Date();
|
2019-06-29 22:12:38 +00:00
|
|
|
|
2022-06-28 07:42:13 +00:00
|
|
|
return state.get('filters').filter((filter) => filter.get('context').includes(serverSideType) && (filter.get('expires_at') === null || filter.get('expires_at') > now));
|
2019-06-29 22:12:38 +00:00
|
|
|
};
|
|
|
|
|
2016-10-24 15:11:02 +00:00
|
|
|
export const makeGetStatus = () => {
|
2017-02-22 15:30:09 +00:00
|
|
|
return createSelector(
|
|
|
|
[
|
2018-07-08 18:04:53 +00:00
|
|
|
(state, { id }) => state.getIn(['statuses', id]),
|
|
|
|
(state, { id }) => state.getIn(['statuses', state.getIn(['statuses', id, 'reblog'])]),
|
|
|
|
(state, { id }) => state.getIn(['accounts', state.getIn(['statuses', id, 'account'])]),
|
|
|
|
(state, { id }) => state.getIn(['accounts', state.getIn(['statuses', state.getIn(['statuses', id, 'reblog']), 'account'])]),
|
2022-06-28 07:42:13 +00:00
|
|
|
getFilters,
|
2017-02-22 15:30:09 +00:00
|
|
|
],
|
|
|
|
|
2022-06-28 07:42:13 +00:00
|
|
|
(statusBase, statusReblog, accountBase, accountReblog, filters) => {
|
2022-10-20 12:35:29 +00:00
|
|
|
if (!statusBase || statusBase.get('isLoading')) {
|
2017-02-22 15:30:09 +00:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2018-07-09 21:44:01 +00:00
|
|
|
let filtered = false;
|
2022-06-28 07:42:13 +00:00
|
|
|
if ((accountReblog || accountBase).get('id') !== me && filters) {
|
|
|
|
let filterResults = statusReblog?.get('filtered') || statusBase.get('filtered') || ImmutableList();
|
|
|
|
if (filterResults.some((result) => filters.getIn([result.get('filter'), 'filter_action']) === 'hide')) {
|
|
|
|
return null;
|
|
|
|
}
|
2022-08-25 02:27:47 +00:00
|
|
|
filterResults = filterResults.filter(result => filters.has(result.get('filter')));
|
2022-06-28 07:42:13 +00:00
|
|
|
if (!filterResults.isEmpty()) {
|
|
|
|
filtered = filterResults.map(result => filters.getIn([result.get('filter'), 'title']));
|
|
|
|
}
|
|
|
|
}
|
2018-07-09 21:44:01 +00:00
|
|
|
|
2017-02-22 15:30:09 +00:00
|
|
|
if (statusReblog) {
|
|
|
|
statusReblog = statusReblog.set('account', accountReblog);
|
2022-06-30 07:51:55 +00:00
|
|
|
statusReblog = statusReblog.set('matched_filters', filtered);
|
2017-02-22 15:30:09 +00:00
|
|
|
} else {
|
|
|
|
statusReblog = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
return statusBase.withMutations(map => {
|
|
|
|
map.set('reblog', statusReblog);
|
|
|
|
map.set('account', accountBase);
|
2022-06-30 07:51:55 +00:00
|
|
|
map.set('matched_filters', filtered);
|
2017-02-22 15:30:09 +00:00
|
|
|
});
|
2020-03-08 15:02:36 +00:00
|
|
|
},
|
2017-02-22 15:30:09 +00:00
|
|
|
);
|
2016-10-07 22:01:22 +00:00
|
|
|
};
|
|
|
|
|
2016-11-20 18:39:18 +00:00
|
|
|
const getAlertsBase = state => state.get('alerts');
|
2016-10-07 22:01:22 +00:00
|
|
|
|
2016-11-20 18:39:18 +00:00
|
|
|
export const getAlerts = createSelector([getAlertsBase], (base) => {
|
2016-10-07 22:01:22 +00:00
|
|
|
let arr = [];
|
|
|
|
|
|
|
|
base.forEach(item => {
|
|
|
|
arr.push({
|
|
|
|
message: item.get('message'),
|
2019-08-27 14:50:39 +00:00
|
|
|
message_values: item.get('message_values'),
|
2016-10-07 22:01:22 +00:00
|
|
|
title: item.get('title'),
|
|
|
|
key: item.get('key'),
|
2017-05-09 12:01:29 +00:00
|
|
|
dismissAfter: 5000,
|
|
|
|
barStyle: {
|
2017-05-20 15:31:47 +00:00
|
|
|
zIndex: 200,
|
|
|
|
},
|
2016-10-07 22:01:22 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
return arr;
|
|
|
|
});
|
2016-11-20 18:39:18 +00:00
|
|
|
|
2022-06-27 07:30:15 +00:00
|
|
|
export const makeGetNotification = () => createSelector([
|
|
|
|
(_, base) => base,
|
|
|
|
(state, _, accountId) => state.getIn(['accounts', accountId]),
|
|
|
|
], (base, account) => base.set('account', account));
|
|
|
|
|
|
|
|
export const makeGetReport = () => createSelector([
|
|
|
|
(_, base) => base,
|
|
|
|
(state, _, targetAccountId) => state.getIn(['accounts', targetAccountId]),
|
|
|
|
], (base, targetAccount) => base.set('target_account', targetAccount));
|
2017-05-19 23:28:25 +00:00
|
|
|
|
|
|
|
export const getAccountGallery = createSelector([
|
2017-07-10 23:00:14 +00:00
|
|
|
(state, id) => state.getIn(['timelines', `account:${id}:media`, 'items'], ImmutableList()),
|
2017-05-19 23:28:25 +00:00
|
|
|
state => state.get('statuses'),
|
2020-07-10 20:09:28 +00:00
|
|
|
(state, id) => state.getIn(['accounts', id]),
|
|
|
|
], (statusIds, statuses, account) => {
|
2017-07-10 23:00:14 +00:00
|
|
|
let medias = ImmutableList();
|
2017-05-19 23:28:25 +00:00
|
|
|
|
|
|
|
statusIds.forEach(statusId => {
|
|
|
|
const status = statuses.get(statusId);
|
2020-07-10 20:09:28 +00:00
|
|
|
medias = medias.concat(status.get('media_attachments').map(media => media.set('status', status).set('account', account)));
|
2017-05-19 23:28:25 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
return medias;
|
|
|
|
});
|
2022-05-10 07:44:35 +00:00
|
|
|
|
|
|
|
export const getAccountHidden = createSelector([
|
|
|
|
(state, id) => state.getIn(['accounts', id, 'hidden']),
|
|
|
|
(state, id) => state.getIn(['relationships', id, 'following']) || state.getIn(['relationships', id, 'requested']),
|
|
|
|
(state, id) => id === me,
|
|
|
|
], (hidden, followingOrRequested, isSelf) => {
|
|
|
|
return hidden && !(isSelf || followingOrRequested);
|
|
|
|
});
|