-
-
Notifications
You must be signed in to change notification settings - Fork 32.5k
/
Copy pathStep.js
192 lines (176 loc) · 5.29 KB
/
Step.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
'use client';
import * as React from 'react';
import PropTypes from 'prop-types';
import clsx from 'clsx';
import integerPropType from '@mui/utils/integerPropType';
import composeClasses from '@mui/utils/composeClasses';
import StepperContext from '../Stepper/StepperContext';
import StepContext from './StepContext';
import { styled } from '../zero-styled';
import { useDefaultProps } from '../DefaultPropsProvider';
import { getStepUtilityClass } from './stepClasses';
const useUtilityClasses = (ownerState) => {
const { classes, orientation, alternativeLabel, completed } = ownerState;
const slots = {
root: ['root', orientation, alternativeLabel && 'alternativeLabel', completed && 'completed'],
};
return composeClasses(slots, getStepUtilityClass, classes);
};
const StepRoot = styled('div', {
name: 'MuiStep',
slot: 'Root',
overridesResolver: (props, styles) => {
const { ownerState } = props;
return [
styles.root,
styles[ownerState.orientation],
ownerState.alternativeLabel && styles.alternativeLabel,
ownerState.completed && styles.completed,
];
},
})({
variants: [
{
props: { orientation: 'horizontal' },
style: {
paddingLeft: 8,
paddingRight: 8,
},
},
{
props: { alternativeLabel: true },
style: {
flex: 1,
position: 'relative',
},
},
],
});
const Step = React.forwardRef(function Step(inProps, ref) {
const props = useDefaultProps({ props: inProps, name: 'MuiStep' });
const {
active: activeProp,
children,
className,
component = 'div',
completed: completedProp,
disabled: disabledProp,
expanded = false,
index,
last,
...other
} = props;
const { activeStep, connector, alternativeLabel, orientation, nonLinear } =
React.useContext(StepperContext);
let [active = false, completed = false, disabled = false] = [
activeProp,
completedProp,
disabledProp,
];
if (activeStep === index) {
active = activeProp !== undefined ? activeProp : true;
} else if (!nonLinear && activeStep > index) {
completed = completedProp !== undefined ? completedProp : true;
} else if (!nonLinear && activeStep < index) {
disabled = disabledProp !== undefined ? disabledProp : true;
}
const contextValue = React.useMemo(
() => ({ index, last, expanded, icon: index + 1, active, completed, disabled }),
[index, last, expanded, active, completed, disabled],
);
const ownerState = {
...props,
active,
orientation,
alternativeLabel,
completed,
disabled,
expanded,
component,
};
const classes = useUtilityClasses(ownerState);
const newChildren = (
<StepRoot
as={component}
className={clsx(classes.root, className)}
ref={ref}
ownerState={ownerState}
{...other}
>
{connector && alternativeLabel && index !== 0 ? connector : null}
{children}
</StepRoot>
);
return (
<StepContext.Provider value={contextValue}>
{connector && !alternativeLabel && index !== 0 ? (
<React.Fragment>
{connector}
{newChildren}
</React.Fragment>
) : (
newChildren
)}
</StepContext.Provider>
);
});
Step.propTypes /* remove-proptypes */ = {
// ┌────────────────────────────── Warning ──────────────────────────────┐
// │ These PropTypes are generated from the TypeScript type definitions. │
// │ To update them, edit the d.ts file and run `pnpm proptypes`. │
// └─────────────────────────────────────────────────────────────────────┘
/**
* Sets the step as active. Is passed to child components.
*/
active: PropTypes.bool,
/**
* Should be `Step` sub-components such as `StepLabel`, `StepContent`.
*/
children: PropTypes.node,
/**
* Override or extend the styles applied to the component.
*/
classes: PropTypes.object,
/**
* @ignore
*/
className: PropTypes.string,
/**
* Mark the step as completed. Is passed to child components.
*/
completed: PropTypes.bool,
/**
* The component used for the root node.
* Either a string to use a HTML element or a component.
*/
component: PropTypes.elementType,
/**
* If `true`, the step is disabled, will also disable the button if
* `StepButton` is a child of `Step`. Is passed to child components.
*/
disabled: PropTypes.bool,
/**
* Expand the step.
* @default false
*/
expanded: PropTypes.bool,
/**
* The position of the step.
* The prop defaults to the value inherited from the parent Stepper component.
*/
index: integerPropType,
/**
* If `true`, the Step is displayed as rendered last.
* The prop defaults to the value inherited from the parent Stepper component.
*/
last: PropTypes.bool,
/**
* The system prop that allows defining system overrides as well as additional CSS styles.
*/
sx: PropTypes.oneOfType([
PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])),
PropTypes.func,
PropTypes.object,
]),
};
export default Step;