diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
commit | 2aa4a82499d4becd2284cdb482213d541b8804dd (patch) | |
tree | b80bf8bf13c3766139fbacc530efd0dd9d54394c /devtools/client/performance-new/components/Presets.js | |
parent | Initial commit. (diff) | |
download | firefox-2aa4a82499d4becd2284cdb482213d541b8804dd.tar.xz firefox-2aa4a82499d4becd2284cdb482213d541b8804dd.zip |
Adding upstream version 86.0.1.upstream/86.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'devtools/client/performance-new/components/Presets.js')
-rw-r--r-- | devtools/client/performance-new/components/Presets.js | 163 |
1 files changed, 163 insertions, 0 deletions
diff --git a/devtools/client/performance-new/components/Presets.js b/devtools/client/performance-new/components/Presets.js new file mode 100644 index 0000000000..4bb6533a49 --- /dev/null +++ b/devtools/client/performance-new/components/Presets.js @@ -0,0 +1,163 @@ +/* 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 + +/** + * @template P + * @typedef {import("react-redux").ResolveThunks<P>} ResolveThunks<P> + */ + +"use strict"; +const { + PureComponent, + createElement, +} = require("devtools/client/shared/vendor/react"); +const { + div, + label, + input, +} = require("devtools/client/shared/vendor/react-dom-factories"); +const selectors = require("devtools/client/performance-new/store/selectors"); +const actions = require("devtools/client/performance-new/store/actions"); +const { connect } = require("devtools/client/shared/vendor/react-redux"); + +/** + * @typedef {Object} PresetProps + * @property {string} presetName + * @property {boolean} selected + * @property {import("../@types/perf").PresetDefinition | null} preset + * @property {(presetName: string) => void} onChange + */ + +/** + * Switch between various profiler presets, which will override the individualized + * settings for the profiler. + * + * @extends {React.PureComponent<PresetProps>} + */ +class Preset extends PureComponent { + /** + * Handle the checkbox change. + * @param {React.ChangeEvent<HTMLInputElement>} event + */ + onChange = event => { + this.props.onChange(event.target.value); + }; + + render() { + const { preset, presetName, selected } = this.props; + let labelText, description; + if (preset) { + labelText = preset.label; + description = preset.description; + } else { + labelText = "Custom"; + } + return label( + { className: "perf-presets-label" }, + div( + { className: "perf-presets-input-container" }, + input({ + className: "perf-presets-input", + type: "radio", + name: "presets", + value: presetName, + checked: selected, + onChange: this.onChange, + }) + ), + div( + { className: "perf-presets-text" }, + div({ className: "pref-preset-text-label" }, labelText), + description + ? div({ className: "perf-presets-description" }, description) + : null + ) + ); + } +} + +/** + * @typedef {Object} StateProps + * @property {string} selectedPresetName + * @property {import("../@types/perf").Presets} presets + */ + +/** + * @typedef {Object} ThunkDispatchProps + * @property {typeof actions.changePreset} changePreset + */ + +/** + * @typedef {ResolveThunks<ThunkDispatchProps>} DispatchProps + * @typedef {StateProps & DispatchProps} Props + * @typedef {import("../@types/perf").State} StoreState + */ + +/** + * Switch between various profiler presets, which will override the individualized + * settings for the profiler. + * + * @extends {React.PureComponent<Props>} + */ +class Presets extends PureComponent { + /** @param {Props} props */ + constructor(props) { + super(props); + this.onChange = this.onChange.bind(this); + } + + /** + * Handle the checkbox change. + * @param {string} presetName + */ + onChange(presetName) { + const { presets } = this.props; + this.props.changePreset(presets, presetName); + } + + render() { + const { presets, selectedPresetName } = this.props; + + return div( + { className: "perf-presets" }, + Object.entries(presets).map(([presetName, preset]) => + createElement(Preset, { + key: presetName, + presetName, + preset, + selected: presetName === selectedPresetName, + onChange: this.onChange, + }) + ), + createElement(Preset, { + key: "custom", + presetName: "custom", + selected: selectedPresetName == "custom", + preset: null, + onChange: this.onChange, + }) + ); + } +} + +/** + * @param {StoreState} state + * @returns {StateProps} + */ +function mapStateToProps(state) { + return { + selectedPresetName: selectors.getPresetName(state), + presets: selectors.getPresets(state), + }; +} + +/** + * @type {ThunkDispatchProps} + */ +const mapDispatchToProps = { + changePreset: actions.changePreset, +}; + +module.exports = connect(mapStateToProps, mapDispatchToProps)(Presets); |