summaryrefslogtreecommitdiffstats
path: root/devtools/client/debugger/src/selectors/expressions.js
blob: 085aa630333634728360f79270de16cb06e2a853 (plain)
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
/* 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/>. */

import { createSelector } from "devtools/client/shared/vendor/reselect";

const getExpressionsWrapper = state => state.expressions;

export const getExpressions = createSelector(
  getExpressionsWrapper,
  expressions => expressions.expressions
);

const getAutocompleteMatches = createSelector(
  getExpressionsWrapper,
  expressions => expressions.autocompleteMatches
);

export function getExpression(state, input) {
  return getExpressions(state).find(exp => exp.input == input);
}

export function getAutocompleteMatchset(state) {
  const input = state.expressions.currentAutocompleteInput;
  if (!input) {
    return null;
  }
  return getAutocompleteMatches(state)[input];
}