-
Notifications
You must be signed in to change notification settings - Fork 392
Expand file tree
/
Copy pathClipboardCopy.tsx
More file actions
280 lines (269 loc) · 9.78 KB
/
Copy pathClipboardCopy.tsx
File metadata and controls
280 lines (269 loc) · 9.78 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
import * as React from 'react';
import styles from '@patternfly/react-styles/css/components/ClipboardCopy/clipboard-copy';
import { css } from '@patternfly/react-styles';
import { PickOptional } from '../../helpers/typeUtils';
import { TooltipPosition } from '../Tooltip';
import { TextInput } from '../TextInput';
import { GenerateId } from '../../helpers/GenerateId/GenerateId';
import { ClipboardCopyButton } from './ClipboardCopyButton';
import { ClipboardCopyToggle } from './ClipboardCopyToggle';
import { ClipboardCopyExpanded } from './ClipboardCopyExpanded';
import { getOUIAProps, OUIAProps } from '../../helpers';
export const clipboardCopyFunc = (event: React.ClipboardEvent<HTMLDivElement>, text?: React.ReactNode) => {
navigator.clipboard.writeText(text.toString());
};
export enum ClipboardCopyVariant {
inline = 'inline',
expansion = 'expansion',
inlineCompact = 'inline-compact'
}
export interface ClipboardCopyState {
text: string | number;
expanded: boolean;
copied: boolean;
}
export interface ClipboardCopyProps extends Omit<React.HTMLProps<HTMLDivElement>, 'onChange'>, OUIAProps {
/** Additional classes added to the clipboard copy container. */
className?: string;
/** Tooltip message to display when hover the copy button */
hoverTip?: string;
/** Tooltip message to display when clicking the copy button */
clickTip?: string;
/** Aria-label to use on the TextInput. */
textAriaLabel?: string;
/** Aria-label to use on the ClipboardCopyToggle. */
toggleAriaLabel?: string;
/** Flag to show if the input is read only. */
isReadOnly?: boolean;
/** Flag to determine if clipboard copy is in the expanded state initially */
isExpanded?: boolean;
/** Flag to determine if clipboard copy content includes code */
isCode?: boolean;
/** Flag to determine if inline clipboard copy should be block styling */
isBlock?: boolean;
/** Adds Clipboard Copy variant styles. */
variant?: typeof ClipboardCopyVariant | 'inline' | 'expansion' | 'inline-compact';
/** Copy button tooltip position. */
position?:
| TooltipPosition
| 'auto'
| 'top'
| 'bottom'
| 'left'
| 'right'
| 'top-start'
| 'top-end'
| 'bottom-start'
| 'bottom-end'
| 'left-start'
| 'left-end'
| 'right-start'
| 'right-end';
/** Maximum width of the tooltip (default 150px). */
maxWidth?: string;
/** Delay in ms before the tooltip disappears. */
exitDelay?: number;
/** Delay in ms before the tooltip appears. */
entryDelay?: number;
/** A function that is triggered on clicking the copy button. */
onCopy?: (event: React.ClipboardEvent<HTMLDivElement>, text?: React.ReactNode) => void;
/** A function that is triggered on changing the text. */
onChange?: (event: React.FormEvent, text?: string | number) => void;
/** The text which is copied. */
children: React.ReactNode;
/** Additional actions for inline clipboard copy. Should be wrapped with ClipboardCopyAction. */
additionalActions?: React.ReactNode;
/** Value to overwrite the randomly generated data-ouia-component-id.*/
ouiaId?: number | string;
/** Set the value of data-ouia-safe. Only set to true when the component is in a static state, i.e. no animations are occurring. At all other times, this value must be false. */
ouiaSafe?: boolean;
}
export class ClipboardCopy extends React.Component<ClipboardCopyProps, ClipboardCopyState> {
static displayName = 'ClipboardCopy';
timer = null as number;
constructor(props: ClipboardCopyProps) {
super(props);
this.state = {
text: Array.isArray(this.props.children)
? this.props.children.join('')
: (this.props.children as string | number),
expanded: this.props.isExpanded,
copied: false
};
}
static defaultProps: PickOptional<ClipboardCopyProps> = {
hoverTip: 'Copy to clipboard',
clickTip: 'Successfully copied to clipboard!',
isReadOnly: false,
isExpanded: false,
isCode: false,
variant: 'inline',
position: TooltipPosition.top,
maxWidth: '150px',
exitDelay: 1500,
entryDelay: 300,
onCopy: clipboardCopyFunc,
onChange: (): any => undefined,
textAriaLabel: 'Copyable input',
toggleAriaLabel: 'Show content',
additionalActions: null,
ouiaSafe: true
};
// eslint-disable-next-line @typescript-eslint/no-unused-vars
componentDidUpdate = (prevProps: ClipboardCopyProps, prevState: ClipboardCopyState) => {
if (prevProps.children !== this.props.children) {
this.setState({ text: this.props.children as string | number });
}
};
componentWillUnmount = () => {
if (this.timer) {
window.clearTimeout(this.timer);
}
};
// eslint-disable-next-line @typescript-eslint/no-unused-vars
expandContent = (_event: React.MouseEvent<Element, MouseEvent>) => {
this.setState(prevState => ({
expanded: !prevState.expanded
}));
};
updateText = (text: string | number, event: React.FormEvent) => {
this.setState({ text });
this.props.onChange(event, text);
};
render = () => {
const {
/* eslint-disable @typescript-eslint/no-unused-vars */
isExpanded,
onChange, // Don't pass to <div>
/* eslint-enable @typescript-eslint/no-unused-vars */
isReadOnly,
isCode,
isBlock,
exitDelay,
maxWidth,
entryDelay,
onCopy,
hoverTip,
clickTip,
textAriaLabel,
toggleAriaLabel,
variant,
position,
className,
additionalActions,
ouiaId,
ouiaSafe,
...divProps
} = this.props;
const textIdPrefix = 'text-input-';
const toggleIdPrefix = 'toggle-';
const contentIdPrefix = 'content-';
return (
<div
className={css(
styles.clipboardCopy,
variant === 'inline-compact' && styles.modifiers.inline,
isBlock && styles.modifiers.block,
this.state.expanded && styles.modifiers.expanded,
className
)}
{...divProps}
{...getOUIAProps(ClipboardCopy.displayName, ouiaId, ouiaSafe)}
>
{variant === 'inline-compact' && (
<GenerateId prefix="">
{id => (
<React.Fragment>
{!isCode && (
<span className={css(styles.clipboardCopyText)} id={`${textIdPrefix}${id}`}>
{this.state.text}
</span>
)}
{isCode && (
<code className={css(styles.clipboardCopyText, styles.modifiers.code)} id={`${textIdPrefix}${id}`}>
{this.state.text}
</code>
)}
<span className={css(styles.clipboardCopyActions)}>
<span className={css(styles.clipboardCopyActionsItem)}>
<ClipboardCopyButton
variant="plain"
exitDelay={exitDelay}
entryDelay={entryDelay}
maxWidth={maxWidth}
position={position}
id={`copy-button-${id}`}
textId={`text-input-${id}`}
aria-label={hoverTip}
onClick={(event: any) => {
onCopy(event, this.state.text);
this.setState({ copied: true });
}}
onTooltipHidden={() => this.setState({ copied: false })}
>
{this.state.copied ? clickTip : hoverTip}
</ClipboardCopyButton>
</span>
{additionalActions && additionalActions}
</span>
</React.Fragment>
)}
</GenerateId>
)}
{variant !== 'inline-compact' && (
<GenerateId prefix="">
{id => (
<React.Fragment>
<div className={css(styles.clipboardCopyGroup)}>
{variant === 'expansion' && (
<ClipboardCopyToggle
isExpanded={this.state.expanded}
onClick={this.expandContent}
id={`${toggleIdPrefix}${id}`}
textId={`${textIdPrefix}${id}`}
contentId={`${contentIdPrefix}${id}`}
aria-label={toggleAriaLabel}
/>
)}
<TextInput
isReadOnly={isReadOnly || this.state.expanded}
onChange={this.updateText}
value={this.state.text as string | number}
id={`text-input-${id}`}
aria-label={textAriaLabel}
/>
<ClipboardCopyButton
exitDelay={exitDelay}
entryDelay={entryDelay}
maxWidth={maxWidth}
position={position}
id={`copy-button-${id}`}
textId={`text-input-${id}`}
aria-label={hoverTip}
onClick={(event: any) => {
onCopy(event, this.state.text);
this.setState({ copied: true });
}}
onTooltipHidden={() => this.setState({ copied: false })}
>
{this.state.copied ? clickTip : hoverTip}
</ClipboardCopyButton>
</div>
{this.state.expanded && (
<ClipboardCopyExpanded
isReadOnly={isReadOnly}
isCode={isCode}
id={`content-${id}`}
onChange={(event, text) => this.updateText(text, event)}
>
{this.state.text}
</ClipboardCopyExpanded>
)}
</React.Fragment>
)}
</GenerateId>
)}
</div>
);
};
}