aboutsummaryrefslogtreecommitdiff
path: root/src/console/reducers/console.ts
blob: 37f1efc31e3874cb432ada2217cd918f394c1cfd (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
53
54
55
import {
  CONSOLE_HIDE,
  CONSOLE_HIDE_COMMAND,
  CONSOLE_SET_CONSOLE_TEXT,
  CONSOLE_SHOW_COMMAND,
  CONSOLE_SHOW_ERROR,
  CONSOLE_SHOW_FIND,
  CONSOLE_SHOW_INFO,
  ConsoleAction,
} from "../actions/console";

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: ConsoleAction
): State {
  switch (action.type) {
    case CONSOLE_HIDE:
      return { ...state, mode: "" };
    case CONSOLE_SHOW_COMMAND:
      return {
        ...state,
        mode: "command",
        consoleText: action.text,
      };
    case CONSOLE_SHOW_FIND:
      return { ...state, mode: "find", consoleText: "" };
    case CONSOLE_SHOW_ERROR:
      return { ...state, mode: "error", messageText: action.text };
    case CONSOLE_SHOW_INFO:
      return { ...state, mode: "info", messageText: action.text };
    case CONSOLE_HIDE_COMMAND:
      return {
        ...state,
        mode:
          state.mode === "command" || state.mode === "find" ? "" : state.mode,
      };
    case CONSOLE_SET_CONSOLE_TEXT:
      return { ...state, consoleText: action.consoleText };
    default:
      return state;
  }
}