-
-
Notifications
You must be signed in to change notification settings - Fork 32.5k
/
Copy pathSpeedDial.js
375 lines (343 loc) · 10.2 KB
/
SpeedDial.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
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
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
import React from 'react';
import PropTypes from 'prop-types';
import clsx from 'clsx';
import keycode from 'keycode';
import warning from 'warning';
import { duration, withStyles } from '@material-ui/core/styles';
import Zoom from '@material-ui/core/Zoom';
import Fab from '@material-ui/core/Fab';
import { isMuiElement, setRef, withForwardedRef } from '@material-ui/core/utils';
import * as utils from './utils';
import { clamp } from '../utils';
const dialRadius = 32;
const spacingActions = 16;
export const styles = {
/* Styles applied to the root element. */
root: {
zIndex: 1050,
display: 'flex',
pointerEvents: 'none',
},
/* Styles applied to the Button component. */
fab: {
pointerEvents: 'auto',
},
/* Styles applied to the root and action container elements when direction="up" */
directionUp: {
flexDirection: 'column-reverse',
},
/* Styles applied to the root and action container elements when direction="down" */
directionDown: {
flexDirection: 'column',
},
/* Styles applied to the root and action container elements when direction="left" */
directionLeft: {
flexDirection: 'row-reverse',
},
/* Styles applied to the root and action container elements when direction="right" */
directionRight: {
flexDirection: 'row',
},
/* Styles applied to the actions (`children` wrapper) element. */
actions: {
display: 'flex',
pointerEvents: 'auto',
'&$directionUp': {
marginBottom: -dialRadius,
paddingBottom: spacingActions + dialRadius,
},
'&$directionRight': {
marginLeft: -dialRadius,
paddingLeft: spacingActions + dialRadius,
},
'&$directionDown': {
marginTop: -dialRadius,
paddingTop: spacingActions + dialRadius,
},
'&$directionLeft': {
marginRight: -dialRadius,
paddingRight: spacingActions + dialRadius,
},
},
/* Styles applied to the actions (`children` wrapper) element if `open={false}`. */
actionsClosed: {
transition: 'top 0s linear 0.2s',
pointerEvents: 'none',
},
};
class SpeedDial extends React.Component {
/**
* an index in this.actions
*/
focusedAction = 0;
/**
* pressing this key while the focus is on a child SpeedDialAction focuses
* the next SpeedDialAction.
* It is equal to the first arrow key pressed while focus is on the SpeedDial
* that is not orthogonal to the direction.
* @type {utils.ArrowKey?}
*/
nextItemArrowKey = undefined;
/**
* refs to the Button that have an action associated to them in this SpeedDial
* [Fab, ...(SpeedDialActions > Button)]
* @type {HTMLButtonElement[]}
*/
actions = [];
handleKeyboardNavigation = event => {
const key = keycode(event);
const { direction, onKeyDown } = this.props;
const { focusedAction, nextItemArrowKey = key } = this;
if (key === 'esc') {
this.closeActions(event, key);
} else if (utils.sameOrientation(key, direction)) {
event.preventDefault();
const actionStep = key === nextItemArrowKey ? 1 : -1;
// stay within array indices
const nextAction = clamp(focusedAction + actionStep, 0, this.actions.length - 1);
const nextActionRef = this.actions[nextAction];
nextActionRef.focus();
this.focusedAction = nextAction;
this.nextItemArrowKey = nextItemArrowKey;
}
if (onKeyDown) {
onKeyDown(event, key);
}
};
/**
* creates a ref callback for the Button in a SpeedDialAction
* Is called before the original ref callback for Button that was set in buttonProps
*
* @param dialActionIndex {number}
* @param origButtonRef {React.RefObject?}
*/
createHandleSpeedDialActionButtonRef(dialActionIndex, origButtonRef) {
return ref => {
this.actions[dialActionIndex + 1] = ref;
if (origButtonRef) {
origButtonRef(ref);
}
};
}
closeActions(event, key) {
const { onClose } = this.props;
this.actions[0].focus();
this.setState(SpeedDial.initialNavigationState);
if (onClose) {
onClose(event, key);
}
}
render() {
const {
ariaLabel,
ButtonProps: { ref: origDialButtonRef, ...ButtonProps } = {},
children: childrenProp,
classes,
className: classNameProp,
hidden,
icon: iconProp,
innerRef,
onClick,
onClose,
onKeyDown,
open,
direction,
openIcon,
TransitionComponent,
transitionDuration,
TransitionProps,
...other
} = this.props;
// actions were closed while navigation state was not reset
if (!open && this.nextItemArrowKey !== undefined) {
this.focusedAction = 0;
this.nextItemArrowKey = undefined;
}
// Filter the label for valid id characters.
const id = ariaLabel.replace(/^[^a-z]+|[^\w:.-]+/gi, '');
const orientation = utils.getOrientation(direction);
let totalValidChildren = 0;
React.Children.forEach(childrenProp, child => {
if (React.isValidElement(child)) totalValidChildren += 1;
});
this.actions = [];
let validChildCount = 0;
const children = React.Children.map(childrenProp, child => {
if (!React.isValidElement(child)) {
return null;
}
warning(
child.type !== React.Fragment,
[
"Material-UI: the SpeedDial component doesn't accept a Fragment as a child.",
'Consider providing an array instead.',
].join('\n'),
);
const delay = 30 * (open ? validChildCount : totalValidChildren - validChildCount);
validChildCount += 1;
const { ButtonProps: { ref: origButtonRef, ...ChildButtonProps } = {} } = child.props;
const NewChildButtonProps = {
...ChildButtonProps,
ref: this.createHandleSpeedDialActionButtonRef(validChildCount - 1, origButtonRef),
};
return React.cloneElement(child, {
ButtonProps: NewChildButtonProps,
delay,
onKeyDown: this.handleKeyboardNavigation,
open,
id: `${id}-item-${validChildCount}`,
});
});
const icon = () => {
if (React.isValidElement(iconProp) && isMuiElement(iconProp, ['SpeedDialIcon'])) {
return React.cloneElement(iconProp, { open });
}
return iconProp;
};
const actionsPlacementClass = {
[classes.directionUp]: direction === 'up',
[classes.directionDown]: direction === 'down',
[classes.directionLeft]: direction === 'left',
[classes.directionRight]: direction === 'right',
};
let clickProp = { onClick };
if (typeof document !== 'undefined' && 'ontouchstart' in document.documentElement) {
clickProp = { onTouchEnd: onClick };
}
return (
<div
className={clsx(classes.root, actionsPlacementClass, classNameProp)}
ref={innerRef}
{...other}
>
<TransitionComponent
in={!hidden}
timeout={transitionDuration}
unmountOnExit
{...TransitionProps}
>
<Fab
color="primary"
onKeyDown={this.handleKeyboardNavigation}
aria-label={ariaLabel}
aria-haspopup="true"
aria-expanded={open ? 'true' : 'false'}
aria-controls={`${id}-actions`}
{...clickProp}
{...ButtonProps}
className={clsx(classes.fab, ButtonProps.className)}
ref={ref => {
this.actions[0] = ref;
setRef(origDialButtonRef, ref);
}}
>
{icon()}
</Fab>
</TransitionComponent>
<div
id={`${id}-actions`}
role="menu"
aria-orientation={orientation}
className={clsx(
classes.actions,
{ [classes.actionsClosed]: !open },
actionsPlacementClass,
)}
>
{children}
</div>
</div>
);
}
}
SpeedDial.propTypes = {
/**
* The aria-label of the `Button` element.
* Also used to provide the `id` for the `SpeedDial` element and its children.
*/
ariaLabel: PropTypes.string.isRequired,
/**
* Properties applied to the [`Button`](/api/button/) element.
*/
ButtonProps: PropTypes.object,
/**
* SpeedDialActions to display when the SpeedDial is `open`.
*/
children: PropTypes.node.isRequired,
/**
* Override or extend the styles applied to the component.
* See [CSS API](#css) below for more details.
*/
classes: PropTypes.object.isRequired,
/**
* @ignore
*/
className: PropTypes.string,
/**
* The direction the actions open relative to the floating action button.
*/
direction: PropTypes.oneOf(['up', 'down', 'left', 'right']),
/**
* If `true`, the SpeedDial will be hidden.
*/
hidden: PropTypes.bool,
/**
* The icon to display in the SpeedDial Floating Action Button. The `SpeedDialIcon` component
* provides a default Icon with animation.
*/
icon: PropTypes.element.isRequired,
/**
* @ignore
* from `withForwardRef`
*/
innerRef: PropTypes.oneOfType([PropTypes.func, PropTypes.object]),
/**
* @ignore
*/
onClick: PropTypes.func,
/**
* Callback fired when the component requests to be closed.
*
* @param {object} event The event source of the callback
* @param {string} key The key pressed
*/
onClose: PropTypes.func,
/**
* @ignore
*/
onKeyDown: PropTypes.func,
/**
* If `true`, the SpeedDial is open.
*/
open: PropTypes.bool.isRequired,
/**
* The icon to display in the SpeedDial Floating Action Button when the SpeedDial is open.
*/
openIcon: PropTypes.node,
/**
* The component used for the transition.
*/
TransitionComponent: PropTypes.elementType,
/**
* The duration for the transition, in milliseconds.
* You may specify a single timeout for all transitions, or individually with an object.
*/
transitionDuration: PropTypes.oneOfType([
PropTypes.number,
PropTypes.shape({ enter: PropTypes.number, exit: PropTypes.number }),
]),
/**
* Properties applied to the `Transition` element.
*/
TransitionProps: PropTypes.object,
};
SpeedDial.defaultProps = {
hidden: false,
direction: 'up',
TransitionComponent: Zoom,
transitionDuration: {
enter: duration.enteringScreen,
exit: duration.leavingScreen,
},
};
export default withStyles(styles, { name: 'MuiSpeedDial' })(withForwardedRef(SpeedDial));