-
-
Notifications
You must be signed in to change notification settings - Fork 32.5k
/
Copy pathBadgeUnstyled.js
227 lines (209 loc) · 5.65 KB
/
BadgeUnstyled.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
import * as React from 'react';
import PropTypes from 'prop-types';
import clsx from 'clsx';
import { unstable_capitalize as capitalize } from '@material-ui/utils';
import isHostComponent from '../utils/isHostComponent';
import badgeClasses, { getUtilityClass } from './badgeClasses';
const usePreviousProps = (value) => {
const ref = React.useRef({});
React.useEffect(() => {
ref.current = value;
});
return ref.current;
};
const useBadgeClasses = (props) => {
const { color, variant, anchorOrigin, overlap, invisible, classes = {} } = props;
const utilityClasses = {
root: clsx(badgeClasses['root'], classes['root']),
badge: clsx(
badgeClasses['badge'],
classes['badge'],
getUtilityClass(variant),
badgeClasses[
`anchorOrigin${capitalize(anchorOrigin.vertical)}${capitalize(
anchorOrigin.horizontal,
)}${capitalize(overlap)}`
],
classes[
`anchorOrigin${capitalize(anchorOrigin.vertical)}${capitalize(
anchorOrigin.horizontal,
)}${capitalize(overlap)}`
],
{
[badgeClasses[`color${capitalize(color)}`]]: color !== 'default',
[classes[`color${capitalize(color)}`]]: color !== 'default',
[badgeClasses['invisible']]: invisible,
[classes.invisible]: invisible,
},
),
};
return utilityClasses;
};
const BadgeUnstyled = React.forwardRef(function BadgeUnstyled(props, ref) {
const {
anchorOrigin: anchorOriginProp = {
vertical: 'top',
horizontal: 'right',
},
badgeContent: badgeContentProp,
children,
className,
color: colorProp = 'default',
components = {},
componentsProps = {},
invisible: invisibleProp,
max: maxProp = 99,
overlap: overlapProp = 'rectangular',
showZero = false,
variant: variantProp = 'standard',
/* eslint-disable react/prop-types */
theme,
...other
} = props;
const prevProps = usePreviousProps({
anchorOrigin: anchorOriginProp,
badgeContent: badgeContentProp,
color: colorProp,
max: maxProp,
overlap: overlapProp,
variant: variantProp,
});
let invisible = invisibleProp;
if (
invisibleProp == null &&
((badgeContentProp === 0 && !showZero) || (badgeContentProp == null && variantProp !== 'dot'))
) {
invisible = true;
}
const {
anchorOrigin = anchorOriginProp,
badgeContent,
color = colorProp,
max = maxProp,
overlap = overlapProp,
variant = variantProp,
} = invisible ? prevProps : props;
const stateAndProps = {
...props,
anchorOrigin,
badgeContent,
color,
invisible,
max,
overlap,
variant,
};
let displayValue = '';
if (variant !== 'dot') {
displayValue = badgeContent > max ? `${max}+` : badgeContent;
}
const classes = useBadgeClasses(stateAndProps);
const Root = components.Root || 'span';
const rootProps = componentsProps.root || {};
const Badge = components.Badge || 'span';
const badgeProps = componentsProps.badge || {};
return (
<Root
{...(!isHostComponent(Root) && {
styleProps: stateAndProps,
theme,
})}
ref={ref}
{...rootProps}
{...other}
className={clsx(classes.root, rootProps.className, className)}
>
{children}
<Badge
{...(!isHostComponent(Badge) && {
styleProps: stateAndProps,
theme,
})}
{...badgeProps}
className={clsx(classes.badge, badgeProps.className)}
>
{displayValue}
</Badge>
</Root>
);
});
BadgeUnstyled.propTypes = {
// ----------------------------- Warning --------------------------------
// | These PropTypes are generated from the TypeScript type definitions |
// | To update them edit the d.ts file and run "yarn proptypes" |
// ----------------------------------------------------------------------
/**
* The anchor of the badge.
* @default {
* vertical: 'top',
* horizontal: 'right',
* }
*/
anchorOrigin: PropTypes.shape({
horizontal: PropTypes.oneOf(['left', 'right']).isRequired,
vertical: PropTypes.oneOf(['bottom', 'top']).isRequired,
}),
/**
* The content rendered within the badge.
*/
badgeContent: PropTypes.node,
/**
* The badge will be added relative to this node.
*/
children: PropTypes.node,
/**
* Override or extend the styles applied to the component.
*/
classes: PropTypes.object,
/**
* @ignore
*/
className: PropTypes.string,
/**
* The color of the component. It supports those theme colors that make sense for this component.
* @default 'default'
*/
color: PropTypes.oneOf(['default', 'error', 'primary', 'secondary']),
/**
* The components used for each slot inside the Badge.
* Either a string to use a HTML element or a component.
* @default {}
*/
components: PropTypes.shape({
Badge: PropTypes.elementType,
Root: PropTypes.elementType,
}),
/**
* The props used for each slot inside the Badge.
* @default {}
*/
componentsProps: PropTypes.object,
/**
* If `true`, the badge is invisible.
*/
invisible: PropTypes.bool,
/**
* Max count to show.
* @default 99
*/
max: PropTypes.number,
/**
* Wrapped shape the badge should overlap.
* @default 'rectangular'
*/
overlap: PropTypes.oneOf(['circular', 'rectangular']),
/**
* Controls whether the badge is hidden when `badgeContent` is zero.
* @default false
*/
showZero: PropTypes.bool,
/**
* The variant to use.
* @default 'standard'
*/
variant: PropTypes /* @typescript-to-proptypes-ignore */.oneOfType([
PropTypes.oneOf(['dot', 'standard']),
PropTypes.string,
]),
};
export default BadgeUnstyled;