Browse Source

[Glitch] Replace recursion in status mapStateToProps

Port dfbadd6837 to glitch-soc
closed-social-glitch-2
Thibaut Girka 6 years ago
committed by ThibG
parent
commit
837ea32c88
1 changed files with 9 additions and 12 deletions
  1. +9
    -12
      app/javascript/flavours/glitch/features/status/index.js

+ 9
- 12
app/javascript/flavours/glitch/features/status/index.js View File

@ -65,31 +65,28 @@ const makeMapStateToProps = () => {
if (status) { if (status) {
ancestorsIds = ancestorsIds.withMutations(mutable => { ancestorsIds = ancestorsIds.withMutations(mutable => {
function addAncestor(id) {
if (id) {
const inReplyTo = state.getIn(['contexts', 'inReplyTos', id]);
let id = status.get('in_reply_to_id');
mutable.unshift(id);
addAncestor(inReplyTo);
}
while (id) {
mutable.unshift(id);
id = state.getIn(['contexts', 'inReplyTos', id]);
} }
addAncestor(status.get('in_reply_to_id'));
}); });
descendantsIds = descendantsIds.withMutations(mutable => { descendantsIds = descendantsIds.withMutations(mutable => {
function addDescendantOf(id) {
const ids = [status.get('id')];
while (ids.length > 0) {
let id = ids.shift();
const replies = state.getIn(['contexts', 'replies', id]); const replies = state.getIn(['contexts', 'replies', id]);
if (replies) { if (replies) {
replies.forEach(reply => { replies.forEach(reply => {
mutable.push(reply); mutable.push(reply);
addDescendantOf(reply);
ids.unshift(reply);
}); });
} }
} }
addDescendantOf(status.get('id'));
}); });
} }

Loading…
Cancel
Save