aboutsummaryrefslogtreecommitdiff
path: root/src/console/app/recuer.ts
blob: e3043eecefef876c3baa1e4488ac390ab255400d (plain) (blame)
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
import {
  HIDE,
  HIDE_COMMAND,
  SHOW_COMMAND,
  SHOW_ERROR,
  SHOW_FIND,
  SHOW_INFO,
  AppAction,
} from "./actions";

export interface State {
  mode: string;
  messageText: string;
  consoleText: string;
}

export const defaultState = {
  mode: "",
  messageText: "",
  consoleText: "",
};

// eslint-disable-next-line max-lines-per-function
export default function reducer(
  state: State = defaultState,
  action: AppAction
): State {
  switch (action.type) {
    case HIDE:
      return { ...state, mode: "" };
    case SHOW_COMMAND:
      return {
        ...state,
        mode: "command",
        consoleText: action.text,
      };
    case SHOW_FIND:
      return { ...state, mode: "find", consoleText: "" };
    case SHOW_ERROR:
      return { ...state, mode: "error", messageText: action.text };
    case SHOW_INFO:
      return { ...state, mode: "info", messageText: action.text };
    case HIDE_COMMAND:
      return {
        ...state,
        mode:
          state.mode === "command" || state.mode === "find" ? "" : state.mode,
      };
    default:
      return state;
  }
}