mastodon/app/javascript/flavours/glitch/features/ui/containers/status_list_container.js

99 lines
3.1 KiB
JavaScript
Raw Normal View History

2016-11-05 09:20:05 -05:00
import { connect } from 'react-redux';
2017-12-04 01:26:40 -06:00
import StatusList from 'flavours/glitch/components/status_list';
import { scrollTopTimeline, loadPending } from 'flavours/glitch/actions/timelines';
import { Map as ImmutableMap, List as ImmutableList } from 'immutable';
2017-01-10 10:25:10 -06:00
import { createSelector } from 'reselect';
import { debounce } from 'lodash';
2017-12-04 01:26:40 -06:00
import { me } from 'flavours/glitch/util/initial_state';
2017-01-10 10:25:10 -06:00
const normalizeTimelineId = timelineId => {
if (timelineId.startsWith('public:')) {
return 'public';
}
if (timelineId.startsWith('community:')) {
return 'community';
}
return timelineId;
};
const getRegex = createSelector([
(state, { type }) => state.getIn(['settings', normalizeTimelineId(type), 'regex', 'body']),
], (rawRegex) => {
let regex = null;
2017-01-10 10:25:10 -06:00
try {
regex = rawRegex && new RegExp(rawRegex.trim(), 'i');
} catch (e) {
// Bad regex, don't affect filters
2017-01-10 10:25:10 -06:00
}
return regex;
});
const makeGetStatusIds = (pending = false) => createSelector([
(state, { type }) => state.getIn(['settings', normalizeTimelineId(type)], ImmutableMap()),
(state, { type }) => state.getIn(['timelines', type, pending ? 'pendingItems' : 'items'], ImmutableList()),
(state) => state.get('statuses'),
getRegex,
], (columnSettings, statusIds, statuses, regex) => {
return statusIds.filter(id => {
if (id === null) return true;
const statusForId = statuses.get(id);
let showStatus = true;
2017-01-10 10:25:10 -06:00
2020-06-19 22:01:25 -05:00
if (statusForId.get('account') === me) return true;
if (columnSettings.getIn(['shows', 'reblog']) === false) {
showStatus = showStatus && statusForId.get('reblog') === null;
}
if (columnSettings.getIn(['shows', 'reply']) === false) {
showStatus = showStatus && (statusForId.get('in_reply_to_id') === null || statusForId.get('in_reply_to_account_id') === me);
2017-01-10 10:25:10 -06:00
}
if (columnSettings.getIn(['shows', 'direct']) === false) {
showStatus = showStatus && statusForId.get('visibility') !== 'direct';
}
2020-06-23 08:37:45 -05:00
if (showStatus && regex) {
const searchIndex = statusForId.get('reblog') ? statuses.getIn([statusForId.get('reblog'), 'search_index']) : statusForId.get('search_index');
showStatus = !regex.test(searchIndex);
}
return showStatus;
});
});
const makeMapStateToProps = () => {
const getStatusIds = makeGetStatusIds();
const getPendingStatusIds = makeGetStatusIds(true);
const mapStateToProps = (state, { timelineId }) => ({
statusIds: getStatusIds(state, { type: timelineId }),
isLoading: state.getIn(['timelines', timelineId, 'isLoading'], true),
isPartial: state.getIn(['timelines', timelineId, 'isPartial'], false),
hasMore: state.getIn(['timelines', timelineId, 'hasMore']),
numPending: getPendingStatusIds(state, { type: timelineId }).size,
});
return mapStateToProps;
};
const mapDispatchToProps = (dispatch, { timelineId }) => ({
onScrollToTop: debounce(() => {
dispatch(scrollTopTimeline(timelineId, true));
}, 100),
2017-01-10 10:25:10 -06:00
onScroll: debounce(() => {
dispatch(scrollTopTimeline(timelineId, false));
}, 100),
2017-01-10 10:25:10 -06:00
onLoadPending: () => dispatch(loadPending(timelineId)),
2017-01-10 10:25:10 -06:00
});
2016-08-31 15:58:10 -05:00
export default connect(makeMapStateToProps, mapDispatchToProps)(StatusList);