blob: 9d9d594aa0e281ceb26dc84752ee0325eeaab1ea (
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
52
53
54
55
56
57
58
59
60
61
|
/* 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/. */
// @ts-check
/**
* @typedef {Object} StateProps
* @property {RecordingState} recordingState
*/
/**
* @typedef {Object} OwnProps
* @property {any} toolbox
*/
/**
* @typedef {StateProps & OwnProps} Props
* @typedef {import("../../@types/perf").State} StoreState
* @typedef {import("../../@types/perf").RecordingState} RecordingState
*/
"use strict";
const {
PureComponent,
} = require("resource://devtools/client/shared/vendor/react.js");
const {
connect,
} = require("resource://devtools/client/shared/vendor/react-redux.js");
const selectors = require("resource://devtools/client/performance-new/store/selectors.js");
/**
* @extends {React.PureComponent<Props>}
*/
class ToolboxHighlightController extends PureComponent {
/** @param {Props} prevProps */
componentDidUpdate(prevProps) {
const { recordingState, toolbox } = this.props;
if (recordingState === "recording") {
toolbox.highlightTool("performance");
} else if (prevProps.recordingState === "recording") {
toolbox.unhighlightTool("performance");
}
}
render() {
return null;
}
}
/**
* @param {StoreState} state
* @returns {StateProps}
*/
function mapStateToProps(state) {
return {
recordingState: selectors.getRecordingState(state),
};
}
module.exports = connect(mapStateToProps)(ToolboxHighlightController);
|