-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathExpandableContent.jsx
256 lines (211 loc) · 6.04 KB
/
ExpandableContent.jsx
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
253
254
255
256
/**
* @component
*/
import classnames from 'clsx';
import PropTypes from 'prop-types';
import React, { Component } from 'react';
import insertStyle from '../../utils/insertStyle';
import isInteger from '../../utils/isInteger';
const CLOSED = 0;
const PRE_CLOSING = 4;
const CLOSING = 1;
const OPENING = 2;
const OPENED = 3;
const DEFAULT_OPEN_TIMEOUT = 500;
const DEFAULT_CLOSE_TIMEOUT = 500;
const DEFAULT_CLASSNAME = 'expandable_content';
const DEFAULT_CLASSNAMES = {
opened: 'animation__accordion--open',
opening: 'animation__accordion--open',
closed: 'animation__accordion--close',
closing: 'animation__accordion--close',
};
const DEFAULT_TIMEOUTS = {
opening: DEFAULT_OPEN_TIMEOUT,
closing: DEFAULT_CLOSE_TIMEOUT,
};
/**
* A collapsible section that reveals its children with a height transition.
*/
export default class ExpandableContent extends Component {
static getMaxHeight(state, style) {
if (state === PRE_CLOSING) {
return null;
}
if (state === CLOSED || state === CLOSING) {
return '0px';
}
if (style && style.maxHeight) {
return style.maxHeight;
}
if (state === OPENING) {
return '9999px';
}
return 'initial';
}
static getClassNames(state, classNames) {
if (!classNames) {
return null;
}
if (
(state === CLOSING || state === PRE_CLOSING) &&
classNames.closing
) {
return classNames.closing;
}
if (state === CLOSED && classNames.closed) {
return classNames.closed;
}
if (state === OPENING && classNames.opening) {
return classNames.opening;
}
if (state === OPENED && classNames.opened) {
return classNames.opened;
}
return null;
}
constructor(props) {
super(props);
this.state = {
currentState: props.open ? OPENED : CLOSED,
};
this.contentRendered = props.open;
}
componentDidMount() {
insertStyle(
'expandable_content',
'.expandable_content { max-height: 9999px; }'
);
}
componentDidUpdate(prevProps) {
const { open, timeout } = this.props;
if (open === prevProps.open) {
return;
}
if (open) {
this.open(timeout && timeout.opening);
} else {
this.close(timeout && timeout.closing);
}
}
open(timeout) {
clearTimeout(this.timeout);
this.setState({
currentState: OPENING,
});
this.timeout = window.setTimeout(
() => {
this.setState({
currentState: OPENED,
});
},
isInteger(timeout) ? timeout : DEFAULT_OPEN_TIMEOUT
);
this.contentRendered = true;
}
close(timeout) {
clearTimeout(this.timeout);
requestAnimationFrame(() => {
this.setState({
currentState: PRE_CLOSING,
});
this.timeout = requestAnimationFrame(() => {
this.setState({
currentState: CLOSING,
});
});
this.timeout = window.setTimeout(
() => {
this.setState({
currentState: CLOSED,
});
},
isInteger(timeout) ? timeout : DEFAULT_CLOSE_TIMEOUT
);
});
}
render() {
const {
style,
className,
classNames,
open,
timeout,
children,
removeContentClosed,
...props
} = this.props;
const { currentState } = this.state;
const divStyle = {
...style,
overflow: (style && style.overflow) || 'hidden',
maxHeight: ExpandableContent.getMaxHeight(currentState, style),
};
const newClassNames = classnames(
className,
classNames === DEFAULT_CLASSNAMES ? DEFAULT_CLASSNAME : null,
ExpandableContent.getClassNames(currentState, classNames)
);
return (
<div style={divStyle} className={newClassNames} {...props}>
{(currentState !== CLOSED ||
(this.contentRendered && !removeContentClosed)) &&
children}
</div>
);
}
}
ExpandableContent.propTypes = {
/**
* An object of classname strings that should be applied in the different
* states.
*/
classNames: PropTypes.shape({
opening: PropTypes.string,
opened: PropTypes.string,
closing: PropTypes.string,
closed: PropTypes.string,
}),
/**
* This controls the animation timeouts for opening and closing.
*/
timeout: PropTypes.shape({
opening: PropTypes.number,
closing: PropTypes.number,
}),
/**
* Wether the content should be visible. If changed, a height transition
* will start.
*/
open: PropTypes.bool.isRequired,
/**
* A React style object that is passed to the wrapper `<div>`-element.
*/
style: PropTypes.objectOf(
PropTypes.oneOfType([PropTypes.string, PropTypes.number])
),
/**
* A classname string that is applied to the wrapper element.
*/
className: PropTypes.string,
/**
* The children of the component.
*/
children: PropTypes.oneOfType([
PropTypes.node,
PropTypes.arrayOf(PropTypes.node),
]).isRequired,
/**
* Wether the content should be removed when the component is closed and the
* content would not be visible anyways.
*/
removeContentClosed: PropTypes.bool,
};
ExpandableContent.defaultProps = {
classNames: DEFAULT_CLASSNAMES,
timeout: DEFAULT_TIMEOUTS,
style: null,
className: null,
removeContentClosed: false,
};
ExpandableContent.displayName = 'ExpandableContent';