forked from firefox-devtools/debugger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSourceSearch.js
More file actions
64 lines (56 loc) · 1.54 KB
/
Copy pathSourceSearch.js
File metadata and controls
64 lines (56 loc) · 1.54 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
import React, { Component, PropTypes } from "react";
import { isPretty, getSourcePath, isThirdParty } from "../../utils/source";
import { endTruncateStr } from "../../utils/utils";
import Autocomplete from "../shared/Autocomplete";
import type { SourcesMap } from "../../reducers/sources";
export default class SourceSearch extends Component {
props: {
closeActiveSearch: () => any,
selectSource: string => any,
sources: Object,
searchBottomBar: Object,
query: string,
setQuery: (query: string) => void,
clearQuery: () => void
};
toggleSourceSearch: Function;
searchResults(sources: SourcesMap) {
return sources
.valueSeq()
.toJS()
.filter(source => !isPretty(source) && !isThirdParty(source))
.map(source => ({
value: getSourcePath(source),
title: getSourcePath(source)
.split("/")
.pop(),
subtitle: endTruncateStr(getSourcePath(source), 100),
id: source.id
}));
}
render() {
const {
sources,
searchBottomBar,
selectSource,
query,
setQuery
} = this.props;
return (
<Autocomplete
selectItem={(e, result) => selectSource(result.id)}
close={this.props.closeActiveSearch}
items={this.searchResults(sources)}
inputValue={query}
placeholder={L10N.getStr("sourceSearch.search")}
onChangeHandler={setQuery}
size="big"
>
{searchBottomBar}
</Autocomplete>
);
}
}
SourceSearch.contextTypes = {
shortcuts: PropTypes.object
};