forked from firefox-devtools/debugger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexpressions.js
More file actions
176 lines (144 loc) · 4.7 KB
/
Copy pathexpressions.js
File metadata and controls
176 lines (144 loc) · 4.7 KB
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at <http://mozilla.org/MPL/2.0/>. */
// @flow
/**
* Expressions reducer
* @module reducers/expressions
*/
import makeRecord from "../utils/makeRecord";
import { List, Map } from "immutable";
import { omit, zip } from "lodash";
import { createSelector } from "reselect";
import { prefs } from "../utils/prefs";
import type { Expression } from "../types";
import type { Selector, State } from "../reducers/types";
import type { Action } from "../actions/types";
import type { Record } from "../utils/makeRecord";
export type ExpressionState = {
expressions: List<Expression>,
expressionError: boolean,
autocompleteMatches: Map<string, List<string>>,
currentAutocompleteInput: string | null
};
export const createExpressionState: () => Record<ExpressionState> = makeRecord({
expressions: List(restoreExpressions()),
expressionError: false,
autocompleteMatches: Map({}),
currentAutocompleteInput: null
});
function update(
state: Record<ExpressionState> = createExpressionState(),
action: Action
): Record<ExpressionState> {
switch (action.type) {
case "ADD_EXPRESSION":
if (action.expressionError) {
return state.set("expressionError", !!action.expressionError);
}
return appendExpressionToList(state, {
input: action.input,
value: null,
updating: true
});
case "UPDATE_EXPRESSION":
const key = action.expression.input;
return updateExpressionInList(state, key, {
input: action.input,
value: null,
updating: true
}).set("expressionError", !!action.expressionError);
case "EVALUATE_EXPRESSION":
return updateExpressionInList(state, action.input, {
input: action.input,
value: action.value,
updating: false
});
case "EVALUATE_EXPRESSIONS":
const { inputs, results } = action;
return zip(inputs, results).reduce(
(newState, [input, result]) =>
updateExpressionInList(newState, input, {
input: input,
value: result,
updating: false
}),
state
);
case "DELETE_EXPRESSION":
return deleteExpression(state, action.input);
case "CLEAR_EXPRESSION_ERROR":
return state.set("expressionError", false);
case "AUTOCOMPLETE":
const { matchProp, matches } = action.result;
return state
.updateIn(["autocompleteMatches", matchProp], list => matches)
.set("currentAutocompleteInput", matchProp);
case "CLEAR_AUTOCOMPLETE":
return state
.updateIn(["autocompleteMatches", ""], list => [])
.set("currentAutocompleteInput", "");
}
return state;
}
function restoreExpressions() {
const exprs = prefs.expressions;
if (exprs.length == 0) {
return;
}
return exprs;
}
function storeExpressions({ expressions }) {
prefs.expressions = expressions
.map(expression => omit(expression, "value"))
.toJS();
}
function appendExpressionToList(state: Record<ExpressionState>, value: any) {
const newState = state.update("expressions", () => {
return state.expressions.push(value);
});
storeExpressions(newState);
return newState;
}
function updateExpressionInList(
state: Record<ExpressionState>,
key: string,
value: any
) {
const newState = state.update("expressions", () => {
const list = state.expressions;
const index = list.findIndex(e => e.input == key);
return list.update(index, () => value);
});
storeExpressions(newState);
return newState;
}
function deleteExpression(state: Record<ExpressionState>, input: string) {
const index = state.expressions.findIndex(e => e.input == input);
const newState = state.deleteIn(["expressions", index]);
storeExpressions(newState);
return newState;
}
const getExpressionsWrapper = state => state.expressions;
export const getExpressions: Selector<List<Expression>> = createSelector(
getExpressionsWrapper,
expressions => expressions.expressions
);
export const getAutocompleteMatches: Selector<
Map<string, List<string>>
> = createSelector(
getExpressionsWrapper,
expressions => expressions.autocompleteMatches
);
export function getExpression(state: State, input: string) {
return getExpressions(state).find(exp => exp.input == input);
}
export function getAutocompleteMatchset(state: State) {
const input = state.expressions.get("currentAutocompleteInput");
return getAutocompleteMatches(state).get(input);
}
export const getExpressionError: Selector<boolean> = createSelector(
getExpressionsWrapper,
expressions => expressions.expressionError
);
export default update;