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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
|
/* 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/. */
"use strict";
const {
createElement,
createRef,
Fragment,
PureComponent,
} = require("resource://devtools/client/shared/vendor/react.js");
const dom = require("resource://devtools/client/shared/vendor/react-dom-factories.js");
const PropTypes = require("resource://devtools/client/shared/vendor/react-prop-types.js");
const {
getFormatStr,
} = require("resource://devtools/client/inspector/layout/utils/l10n.js");
loader.lazyRequireGetter(
this,
"getNodeRep",
"resource://devtools/client/inspector/shared/node-reps.js"
);
const Types = require("resource://devtools/client/inspector/flexbox/types.js");
const {
highlightNode,
unhighlightNode,
} = require("resource://devtools/client/inspector/boxmodel/actions/box-model-highlighter.js");
class FlexContainer extends PureComponent {
static get propTypes() {
return {
dispatch: PropTypes.func.isRequired,
color: PropTypes.string.isRequired,
flexContainer: PropTypes.shape(Types.flexContainer).isRequired,
getSwatchColorPickerTooltip: PropTypes.func.isRequired,
onSetFlexboxOverlayColor: PropTypes.func.isRequired,
};
}
constructor(props) {
super(props);
this.swatchEl = createRef();
this.setFlexboxColor = this.setFlexboxColor.bind(this);
}
componentDidMount() {
const tooltip = this.props.getSwatchColorPickerTooltip();
let previousColor;
tooltip.addSwatch(this.swatchEl.current, {
onCommit: this.setFlexboxColor,
onPreview: this.setFlexboxColor,
onRevert: () => {
this.props.onSetFlexboxOverlayColor(previousColor);
},
onShow: () => {
previousColor = this.props.color;
},
});
}
componentWillUnmount() {
const tooltip = this.props.getSwatchColorPickerTooltip();
tooltip.removeSwatch(this.swatchEl.current);
}
setFlexboxColor() {
const color = this.swatchEl.current.dataset.color;
this.props.onSetFlexboxOverlayColor(color);
}
render() {
const { color, flexContainer, dispatch } = this.props;
const { nodeFront, properties } = flexContainer;
return createElement(
Fragment,
null,
dom.div(
{
className: "flex-header-container-label",
},
getNodeRep(nodeFront, {
onDOMNodeMouseOut: () => dispatch(unhighlightNode()),
onDOMNodeMouseOver: () => dispatch(highlightNode(nodeFront)),
}),
dom.button({
className: "layout-color-swatch",
"data-color": color,
ref: this.swatchEl,
style: {
backgroundColor: color,
},
title: getFormatStr("layout.colorSwatch.tooltip", color),
})
),
dom.div(
{ className: "flex-header-container-properties" },
dom.div(
{
className: "inspector-badge",
role: "figure",
title: `flex-direction: ${properties["flex-direction"]}`,
},
properties["flex-direction"]
),
dom.div(
{
className: "inspector-badge",
role: "figure",
title: `flex-wrap: ${properties["flex-wrap"]}`,
},
properties["flex-wrap"]
)
)
);
}
}
module.exports = FlexContainer;
|