forked from patternfly/patternfly-react
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExpandableSection.tsx
More file actions
283 lines (256 loc) · 9.54 KB
/
ExpandableSection.tsx
File metadata and controls
283 lines (256 loc) · 9.54 KB
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
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
import { Component, createRef } from 'react';
import styles from '@patternfly/react-styles/css/components/ExpandableSection/expandable-section';
import { css } from '@patternfly/react-styles';
import lineClamp from '@patternfly/react-tokens/dist/esm/c_expandable_section_m_truncate__content_LineClamp';
import AngleRightIcon from '@patternfly/react-icons/dist/esm/icons/angle-right-icon';
import { PickOptional } from '../../helpers/typeUtils';
import { debounce, getUniqueId } from '../../helpers/util';
import { getResizeObserver } from '../../helpers/resizeObserver';
import { Button } from '../Button';
export enum ExpandableSectionVariant {
default = 'default',
truncate = 'truncate'
}
/** The main expandable section component. */
export interface ExpandableSectionProps extends Omit<React.HTMLProps<HTMLDivElement>, 'onToggle'> {
/** Content rendered inside the expandable section. */
children?: React.ReactNode;
/** Additional classes added to the expandable section. */
className?: string;
/** Id of the content of the expandable section. When passing in the isDetached property, this
* property's value should match the contentId property of the expandable section toggle sub-component.
*/
contentId?: string;
/** Id of the toggle of the expandable section, which provides an accessible name to the
* expandable section content via the aria-labelledby attribute. When the isDetached property
* is also passed in, the value of this property must match the toggleId property of the
* expandable section toggle sub-component.
*/
toggleId?: string;
/** Display size variant. Set to "lg" for disclosure styling. */
displaySize?: 'default' | 'lg';
/** Indicates the expandable section has a detached toggle. */
isDetached?: boolean;
/** Flag to indicate if the content is expanded. */
isExpanded?: boolean;
/** Flag to indicate if the content is indented. */
isIndented?: boolean;
/** Flag to indicate the width of the component is limited. Set to "true" for disclosure styling. */
isWidthLimited?: boolean;
/** Callback function to toggle the expandable section. Detached expandable sections should
* use the onToggle property of the expandable section toggle sub-component.
*/
onToggle?: (event: React.MouseEvent, isExpanded: boolean) => void;
/** React node that appears in the attached toggle in place of the toggleText property. */
toggleContent?: React.ReactNode;
/** Text that appears in the attached toggle. */
toggleText?: string;
/** Text that appears in the attached toggle when collapsed (will override toggleText if
* both are specified; used for uncontrolled expandable with dynamic toggle text).
*/
toggleTextCollapsed?: string;
/** Text that appears in the attached toggle when expanded (will override toggleText if
* both are specified; used for uncontrolled expandable with dynamic toggle text).
*/
toggleTextExpanded?: string;
/** Truncates the expandable content to the specified number of lines when using the
* "truncate" variant.
*/
truncateMaxLines?: number;
/** Determines the variant of the expandable section. When passing in "truncate" as the
* variant, the expandable content will be truncated after 3 lines by default.
*/
variant?: 'default' | 'truncate';
}
interface ExpandableSectionState {
isExpanded: boolean;
hasToggle: boolean;
previousWidth: number;
}
const setLineClamp = (lines: number, element: HTMLDivElement) => {
if (!element || lines < 1) {
return;
}
element.style.setProperty(lineClamp.name, lines.toString());
};
class ExpandableSection extends Component<ExpandableSectionProps, ExpandableSectionState> {
static displayName = 'ExpandableSection';
constructor(props: ExpandableSectionProps) {
super(props);
this.state = {
isExpanded: props.isExpanded,
hasToggle: true,
previousWidth: undefined
};
}
expandableContentRef = createRef<HTMLDivElement>();
observer: any = () => {};
static defaultProps: PickOptional<ExpandableSectionProps> = {
className: '',
toggleText: '',
toggleTextExpanded: '',
toggleTextCollapsed: '',
// eslint-disable-next-line @typescript-eslint/no-unused-vars
onToggle: (event, isExpanded): void => undefined,
isDetached: false,
displaySize: 'default',
isWidthLimited: false,
isIndented: false,
variant: 'default'
};
private calculateToggleText(
toggleText: string,
toggleTextExpanded: string,
toggleTextCollapsed: string,
propOrStateIsExpanded: boolean
) {
if (propOrStateIsExpanded && toggleTextExpanded !== '') {
return toggleTextExpanded;
}
if (!propOrStateIsExpanded && toggleTextCollapsed !== '') {
return toggleTextCollapsed;
}
return toggleText;
}
componentDidMount() {
if (this.props.variant === ExpandableSectionVariant.truncate) {
const expandableContent = this.expandableContentRef.current;
this.setState({ previousWidth: expandableContent.offsetWidth });
this.observer = getResizeObserver(expandableContent, this.handleResize, false);
if (this.props.truncateMaxLines) {
setLineClamp(this.props.truncateMaxLines, expandableContent);
}
this.checkToggleVisibility();
}
}
componentDidUpdate(prevProps: ExpandableSectionProps) {
if (
this.props.variant === ExpandableSectionVariant.truncate &&
(prevProps.truncateMaxLines !== this.props.truncateMaxLines || prevProps.children !== this.props.children)
) {
const expandableContent = this.expandableContentRef.current;
setLineClamp(this.props.truncateMaxLines, expandableContent);
this.checkToggleVisibility();
}
}
componentWillUnmount() {
if (this.props.variant === ExpandableSectionVariant.truncate) {
this.observer();
}
}
checkToggleVisibility = () => {
if (this.expandableContentRef?.current) {
const maxLines = this.props.truncateMaxLines || parseInt(lineClamp.value);
const totalLines =
this.expandableContentRef.current.scrollHeight /
parseInt(getComputedStyle(this.expandableContentRef.current).lineHeight);
this.setState({
hasToggle: totalLines > maxLines
});
}
};
resize = () => {
if (this.expandableContentRef.current) {
const { offsetWidth } = this.expandableContentRef.current;
if (this.state.previousWidth !== offsetWidth) {
this.setState({ previousWidth: offsetWidth });
this.checkToggleVisibility();
}
}
};
handleResize = debounce(this.resize, 250);
render() {
const {
onToggle: onToggleProp,
className,
toggleText,
toggleTextExpanded,
toggleTextCollapsed,
toggleContent,
children,
isExpanded,
isDetached,
displaySize,
isWidthLimited,
isIndented,
contentId,
toggleId,
variant,
// eslint-disable-next-line @typescript-eslint/no-unused-vars
truncateMaxLines,
...props
} = this.props;
if (isDetached && !toggleId) {
/* eslint-disable no-console */
console.warn(
'ExpandableSection: The toggleId value must be passed in and must match the toggleId of the ExpandableSectionToggle.'
);
}
let onToggle = onToggleProp;
let propOrStateIsExpanded = isExpanded;
const uniqueContentId = contentId || getUniqueId('expandable-section-content');
const uniqueToggleId = toggleId || getUniqueId('expandable-section-toggle');
// uncontrolled
if (isExpanded === undefined) {
propOrStateIsExpanded = this.state.isExpanded;
onToggle = (event, isOpen) => {
this.setState({ isExpanded: isOpen }, () => onToggleProp(event, this.state.isExpanded));
};
}
const computedToggleText = this.calculateToggleText(
toggleText,
toggleTextExpanded,
toggleTextCollapsed,
propOrStateIsExpanded
);
const expandableToggle = !isDetached && (
<div className={`${styles.expandableSection}__toggle`}>
<Button
variant="link"
{...(variant === ExpandableSectionVariant.truncate && { isInline: true })}
aria-expanded={propOrStateIsExpanded}
aria-controls={uniqueContentId}
id={uniqueToggleId}
onClick={(event) => onToggle(event, !propOrStateIsExpanded)}
{...(variant !== ExpandableSectionVariant.truncate && {
icon: (
<span className={css(styles.expandableSectionToggleIcon)}>
<AngleRightIcon />
</span>
)
})}
>
{toggleContent || computedToggleText}
</Button>
</div>
);
return (
<div
className={css(
styles.expandableSection,
propOrStateIsExpanded && styles.modifiers.expanded,
displaySize === 'lg' && styles.modifiers.displayLg,
isWidthLimited && styles.modifiers.limitWidth,
isIndented && styles.modifiers.indented,
variant === ExpandableSectionVariant.truncate && styles.modifiers.truncate,
className
)}
{...props}
>
{variant === ExpandableSectionVariant.default && expandableToggle}
<div
ref={this.expandableContentRef}
className={css(styles.expandableSectionContent)}
hidden={variant !== ExpandableSectionVariant.truncate && !propOrStateIsExpanded}
id={uniqueContentId}
aria-labelledby={uniqueToggleId}
role="region"
>
{children}
</div>
{variant === ExpandableSectionVariant.truncate && this.state.hasToggle && expandableToggle}
</div>
);
}
}
export { ExpandableSection };