2017-02-26 00:23:44 +00:00
|
|
|
import { createSelector } from 'reselect';
|
2016-11-20 18:39:18 +00:00
|
|
|
import Immutable from 'immutable';
|
2016-10-07 22:01:22 +00:00
|
|
|
|
2016-10-30 14:06:43 +00:00
|
|
|
const getStatuses = state => state.get('statuses');
|
|
|
|
const getAccounts = state => state.get('accounts');
|
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-04-02 20:02:38 +00:00
|
|
|
const getAccountRelationship = (state, id) => state.getIn(['relationships', id], null);
|
2016-10-07 22:01:22 +00:00
|
|
|
|
2016-10-27 19:59:56 +00:00
|
|
|
export const makeGetAccount = () => {
|
|
|
|
return createSelector([getAccountBase, getAccountRelationship], (base, relationship) => {
|
|
|
|
if (base === null) {
|
|
|
|
return null;
|
|
|
|
}
|
2016-10-07 22:01:22 +00:00
|
|
|
|
2016-10-27 19:59:56 +00:00
|
|
|
return base.set('relationship', relationship);
|
|
|
|
});
|
|
|
|
};
|
2016-10-07 22:01:22 +00:00
|
|
|
|
2016-10-24 15:11:02 +00:00
|
|
|
export const makeGetStatus = () => {
|
2017-02-22 15:30:09 +00:00
|
|
|
return createSelector(
|
|
|
|
[
|
|
|
|
(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'])]),
|
|
|
|
],
|
|
|
|
|
|
|
|
(statusBase, statusReblog, accountBase, accountReblog) => {
|
|
|
|
if (!statusBase) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (statusReblog) {
|
|
|
|
statusReblog = statusReblog.set('account', accountReblog);
|
|
|
|
} else {
|
|
|
|
statusReblog = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
return statusBase.withMutations(map => {
|
|
|
|
map.set('reblog', statusReblog);
|
|
|
|
map.set('account', accountBase);
|
|
|
|
});
|
2016-10-24 15:11:02 +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'),
|
|
|
|
title: item.get('title'),
|
|
|
|
key: item.get('key'),
|
|
|
|
dismissAfter: 5000
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
return arr;
|
|
|
|
});
|
2016-11-20 18:39:18 +00:00
|
|
|
|
|
|
|
export const makeGetNotification = () => {
|
|
|
|
return createSelector([
|
|
|
|
(_, base) => base,
|
|
|
|
(state, _, accountId) => state.getIn(['accounts', accountId])
|
|
|
|
], (base, account) => {
|
|
|
|
return base.set('account', account);
|
|
|
|
});
|
|
|
|
};
|