2016-10-30 14:06:43 +00:00
|
|
|
import {
|
|
|
|
ACCOUNT_FETCH_SUCCESS,
|
|
|
|
FOLLOWERS_FETCH_SUCCESS,
|
2016-11-13 19:42:54 +00:00
|
|
|
FOLLOWERS_EXPAND_SUCCESS,
|
2016-10-30 14:06:43 +00:00
|
|
|
FOLLOWING_FETCH_SUCCESS,
|
2016-11-13 19:42:54 +00:00
|
|
|
FOLLOWING_EXPAND_SUCCESS,
|
2017-01-19 09:54:18 +00:00
|
|
|
FOLLOW_REQUESTS_FETCH_SUCCESS,
|
2017-05-20 15:31:47 +00:00
|
|
|
FOLLOW_REQUESTS_EXPAND_SUCCESS,
|
2017-12-04 07:26:40 +00:00
|
|
|
} from 'flavours/glitch/actions/accounts';
|
2017-02-05 18:18:11 +00:00
|
|
|
import {
|
|
|
|
BLOCKS_FETCH_SUCCESS,
|
2017-05-20 15:31:47 +00:00
|
|
|
BLOCKS_EXPAND_SUCCESS,
|
2017-12-04 07:26:40 +00:00
|
|
|
} from 'flavours/glitch/actions/blocks';
|
2017-04-14 23:23:49 +00:00
|
|
|
import {
|
|
|
|
MUTES_FETCH_SUCCESS,
|
2017-05-20 15:31:47 +00:00
|
|
|
MUTES_EXPAND_SUCCESS,
|
2017-12-04 07:26:40 +00:00
|
|
|
} from 'flavours/glitch/actions/mutes';
|
|
|
|
import { COMPOSE_SUGGESTIONS_READY } from 'flavours/glitch/actions/compose';
|
2016-10-30 14:06:43 +00:00
|
|
|
import {
|
|
|
|
REBLOG_SUCCESS,
|
|
|
|
UNREBLOG_SUCCESS,
|
|
|
|
FAVOURITE_SUCCESS,
|
2016-11-03 19:16:14 +00:00
|
|
|
UNFAVOURITE_SUCCESS,
|
2018-04-11 17:42:25 +00:00
|
|
|
BOOKMARK_SUCCESS,
|
|
|
|
UNBOOKMARK_SUCCESS,
|
2016-11-04 13:15:25 +00:00
|
|
|
REBLOGS_FETCH_SUCCESS,
|
2017-05-20 15:31:47 +00:00
|
|
|
FAVOURITES_FETCH_SUCCESS,
|
2017-12-04 07:26:40 +00:00
|
|
|
} from 'flavours/glitch/actions/interactions';
|
2016-10-30 14:06:43 +00:00
|
|
|
import {
|
|
|
|
TIMELINE_UPDATE,
|
2017-05-20 15:31:47 +00:00
|
|
|
TIMELINE_EXPAND_SUCCESS,
|
2017-12-04 07:26:40 +00:00
|
|
|
} from 'flavours/glitch/actions/timelines';
|
2016-10-31 00:27:19 +00:00
|
|
|
import {
|
|
|
|
STATUS_FETCH_SUCCESS,
|
2017-05-20 15:31:47 +00:00
|
|
|
CONTEXT_FETCH_SUCCESS,
|
2017-12-04 07:26:40 +00:00
|
|
|
} from 'flavours/glitch/actions/statuses';
|
|
|
|
import { SEARCH_FETCH_SUCCESS } from 'flavours/glitch/actions/search';
|
2016-11-20 18:39:18 +00:00
|
|
|
import {
|
|
|
|
NOTIFICATIONS_UPDATE,
|
2017-05-20 15:31:47 +00:00
|
|
|
NOTIFICATIONS_EXPAND_SUCCESS,
|
2017-12-04 07:26:40 +00:00
|
|
|
} from 'flavours/glitch/actions/notifications';
|
2017-01-16 12:27:58 +00:00
|
|
|
import {
|
|
|
|
FAVOURITED_STATUSES_FETCH_SUCCESS,
|
2017-05-20 15:31:47 +00:00
|
|
|
FAVOURITED_STATUSES_EXPAND_SUCCESS,
|
2017-12-04 07:26:40 +00:00
|
|
|
} from 'flavours/glitch/actions/favourites';
|
2018-04-11 17:42:25 +00:00
|
|
|
import {
|
|
|
|
BOOKMARKED_STATUSES_FETCH_SUCCESS,
|
|
|
|
BOOKMARKED_STATUSES_EXPAND_SUCCESS,
|
|
|
|
} from 'flavours/glitch/actions/bookmarks';
|
2017-12-09 02:13:08 +00:00
|
|
|
import {
|
|
|
|
LIST_ACCOUNTS_FETCH_SUCCESS,
|
|
|
|
LIST_EDITOR_SUGGESTIONS_READY,
|
|
|
|
} from 'flavours/glitch/actions/lists';
|
2017-12-04 07:26:40 +00:00
|
|
|
import { STORE_HYDRATE } from 'flavours/glitch/actions/store';
|
|
|
|
import emojify from 'flavours/glitch/util/emoji';
|
2017-07-10 23:00:14 +00:00
|
|
|
import { Map as ImmutableMap, fromJS } from 'immutable';
|
2017-08-07 18:32:03 +00:00
|
|
|
import escapeTextContentForBrowser from 'escape-html';
|
2018-05-10 11:04:55 +00:00
|
|
|
import { unescapeHTML } from 'flavours/glitch/util/html';
|
2016-10-30 14:06:43 +00:00
|
|
|
|
2018-05-17 13:57:16 +00:00
|
|
|
const makeEmojiMap = record => record.emojis.reduce((obj, emoji) => {
|
|
|
|
obj[`:${emoji.shortcode}:`] = emoji;
|
|
|
|
return obj;
|
|
|
|
}, {});
|
|
|
|
|
2017-05-03 00:04:16 +00:00
|
|
|
const normalizeAccount = (state, account) => {
|
|
|
|
account = { ...account };
|
|
|
|
|
|
|
|
delete account.followers_count;
|
|
|
|
delete account.following_count;
|
|
|
|
delete account.statuses_count;
|
|
|
|
|
2018-05-17 13:57:16 +00:00
|
|
|
const emojiMap = makeEmojiMap(account);
|
2017-08-07 18:32:03 +00:00
|
|
|
const displayName = account.display_name.length === 0 ? account.username : account.display_name;
|
2018-05-17 13:57:16 +00:00
|
|
|
account.display_name_html = emojify(escapeTextContentForBrowser(displayName), emojiMap);
|
|
|
|
account.note_emojified = emojify(account.note, emojiMap);
|
2017-08-07 18:32:03 +00:00
|
|
|
|
2018-04-29 14:24:15 +00:00
|
|
|
if (account.fields) {
|
|
|
|
account.fields = account.fields.map(pair => ({
|
|
|
|
...pair,
|
|
|
|
name_emojified: emojify(escapeTextContentForBrowser(pair.name)),
|
2018-05-17 13:57:16 +00:00
|
|
|
value_emojified: emojify(pair.value, emojiMap),
|
2018-05-10 11:04:55 +00:00
|
|
|
value_plain: unescapeHTML(pair.value),
|
2018-04-29 14:24:15 +00:00
|
|
|
}));
|
|
|
|
}
|
|
|
|
|
2018-03-29 12:43:20 +00:00
|
|
|
if (account.moved) {
|
|
|
|
state = normalizeAccount(state, account.moved);
|
|
|
|
account.moved = account.moved.id;
|
|
|
|
}
|
|
|
|
|
2017-07-10 23:00:14 +00:00
|
|
|
return state.set(account.id, fromJS(account));
|
2017-05-03 00:04:16 +00:00
|
|
|
};
|
2016-10-30 14:06:43 +00:00
|
|
|
|
|
|
|
const normalizeAccounts = (state, accounts) => {
|
|
|
|
accounts.forEach(account => {
|
|
|
|
state = normalizeAccount(state, account);
|
|
|
|
});
|
|
|
|
|
|
|
|
return state;
|
|
|
|
};
|
|
|
|
|
|
|
|
const normalizeAccountFromStatus = (state, status) => {
|
2016-11-03 15:57:44 +00:00
|
|
|
state = normalizeAccount(state, status.account);
|
2016-10-30 14:06:43 +00:00
|
|
|
|
2016-11-03 15:57:44 +00:00
|
|
|
if (status.reblog && status.reblog.account) {
|
|
|
|
state = normalizeAccount(state, status.reblog.account);
|
2016-10-30 14:06:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return state;
|
|
|
|
};
|
|
|
|
|
|
|
|
const normalizeAccountsFromStatuses = (state, statuses) => {
|
|
|
|
statuses.forEach(status => {
|
|
|
|
state = normalizeAccountFromStatus(state, status);
|
|
|
|
});
|
|
|
|
|
|
|
|
return state;
|
|
|
|
};
|
|
|
|
|
2017-07-10 23:00:14 +00:00
|
|
|
const initialState = ImmutableMap();
|
2016-10-30 14:06:43 +00:00
|
|
|
|
|
|
|
export default function accounts(state = initialState, action) {
|
|
|
|
switch(action.type) {
|
2017-01-09 11:37:15 +00:00
|
|
|
case STORE_HYDRATE:
|
2018-07-30 12:07:04 +00:00
|
|
|
return normalizeAccounts(state, Object.values(action.state.get('accounts').toJS()));
|
2017-01-09 11:37:15 +00:00
|
|
|
case ACCOUNT_FETCH_SUCCESS:
|
|
|
|
case NOTIFICATIONS_UPDATE:
|
|
|
|
return normalizeAccount(state, action.account);
|
|
|
|
case FOLLOWERS_FETCH_SUCCESS:
|
|
|
|
case FOLLOWERS_EXPAND_SUCCESS:
|
|
|
|
case FOLLOWING_FETCH_SUCCESS:
|
|
|
|
case FOLLOWING_EXPAND_SUCCESS:
|
|
|
|
case REBLOGS_FETCH_SUCCESS:
|
|
|
|
case FAVOURITES_FETCH_SUCCESS:
|
|
|
|
case COMPOSE_SUGGESTIONS_READY:
|
|
|
|
case FOLLOW_REQUESTS_FETCH_SUCCESS:
|
2017-02-05 18:18:11 +00:00
|
|
|
case FOLLOW_REQUESTS_EXPAND_SUCCESS:
|
|
|
|
case BLOCKS_FETCH_SUCCESS:
|
|
|
|
case BLOCKS_EXPAND_SUCCESS:
|
2017-04-14 23:23:49 +00:00
|
|
|
case MUTES_FETCH_SUCCESS:
|
|
|
|
case MUTES_EXPAND_SUCCESS:
|
2017-12-09 02:13:08 +00:00
|
|
|
case LIST_ACCOUNTS_FETCH_SUCCESS:
|
|
|
|
case LIST_EDITOR_SUGGESTIONS_READY:
|
2017-09-23 12:47:32 +00:00
|
|
|
return action.accounts ? normalizeAccounts(state, action.accounts) : state;
|
2017-01-09 11:37:15 +00:00
|
|
|
case NOTIFICATIONS_EXPAND_SUCCESS:
|
2017-03-31 17:59:54 +00:00
|
|
|
case SEARCH_FETCH_SUCCESS:
|
2017-01-09 11:37:15 +00:00
|
|
|
return normalizeAccountsFromStatuses(normalizeAccounts(state, action.accounts), action.statuses);
|
|
|
|
case TIMELINE_EXPAND_SUCCESS:
|
|
|
|
case CONTEXT_FETCH_SUCCESS:
|
2017-01-16 12:27:58 +00:00
|
|
|
case FAVOURITED_STATUSES_FETCH_SUCCESS:
|
|
|
|
case FAVOURITED_STATUSES_EXPAND_SUCCESS:
|
2018-04-11 17:42:25 +00:00
|
|
|
case BOOKMARKED_STATUSES_FETCH_SUCCESS:
|
|
|
|
case BOOKMARKED_STATUSES_EXPAND_SUCCESS:
|
2017-01-09 11:37:15 +00:00
|
|
|
return normalizeAccountsFromStatuses(state, action.statuses);
|
|
|
|
case REBLOG_SUCCESS:
|
|
|
|
case FAVOURITE_SUCCESS:
|
|
|
|
case UNREBLOG_SUCCESS:
|
|
|
|
case UNFAVOURITE_SUCCESS:
|
2018-04-11 17:42:25 +00:00
|
|
|
case BOOKMARK_SUCCESS:
|
|
|
|
case UNBOOKMARK_SUCCESS:
|
2017-01-09 11:37:15 +00:00
|
|
|
return normalizeAccountFromStatus(state, action.response);
|
|
|
|
case TIMELINE_UPDATE:
|
|
|
|
case STATUS_FETCH_SUCCESS:
|
|
|
|
return normalizeAccountFromStatus(state, action.status);
|
|
|
|
default:
|
|
|
|
return state;
|
2016-10-30 14:06:43 +00:00
|
|
|
}
|
|
|
|
};
|