-
Notifications
You must be signed in to change notification settings - Fork 4.1k
/
Copy pathTransition.js
252 lines (204 loc) · 6.89 KB
/
Transition.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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
import cx from 'clsx'
import _ from 'lodash'
import PropTypes from 'prop-types'
import * as React from 'react'
import { makeDebugger, normalizeTransitionDuration, SUI, getKeyOnly } from '../../lib'
import TransitionGroup from './TransitionGroup'
import {
computeStatuses,
TRANSITION_STATUS_ENTERED,
TRANSITION_STATUS_ENTERING,
TRANSITION_STATUS_EXITED,
TRANSITION_STATUS_EXITING,
TRANSITION_STATUS_INITIAL,
TRANSITION_STATUS_UNMOUNTED,
} from './utils/computeStatuses'
const debug = makeDebugger('transition')
const TRANSITION_CALLBACK_TYPE = {
[TRANSITION_STATUS_ENTERED]: 'show',
[TRANSITION_STATUS_EXITED]: 'hide',
}
const TRANSITION_STYLE_TYPE = {
[TRANSITION_STATUS_ENTERING]: 'show',
[TRANSITION_STATUS_EXITING]: 'hide',
}
/**
* A transition is an animation usually used to move content in or out of view.
*/
export default class Transition extends React.Component {
static Group = TransitionGroup
state = {
status: TRANSITION_STATUS_INITIAL,
}
// ----------------------------------------
// Lifecycle
// ----------------------------------------
static getDerivedStateFromProps(props, state) {
const derivedState = computeStatuses({
mountOnShow: props.mountOnShow,
status: state.status,
transitionOnMount: props.transitionOnMount,
visible: props.visible,
unmountOnHide: props.unmountOnHide,
})
debug('getDerivedStateFromProps()', props, state, derivedState)
return derivedState
}
componentDidMount() {
debug('componentDidMount()')
this.updateStatus({})
}
componentDidUpdate(prevProps, prevState) {
debug('componentDidUpdate()')
this.updateStatus(prevState)
}
componentWillUnmount() {
debug('componentWillUnmount()')
clearTimeout(this.timeoutId)
}
// ----------------------------------------
// Callback handling
// ----------------------------------------
handleStart = (nextStatus) => {
const { duration } = this.props
const durationType = TRANSITION_CALLBACK_TYPE[nextStatus]
const durationValue = normalizeTransitionDuration(duration, durationType)
if (durationValue === 0) {
this.setState({ status: nextStatus })
} else {
this.timeoutId = setTimeout(() => this.setState({ status: nextStatus }), durationValue)
}
}
updateStatus = (prevState) => {
if (prevState.status !== this.state.status) {
// Timeout should be cleared in any case as previous can lead set to unexpected `nextStatus`
clearTimeout(this.timeoutId)
if (this.state.nextStatus) {
this.handleStart(this.state.nextStatus)
}
}
if (!prevState.animating && this.state.animating) {
_.invoke(this.props, 'onStart', null, { ...this.props, status: this.state.status })
}
if (prevState.animating && !this.state.animating) {
const callback = this.state.status === TRANSITION_STATUS_ENTERED ? 'onShow' : 'onHide'
_.invoke(this.props, 'onComplete', null, { ...this.props, status: this.state.status })
_.invoke(this.props, callback, null, { ...this.props, status: this.state.status })
}
}
// ----------------------------------------
// Helpers
// ----------------------------------------
computeClasses = () => {
const { animation, directional, children } = this.props
const { animating, status } = this.state
const childClasses = _.get(children, 'props.className')
const isDirectional = _.isNil(directional)
? _.includes(SUI.DIRECTIONAL_TRANSITIONS, animation)
: directional
if (isDirectional) {
return cx(
animation,
childClasses,
getKeyOnly(animating, 'animating'),
getKeyOnly(status === TRANSITION_STATUS_ENTERING, 'in'),
getKeyOnly(status === TRANSITION_STATUS_EXITING, 'out'),
getKeyOnly(status === TRANSITION_STATUS_EXITED, 'hidden'),
getKeyOnly(status !== TRANSITION_STATUS_EXITED, 'visible'),
'transition',
)
}
return cx(animation, childClasses, getKeyOnly(animating, 'animating transition'))
}
computeStyle = () => {
const { children, duration } = this.props
const { status } = this.state
const childStyle = _.get(children, 'props.style')
const type = TRANSITION_STYLE_TYPE[status]
const animationDuration = type && `${normalizeTransitionDuration(duration, type)}ms`
return { ...childStyle, animationDuration }
}
// ----------------------------------------
// Render
// ----------------------------------------
render() {
debug('render(): props', this.props)
debug('render(): state', this.state)
const { children } = this.props
const { nextStatus, status } = this.state
if (status === TRANSITION_STATUS_UNMOUNTED) {
return null
}
return React.cloneElement(children, {
className: this.computeClasses(),
style: this.computeStyle(),
...(process.env.NODE_ENV !== 'production' && {
'data-test-status': status,
'data-test-next-status': nextStatus,
}),
})
}
}
Transition.propTypes = {
/** Named animation event to used. Must be defined in CSS. */
animation: PropTypes.oneOfType([PropTypes.oneOf(SUI.TRANSITIONS), PropTypes.string]),
/** Primary content. */
children: PropTypes.element.isRequired,
/** Whether it is directional animation event or not. Use it only for custom transitions. */
directional: PropTypes.bool,
/** Duration of the CSS transition animation in milliseconds. */
duration: PropTypes.oneOfType([
PropTypes.number,
PropTypes.shape({
hide: PropTypes.number,
show: PropTypes.number,
}),
PropTypes.string,
]),
/** Show the component; triggers the enter or exit animation. */
visible: PropTypes.bool,
/** Wait until the first "enter" transition to mount the component (add it to the DOM). */
mountOnShow: PropTypes.bool,
/**
* Callback on each transition that changes visibility to shown.
*
* @param {null}
* @param {object} data - All props with status.
*/
onComplete: PropTypes.func,
/**
* Callback on each transition that changes visibility to hidden.
*
* @param {null}
* @param {object} data - All props with status.
*/
onHide: PropTypes.func,
/**
* Callback on each transition that changes visibility to shown.
*
* @param {null}
* @param {object} data - All props with status.
*/
onShow: PropTypes.func,
/**
* Callback on animation start.
*
* @param {null}
* @param {object} data - All props with status.
*/
onStart: PropTypes.func,
/** React's key of the element. */
reactKey: PropTypes.string,
/** Run the enter animation when the component mounts, if it is initially shown. */
transitionOnMount: PropTypes.bool,
/** Unmount the component (remove it from the DOM) when it is not shown. */
unmountOnHide: PropTypes.bool,
}
Transition.defaultProps = {
animation: 'fade',
duration: 500,
visible: true,
mountOnShow: true,
transitionOnMount: false,
unmountOnHide: false,
}