-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathTimelineDot.js
146 lines (135 loc) · 4.25 KB
/
TimelineDot.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
'use client';
import * as React from 'react';
import PropTypes from 'prop-types';
import clsx from 'clsx';
import { styled, useThemeProps } from '@mui/material/styles';
import { capitalize } from '@mui/material/utils';
import composeClasses from '@mui/utils/composeClasses';
import { getTimelineDotUtilityClass } from './timelineDotClasses';
const useUtilityClasses = (ownerState) => {
const { color, variant, classes } = ownerState;
const slots = {
root: ['root', variant, color !== 'inherit' && `${variant}${capitalize(color)}`],
};
return composeClasses(slots, getTimelineDotUtilityClass, classes);
};
const TimelineDotRoot = styled('span', {
name: 'MuiTimelineDot',
slot: 'Root',
overridesResolver: (props, styles) => {
const { ownerState } = props;
return [
styles.root,
styles[
ownerState.color !== 'inherit' && `${ownerState.variant}${capitalize(ownerState.color)}`
],
styles[ownerState.variant],
];
},
})(({ ownerState, theme }) => ({
display: 'flex',
alignSelf: 'baseline',
borderStyle: 'solid',
borderWidth: 2,
padding: 4,
borderRadius: '50%',
boxShadow: (theme.vars || theme).shadows[1],
margin: '11.5px 0',
...(ownerState.variant === 'filled' && {
borderColor: 'transparent',
...(ownerState.color !== 'inherit' && {
...(ownerState.color === 'grey'
? {
color: (theme.vars || theme).palette.grey[50],
backgroundColor: (theme.vars || theme).palette.grey[400],
}
: {
color: (theme.vars || theme).palette[ownerState.color].contrastText,
backgroundColor: (theme.vars || theme).palette[ownerState.color].main,
}),
}),
}),
...(ownerState.variant === 'outlined' && {
boxShadow: 'none',
backgroundColor: 'transparent',
...(ownerState.color !== 'inherit' && {
...(ownerState.color === 'grey'
? {
borderColor: (theme.vars || theme).palette.grey[400],
}
: {
borderColor: (theme.vars || theme).palette[ownerState.color].main,
}),
}),
}),
}));
const TimelineDot = React.forwardRef(function TimelineDot(inProps, ref) {
const props = useThemeProps({ props: inProps, name: 'MuiTimelineDot' });
const { className, color = 'grey', variant = 'filled', ...other } = props;
const ownerState = {
...props,
color,
variant,
};
const classes = useUtilityClasses(ownerState);
return (
<TimelineDotRoot
className={clsx(classes.root, className)}
ownerState={ownerState}
ref={ref}
{...other}
/>
);
});
TimelineDot.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`. │
// └─────────────────────────────────────────────────────────────────────┘
/**
* The content of the component.
*/
children: PropTypes.node,
/**
* Override or extend the styles applied to the component.
*/
classes: PropTypes.object,
/**
* @ignore
*/
className: PropTypes.string,
/**
* The dot can have a different colors.
* @default 'grey'
*/
color: PropTypes /* @typescript-to-proptypes-ignore */.oneOfType([
PropTypes.oneOf([
'error',
'grey',
'info',
'inherit',
'primary',
'secondary',
'success',
'warning',
]),
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 dot can appear filled or outlined.
* @default 'filled'
*/
variant: PropTypes /* @typescript-to-proptypes-ignore */.oneOfType([
PropTypes.oneOf(['filled', 'outlined']),
PropTypes.string,
]),
};
export default TimelineDot;