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
|
/* 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 {
connect,
} = require("resource://devtools/client/shared/vendor/react-redux.js");
const {
Component,
createFactory,
} = 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 AnimationTarget = createFactory(
require("resource://devtools/client/inspector/animation/components/AnimationTarget.js")
);
const SummaryGraph = createFactory(
require("resource://devtools/client/inspector/animation/components/graph/SummaryGraph.js")
);
class AnimationItem extends Component {
static get propTypes() {
return {
animation: PropTypes.object.isRequired,
dispatch: PropTypes.func.isRequired,
getAnimatedPropertyMap: PropTypes.func.isRequired,
getNodeFromActor: PropTypes.func.isRequired,
isDisplayable: PropTypes.bool.isRequired,
selectAnimation: PropTypes.func.isRequired,
selectedAnimation: PropTypes.object.isRequired,
setHighlightedNode: PropTypes.func.isRequired,
setSelectedNode: PropTypes.func.isRequired,
simulateAnimation: PropTypes.func.isRequired,
timeScale: PropTypes.object.isRequired,
};
}
constructor(props) {
super(props);
this.state = {
isSelected: this.isSelected(props),
};
}
// FIXME: https://bugzilla.mozilla.org/show_bug.cgi?id=1774507
UNSAFE_componentWillReceiveProps(nextProps) {
this.setState({
isSelected: this.isSelected(nextProps),
});
}
shouldComponentUpdate(nextProps, nextState) {
return (
this.props.isDisplayable !== nextProps.isDisplayable ||
this.state.isSelected !== nextState.isSelected ||
this.props.animation !== nextProps.animation ||
this.props.timeScale !== nextProps.timeScale
);
}
isSelected(props) {
return (
props.selectedAnimation &&
props.animation.actorID === props.selectedAnimation.actorID
);
}
render() {
const {
animation,
dispatch,
getAnimatedPropertyMap,
getNodeFromActor,
isDisplayable,
selectAnimation,
setHighlightedNode,
setSelectedNode,
simulateAnimation,
timeScale,
} = this.props;
const { isSelected } = this.state;
return dom.li(
{
className:
`animation-item ${animation.state.type} ` +
(isSelected ? "selected" : ""),
},
isDisplayable
? [
AnimationTarget({
animation,
dispatch,
getNodeFromActor,
setHighlightedNode,
setSelectedNode,
}),
SummaryGraph({
animation,
getAnimatedPropertyMap,
selectAnimation,
simulateAnimation,
timeScale,
}),
]
: null
);
}
}
const mapStateToProps = state => {
return {
selectedAnimation: state.animations.selectedAnimation,
};
};
module.exports = connect(mapStateToProps)(AnimationItem);
|