~cytrogen/masto-fe

ref: 1ff70886a12e05cdc2f0789e78dcdabccaef6d18 masto-fe/app/javascript/mastodon/reducers/announcements.js -rw-r--r-- 3.6 KiB
1ff70886 — Zoë Bijl [build] upgrade eslint to 9.37.0 (#88) 6 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
import { Map as ImmutableMap, List as ImmutableList, fromJS } from "immutable";

import {
  ANNOUNCEMENTS_FETCH_REQUEST,
  ANNOUNCEMENTS_FETCH_SUCCESS,
  ANNOUNCEMENTS_FETCH_FAIL,
  ANNOUNCEMENTS_UPDATE,
  ANNOUNCEMENTS_REACTION_UPDATE,
  ANNOUNCEMENTS_REACTION_ADD_REQUEST,
  ANNOUNCEMENTS_REACTION_ADD_FAIL,
  ANNOUNCEMENTS_REACTION_REMOVE_REQUEST,
  ANNOUNCEMENTS_REACTION_REMOVE_FAIL,
  ANNOUNCEMENTS_TOGGLE_SHOW,
  ANNOUNCEMENTS_DELETE,
  ANNOUNCEMENTS_DISMISS_SUCCESS,
} from "../actions/announcements";

const initialState = ImmutableMap({
  items: ImmutableList(),
  isLoading: false,
  show: false,
});

const updateReaction = (state, id, name, updater) => state.update("items", list => list.map(announcement => {
  if (announcement.get("id") === id) {
    return announcement.update("reactions", reactions => {
      const idx = reactions.findIndex(reaction => reaction.get("name") === name);

      if (idx > -1) {
        return reactions.update(idx, reaction => updater(reaction));
      }

      return reactions.push(updater(fromJS({ name, count: 0 })));
    });
  }

  return announcement;
}));

const updateReactionCount = (state, reaction) => updateReaction(state, reaction.announcement_id, reaction.name, x => x.set("count", reaction.count));

const addReaction = (state, id, name) => updateReaction(state, id, name, x => x.set("me", true).update("count", y => y + 1));

const removeReaction = (state, id, name) => updateReaction(state, id, name, x => x.set("me", false).update("count", y => y - 1));

const sortAnnouncements = list => list.sortBy(x => x.get("starts_at") || x.get("published_at"));

const updateAnnouncement = (state, announcement) => {
  const idx = state.get("items").findIndex(x => x.get("id") === announcement.get("id"));

  if (idx > -1) {
    // Deep merge is used because announcements from the streaming API do not contain
    // personalized data about which reactions have been selected by the given user,
    // and that is information we want to preserve
    return state.update("items", list => sortAnnouncements(list.update(idx, x => x.mergeDeep(announcement))));
  }

  return state.update("items", list => sortAnnouncements(list.unshift(announcement)));
};

export default function announcementsReducer(state = initialState, action) {
  switch(action.type) {
    case ANNOUNCEMENTS_TOGGLE_SHOW:
      return state.withMutations(map => {
        map.set("show", !map.get("show"));
      });
    case ANNOUNCEMENTS_FETCH_REQUEST:
      return state.set("isLoading", true);
    case ANNOUNCEMENTS_FETCH_SUCCESS:
      return state.withMutations(map => {
        const items = fromJS(action.announcements);

        map.set("items", items);
        map.set("isLoading", false);
      });
    case ANNOUNCEMENTS_FETCH_FAIL:
      return state.set("isLoading", false);
    case ANNOUNCEMENTS_UPDATE:
      return updateAnnouncement(state, fromJS(action.announcement));
    case ANNOUNCEMENTS_REACTION_UPDATE:
      return updateReactionCount(state, action.reaction);
    case ANNOUNCEMENTS_REACTION_ADD_REQUEST:
    case ANNOUNCEMENTS_REACTION_REMOVE_FAIL:
      return addReaction(state, action.id, action.name);
    case ANNOUNCEMENTS_REACTION_REMOVE_REQUEST:
    case ANNOUNCEMENTS_REACTION_ADD_FAIL:
      return removeReaction(state, action.id, action.name);
    case ANNOUNCEMENTS_DISMISS_SUCCESS:
      return updateAnnouncement(state, fromJS({ "id": action.id, "read": true }));
    case ANNOUNCEMENTS_DELETE:
      return state.update("items", list => {
        const idx = list.findIndex(x => x.get("id") === action.id);

        if (idx > -1) {
          return list.delete(idx);
        }

        return list;
      });
    default:
      return state;
  }
}