forked from firefox-devtools/debugger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWelcomeBox.js
More file actions
87 lines (73 loc) · 2.52 KB
/
WelcomeBox.js
File metadata and controls
87 lines (73 loc) · 2.52 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
/* 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
import React, { Component } from "react";
import { connect } from "react-redux";
import actions from "../actions";
import { getPaneCollapse } from "../selectors";
import { formatKeyShortcut } from "../utils/text";
import PaneToggleButton from "./shared/Button/PaneToggle";
import type { ActiveSearchType } from "../reducers/ui";
import "./WelcomeBox.css";
type Props = {
horizontal: boolean,
togglePaneCollapse: Function,
endPanelCollapsed: boolean,
setActiveSearch: (?ActiveSearchType) => any,
openQuickOpen: (query?: string) => void
};
export class WelcomeBox extends Component<Props> {
renderToggleButton() {
const { horizontal, endPanelCollapsed, togglePaneCollapse } = this.props;
if (horizontal) {
return;
}
return (
<PaneToggleButton
position="end"
collapsed={!endPanelCollapsed}
horizontal={horizontal}
handleClick={togglePaneCollapse}
/>
);
}
render() {
const searchSourcesShortcut = formatKeyShortcut(
L10N.getStr("sources.search.key2")
);
const searchProjectShortcut = formatKeyShortcut(
L10N.getStr("projectTextSearch.key")
);
const searchSourcesLabel = L10N.getStr("welcome.search").substring(2);
const searchProjectLabel = L10N.getStr("welcome.findInFiles").substring(2);
const { setActiveSearch, openQuickOpen } = this.props;
return (
<div className="welcomebox">
<div className="alignlabel">
<div className="shortcutFunction">
<p
className="welcomebox__searchSources"
onClick={() => openQuickOpen()}
>
<span className="shortcutKey">{searchSourcesShortcut}</span>
<span className="shortcutLabel">{searchSourcesLabel}</span>
</p>
<p
className="welcomebox__searchProject"
onClick={setActiveSearch.bind(null, "project")}
>
<span className="shortcutKey">{searchProjectShortcut}</span>
<span className="shortcutLabel">{searchProjectLabel}</span>
</p>
</div>
{this.renderToggleButton()}
</div>
</div>
);
}
}
const mapStateToProps = state => ({
endPanelCollapsed: getPaneCollapse(state, "end")
});
export default connect(mapStateToProps, actions)(WelcomeBox);