bc518174
王天杨
提交两个项目文件
|
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
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
|
'use client';
import * as React from 'react';
import PropTypes from 'prop-types';
import clsx from 'clsx';
import composeClasses from '@mui/utils/composeClasses';
import { useRtl } from '@mui/system/RtlProvider';
import { keyframes, css, styled } from "../zero-styled/index.js";
import memoTheme from "../utils/memoTheme.js";
import createSimplePaletteValueFilter from "../utils/createSimplePaletteValueFilter.js";
import { useDefaultProps } from "../DefaultPropsProvider/index.js";
import capitalize from "../utils/capitalize.js";
import { getLinearProgressUtilityClass } from "./linearProgressClasses.js";
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
const TRANSITION_DURATION = 4; // seconds
const indeterminate1Keyframe = keyframes`
0% {
left: -35%;
right: 100%;
}
60% {
left: 100%;
right: -90%;
}
100% {
left: 100%;
right: -90%;
}
`;
// This implementation is for supporting both Styled-components v4+ and Pigment CSS.
// A global animation has to be created here for Styled-components v4+ (https://github.com/styled-components/styled-components/blob/main/packages/styled-components/src/utils/errors.md#12).
// which can be done by checking typeof indeterminate1Keyframe !== 'string' (at runtime, Pigment CSS transform keyframes`` to a string).
const indeterminate1Animation = typeof indeterminate1Keyframe !== 'string' ? css`
animation: ${indeterminate1Keyframe} 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
` : null;
const indeterminate2Keyframe = keyframes`
0% {
left: -200%;
right: 100%;
}
60% {
left: 107%;
right: -8%;
}
100% {
left: 107%;
right: -8%;
}
`;
const indeterminate2Animation = typeof indeterminate2Keyframe !== 'string' ? css`
animation: ${indeterminate2Keyframe} 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) 1.15s infinite;
` : null;
const bufferKeyframe = keyframes`
0% {
opacity: 1;
background-position: 0 -23px;
}
60% {
opacity: 0;
background-position: 0 -23px;
}
100% {
opacity: 1;
background-position: -200px -23px;
}
`;
const bufferAnimation = typeof bufferKeyframe !== 'string' ? css`
animation: ${bufferKeyframe} 3s infinite linear;
` : null;
const useUtilityClasses = ownerState => {
const {
classes,
variant,
color
} = ownerState;
const slots = {
root: ['root', `color${capitalize(color)}`, variant],
dashed: ['dashed', `dashedColor${capitalize(color)}`],
bar1: ['bar', 'bar1', `barColor${capitalize(color)}`, (variant === 'indeterminate' || variant === 'query') && 'bar1Indeterminate', variant === 'determinate' && 'bar1Determinate', variant === 'buffer' && 'bar1Buffer'],
bar2: ['bar', 'bar2', variant !== 'buffer' && `barColor${capitalize(color)}`, variant === 'buffer' && `color${capitalize(color)}`, (variant === 'indeterminate' || variant === 'query') && 'bar2Indeterminate', variant === 'buffer' && 'bar2Buffer']
};
return composeClasses(slots, getLinearProgressUtilityClass, classes);
};
const getColorShade = (theme, color) => {
if (theme.vars) {
return theme.vars.palette.LinearProgress[`${color}Bg`];
}
return theme.palette.mode === 'light' ? theme.lighten(theme.palette[color].main, 0.62) : theme.darken(theme.palette[color].main, 0.5);
};
const LinearProgressRoot = styled('span', {
name: 'MuiLinearProgress',
slot: 'Root',
overridesResolver: (props, styles) => {
const {
ownerState
} = props;
return [styles.root, styles[`color${capitalize(ownerState.color)}`], styles[ownerState.variant]];
}
})(memoTheme(({
theme
}) => ({
position: 'relative',
overflow: 'hidden',
display: 'block',
height: 4,
// Fix Safari's bug during composition of different paint.
zIndex: 0,
'@media print': {
colorAdjust: 'exact'
},
variants: [...Object.entries(theme.palette).filter(createSimplePaletteValueFilter()).map(([color]) => ({
props: {
color
},
style: {
backgroundColor: getColorShade(theme, color)
}
})), {
props: ({
ownerState
}) => ownerState.color === 'inherit' && ownerState.variant !== 'buffer',
style: {
'&::before': {
content: '""',
position: 'absolute',
left: 0,
top: 0,
right: 0,
bottom: 0,
backgroundColor: 'currentColor',
opacity: 0.3
}
}
}, {
props: {
variant: 'buffer'
},
style: {
backgroundColor: 'transparent'
}
}, {
props: {
variant: 'query'
},
style: {
transform: 'rotate(180deg)'
}
}]
})));
const LinearProgressDashed = styled('span', {
name: 'MuiLinearProgress',
slot: 'Dashed',
overridesResolver: (props, styles) => {
const {
ownerState
} = props;
return [styles.dashed, styles[`dashedColor${capitalize(ownerState.color)}`]];
}
})(memoTheme(({
theme
}) => ({
position: 'absolute',
marginTop: 0,
height: '100%',
width: '100%',
backgroundSize: '10px 10px',
backgroundPosition: '0 -23px',
variants: [{
props: {
color: 'inherit'
},
style: {
opacity: 0.3,
backgroundImage: `radial-gradient(currentColor 0%, currentColor 16%, transparent 42%)`
}
}, ...Object.entries(theme.palette).filter(createSimplePaletteValueFilter()).map(([color]) => {
const backgroundColor = getColorShade(theme, color);
return {
props: {
color
},
style: {
backgroundImage: `radial-gradient(${backgroundColor} 0%, ${backgroundColor} 16%, transparent 42%)`
}
};
})]
})), bufferAnimation || {
// At runtime for Pigment CSS, `bufferAnimation` will be null and the generated keyframe will be used.
animation: `${bufferKeyframe} 3s infinite linear`
});
const LinearProgressBar1 = styled('span', {
name: 'MuiLinearProgress',
slot: 'Bar1',
overridesResolver: (props, styles) => {
const {
ownerState
} = props;
return [styles.bar, styles.bar1, styles[`barColor${capitalize(ownerState.color)}`], (ownerState.variant === 'indeterminate' || ownerState.variant === 'query') && styles.bar1Indeterminate, ownerState.variant === 'determinate' && styles.bar1Determinate, ownerState.variant === 'buffer' && styles.bar1Buffer];
}
})(memoTheme(({
theme
}) => ({
width: '100%',
position: 'absolute',
left: 0,
bottom: 0,
top: 0,
transition: 'transform 0.2s linear',
transformOrigin: 'left',
variants: [{
props: {
color: 'inherit'
},
style: {
backgroundColor: 'currentColor'
}
}, ...Object.entries(theme.palette).filter(createSimplePaletteValueFilter()).map(([color]) => ({
props: {
color
},
style: {
backgroundColor: (theme.vars || theme).palette[color].main
}
})), {
props: {
variant: 'determinate'
},
style: {
transition: `transform .${TRANSITION_DURATION}s linear`
}
}, {
props: {
variant: 'buffer'
},
style: {
zIndex: 1,
transition: `transform .${TRANSITION_DURATION}s linear`
}
}, {
props: ({
ownerState
}) => ownerState.variant === 'indeterminate' || ownerState.variant === 'query',
style: {
width: 'auto'
}
}, {
props: ({
ownerState
}) => ownerState.variant === 'indeterminate' || ownerState.variant === 'query',
style: indeterminate1Animation || {
animation: `${indeterminate1Keyframe} 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite`
}
}]
})));
const LinearProgressBar2 = styled('span', {
name: 'MuiLinearProgress',
slot: 'Bar2',
overridesResolver: (props, styles) => {
const {
ownerState
} = props;
return [styles.bar, styles.bar2, styles[`barColor${capitalize(ownerState.color)}`], (ownerState.variant === 'indeterminate' || ownerState.variant === 'query') && styles.bar2Indeterminate, ownerState.variant === 'buffer' && styles.bar2Buffer];
}
})(memoTheme(({
theme
}) => ({
width: '100%',
position: 'absolute',
left: 0,
bottom: 0,
top: 0,
transition: 'transform 0.2s linear',
transformOrigin: 'left',
variants: [...Object.entries(theme.palette).filter(createSimplePaletteValueFilter()).map(([color]) => ({
props: {
color
},
style: {
'--LinearProgressBar2-barColor': (theme.vars || theme).palette[color].main
}
})), {
props: ({
ownerState
}) => ownerState.variant !== 'buffer' && ownerState.color !== 'inherit',
style: {
backgroundColor: 'var(--LinearProgressBar2-barColor, currentColor)'
}
}, {
props: ({
ownerState
}) => ownerState.variant !== 'buffer' && ownerState.color === 'inherit',
style: {
backgroundColor: 'currentColor'
}
}, {
props: {
color: 'inherit'
},
style: {
opacity: 0.3
}
}, ...Object.entries(theme.palette).filter(createSimplePaletteValueFilter()).map(([color]) => ({
props: {
color,
variant: 'buffer'
},
style: {
backgroundColor: getColorShade(theme, color),
transition: `transform .${TRANSITION_DURATION}s linear`
}
})), {
props: ({
ownerState
}) => ownerState.variant === 'indeterminate' || ownerState.variant === 'query',
style: {
width: 'auto'
}
}, {
props: ({
ownerState
}) => ownerState.variant === 'indeterminate' || ownerState.variant === 'query',
style: indeterminate2Animation || {
animation: `${indeterminate2Keyframe} 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) 1.15s infinite`
}
}]
})));
/**
* ## ARIA
*
* If the progress bar is describing the loading progress of a particular region of a page,
* you should use `aria-describedby` to point to the progress bar, and set the `aria-busy`
* attribute to `true` on that region until it has finished loading.
*/
const LinearProgress = /*#__PURE__*/React.forwardRef(function LinearProgress(inProps, ref) {
const props = useDefaultProps({
props: inProps,
name: 'MuiLinearProgress'
});
const {
className,
color = 'primary',
value,
valueBuffer,
variant = 'indeterminate',
...other
} = props;
const ownerState = {
...props,
color,
variant
};
const classes = useUtilityClasses(ownerState);
const isRtl = useRtl();
const rootProps = {};
const inlineStyles = {
bar1: {},
bar2: {}
};
if (variant === 'determinate' || variant === 'buffer') {
if (value !== undefined) {
rootProps['aria-valuenow'] = Math.round(value);
rootProps['aria-valuemin'] = 0;
rootProps['aria-valuemax'] = 100;
let transform = value - 100;
if (isRtl) {
transform = -transform;
}
inlineStyles.bar1.transform = `translateX(${transform}%)`;
} else if (process.env.NODE_ENV !== 'production') {
console.error('MUI: You need to provide a value prop ' + 'when using the determinate or buffer variant of LinearProgress .');
}
}
if (variant === 'buffer') {
if (valueBuffer !== undefined) {
let transform = (valueBuffer || 0) - 100;
if (isRtl) {
transform = -transform;
}
inlineStyles.bar2.transform = `translateX(${transform}%)`;
} else if (process.env.NODE_ENV !== 'production') {
console.error('MUI: You need to provide a valueBuffer prop ' + 'when using the buffer variant of LinearProgress.');
}
}
return /*#__PURE__*/_jsxs(LinearProgressRoot, {
className: clsx(classes.root, className),
ownerState: ownerState,
role: "progressbar",
...rootProps,
ref: ref,
...other,
children: [variant === 'buffer' ? /*#__PURE__*/_jsx(LinearProgressDashed, {
className: classes.dashed,
ownerState: ownerState
}) : null, /*#__PURE__*/_jsx(LinearProgressBar1, {
className: classes.bar1,
ownerState: ownerState,
style: inlineStyles.bar1
}), variant === 'determinate' ? null : /*#__PURE__*/_jsx(LinearProgressBar2, {
className: classes.bar2,
ownerState: ownerState,
style: inlineStyles.bar2
})]
});
});
process.env.NODE_ENV !== "production" ? LinearProgress.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`. │
// └─────────────────────────────────────────────────────────────────────┘
/**
* Override or extend the styles applied to the component.
*/
classes: PropTypes.object,
/**
* @ignore
*/
className: PropTypes.string,
/**
* The color of the component.
* It supports both default and custom theme colors, which can be added as shown in the
* [palette customization guide](https://mui.com/material-ui/customization/palette/#custom-colors).
* @default 'primary'
*/
color: PropTypes /* @typescript-to-proptypes-ignore */.oneOfType([PropTypes.oneOf(['inherit', 'primary', 'secondary']), PropTypes.string]),
/**
* 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]),
/**
* The value of the progress indicator for the determinate and buffer variants.
* Value between 0 and 100.
*/
value: PropTypes.number,
/**
* The value for the buffer variant.
* Value between 0 and 100.
*/
valueBuffer: PropTypes.number,
/**
* The variant to use.
* Use indeterminate or query when there is no progress value.
* @default 'indeterminate'
*/
variant: PropTypes.oneOf(['buffer', 'determinate', 'indeterminate', 'query'])
} : void 0;
export default LinearProgress;
|