This repository was archived by the owner on Nov 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmotion.js
168 lines (119 loc) · 5.19 KB
/
motion.js
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
'use strict';
var _keys = require('babel-runtime/core-js/object/keys');
var _keys2 = _interopRequireDefault(_keys);
var _typeof2 = require('babel-runtime/helpers/typeof');
var _typeof3 = _interopRequireDefault(_typeof2);
var _assign = require('babel-runtime/core-js/object/assign');
var _assign2 = _interopRequireDefault(_assign);
var _getPrototypeOf = require('babel-runtime/core-js/object/get-prototype-of');
var _getPrototypeOf2 = _interopRequireDefault(_getPrototypeOf);
var _classCallCheck2 = require('babel-runtime/helpers/classCallCheck');
var _classCallCheck3 = _interopRequireDefault(_classCallCheck2);
var _createClass2 = require('babel-runtime/helpers/createClass');
var _createClass3 = _interopRequireDefault(_createClass2);
var _possibleConstructorReturn2 = require('babel-runtime/helpers/possibleConstructorReturn');
var _possibleConstructorReturn3 = _interopRequireDefault(_possibleConstructorReturn2);
var _inherits2 = require('babel-runtime/helpers/inherits');
var _inherits3 = _interopRequireDefault(_inherits2);
var _class, _temp;
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
var React = require('react');
var T = require('prop-types');
var StrangeMotion = require('./index');
var _require = require('react-motion'),
ReactMotion = _require.Motion;
var _require2 = require('./utils'),
assignAnimConfig = _require2.assignAnimConfig;
// Component
module.exports = (_temp = _class = function (_StrangeMotion) {
(0, _inherits3.default)(Motion, _StrangeMotion);
function Motion(props) {
(0, _classCallCheck3.default)(this, Motion);
var _this = (0, _possibleConstructorReturn3.default)(this, (Motion.__proto__ || (0, _getPrototypeOf2.default)(Motion)).call(this, props));
_this.setRef = _this._setRef.bind(_this);
_this.setAnimController = _this._setAnimController.bind(_this);
return _this;
}
(0, _createClass3.default)(Motion, [{
key: 'componentWillMount',
value: function componentWillMount() {
this.setAnimController(this.props.animConfig);
this.playProp = 'enter';
}
}, {
key: '_setAnimController',
value: function _setAnimController(userAnimConfig) {
var _this2 = this;
var animConfig = this.state.animConfig;
var mergedAnimConfig = (0, _assign2.default)({}, animConfig, userAnimConfig);
var animControllerApi = {
play: function play(animNameOrConfig) {
if (typeof animNameOrConfig === 'string') {
_this2.playProp = animNameOrConfig;
_this2.forceUpdate();
}
if ((typeof animNameOrConfig === 'undefined' ? 'undefined' : (0, _typeof3.default)(animNameOrConfig)) === 'object') {
_this2.playProp = 'enter';
_this2.assignAnimConfig({
newAnimConfig: {
enter: animNameOrConfig
}
});
}
},
mergeAnimConfig: function mergeAnimConfig(animConfig) {
_this2.assignAnimConfig({
newAnimConfig: animConfig
});
},
replay: function replay() {
console.warn('replay not implemented yet, sorry!');
}
};
this.animController = (0, _keys2.default)(mergedAnimConfig).reduce(function (collector, animName) {
collector[animName] = function (plugins) {
animControllerApi.play(animName);
};
return collector;
}, animControllerApi);
if (this.props.getAnimController) {
return this.props.getAnimController(this.animController);
}
}
}, {
key: '_setRef',
value: function _setRef(refName) {
var _this3 = this;
return function (ref) {
_this3[refName] = ref;
};
}
}, {
key: 'render',
value: function render() {
var _this4 = this;
var children = this.props.children;
// ReactMotion is only built for a single child, so that's what
// the '[0]' in 'this.getDefaultStyles()[0]' is about
// 'ref={this.setRef('reactMotion')}' sets the this.reactMotion ref
// used in strange-motion/index.js
var newPlayProp = this.playProp || 'enter';
return React.createElement(
ReactMotion,
{
defaultStyle: this.getDefaultStyles()[0].style,
style: this.getStyles(newPlayProp)[0].style,
ref: this.setRef('reactMotion')
},
function (interpolatedStyles) {
return _this4.getChildren(interpolatedStyles);
}
);
}
}]);
return Motion;
}(StrangeMotion), _class.propTypes = {
getAnimController: T.func,
animConfig: T.object,
children: T.any.isRequired
}, _temp);