summaryrefslogtreecommitdiffstats
path: root/devtools/client/debugger/src/actions/file-search.js
blob: cc5794d7ab39ecff7c2b2827bf8e2ce8c9e77d97 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/* 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 { searchSourceForHighlight } from "../utils/editor/index";

import {
  getSelectedSourceTextContent,
  getSearchOptions,
} from "../selectors/index";

import { closeActiveSearch, clearHighlightLineRange } from "./ui";

export function doSearchForHighlight(query, editor, line, ch) {
  return async ({ getState, dispatch }) => {
    const sourceTextContent = getSelectedSourceTextContent(getState());
    if (!sourceTextContent) {
      return;
    }

    dispatch(searchContentsForHighlight(query, editor, line, ch));
  };
}

// Expose an action to the React component, so that it can call the searchWorker.
export function querySearchWorker(query, text, modifiers) {
  return ({ searchWorker }) => {
    return searchWorker.getMatches(query, text, modifiers);
  };
}

export function searchContentsForHighlight(query, editor, line, ch) {
  return async ({ getState, dispatch }) => {
    const modifiers = getSearchOptions(getState(), "file-search");
    const sourceTextContent = getSelectedSourceTextContent(getState());

    if (!query || !editor || !sourceTextContent || !modifiers) {
      return;
    }

    const ctx = { ed: editor, cm: editor.codeMirror };
    searchSourceForHighlight(ctx, false, query, true, modifiers, line, ch);
  };
}

export function closeFileSearch() {
  return ({ dispatch }) => {
    dispatch(closeActiveSearch());
    dispatch(clearHighlightLineRange());
  };
}