~cytrogen/masto-fe

ref: 20a89f1c8eefa0f766a4650be4d2e5f1fa92ee71 masto-fe/app/javascript/flavours/glitch/reducers/search.js -rw-r--r-- 2.6 KiB
20a89f1c — Cytrogen [feature] Bookmark folders UI 12 days 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
import { Map as ImmutableMap, OrderedSet as ImmutableOrderedSet, fromJS } from "immutable";

import {
  COMPOSE_MENTION,
  COMPOSE_REPLY,
  COMPOSE_DIRECT,
} from "flavours/glitch/actions/compose";
import {
  SEARCH_CHANGE,
  SEARCH_CLEAR,
  SEARCH_FETCH_REQUEST,
  SEARCH_FETCH_FAIL,
  SEARCH_FETCH_SUCCESS,
  SEARCH_SHOW,
  SEARCH_EXPAND_REQUEST,
  SEARCH_EXPAND_SUCCESS,
  SEARCH_EXPAND_FAIL,
  SEARCH_HISTORY_UPDATE,
} from "flavours/glitch/actions/search";

const initialState = ImmutableMap({
  value: "",
  submitted: false,
  hidden: false,
  results: ImmutableMap(),
  isLoading: false,
  searchTerm: "",
  type: null,
  recent: ImmutableOrderedSet(),
});

export default function search(state = initialState, action) {
  switch(action.type) {
    case SEARCH_CHANGE:
      return state.set("value", action.value);
    case SEARCH_CLEAR:
      return state.withMutations(map => {
        map.set("value", "");
        map.set("results", ImmutableMap());
        map.set("submitted", false);
        map.set("hidden", false);
        map.set("searchTerm", "");
        map.set("type", null);
      });
    case SEARCH_SHOW:
      return state.set("hidden", false);
    case COMPOSE_REPLY:
    case COMPOSE_MENTION:
    case COMPOSE_DIRECT:
      return state.set("hidden", true);
    case SEARCH_FETCH_REQUEST:
      return state.withMutations(map => {
        map.set("isLoading", true);
        map.set("submitted", true);
        map.set("type", action.searchType);
      });
    case SEARCH_FETCH_FAIL:
    case SEARCH_EXPAND_FAIL:
      return state.set("isLoading", false);
    case SEARCH_FETCH_SUCCESS:
      return state.withMutations(map => {
        map.set("results", ImmutableMap({
          accounts: ImmutableOrderedSet(action.results.accounts.map(item => item.id)),
          statuses: ImmutableOrderedSet(action.results.statuses.map(item => item.id)),
          hashtags: ImmutableOrderedSet(fromJS(action.results.hashtags)),
        }));

        map.set("searchTerm", action.searchTerm);
        map.set("type", action.searchType);
        map.set("isLoading", false);
      });
    case SEARCH_EXPAND_REQUEST:
      return state.set("type", action.searchType).set("isLoading", true);
    case SEARCH_EXPAND_SUCCESS:
      const results = action.searchType === "hashtags" ? ImmutableOrderedSet(fromJS(action.results.hashtags)) : action.results[action.searchType].map(item => item.id);
      return state.updateIn(["results", action.searchType], list => list.union(results)).set("isLoading", false);
    case SEARCH_HISTORY_UPDATE:
      return state.set("recent", ImmutableOrderedSet(fromJS(action.recent)));
    default:
      return state;
  }
}