-
Notifications
You must be signed in to change notification settings - Fork 75
Expand file tree
/
Copy pathChip.tsx
More file actions
240 lines (217 loc) · 5.31 KB
/
Copy pathChip.tsx
File metadata and controls
240 lines (217 loc) · 5.31 KB
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
import {
cloneElement,
Children as ReactChildren,
forwardRef,
HTMLAttributes,
} from 'react'
import styled, { css } from 'styled-components'
import { Icon } from './Icon'
import * as tokens from './Chip.tokens'
import {
spacingsTemplate,
typographyTemplate,
outlineTemplate,
bordersTemplate,
} from '@equinor/eds-utils'
const { enabled, error } = tokens
const { background, height, typography, spacings, border, states } = enabled
type StyleProps = {
$variant: 'active' | 'error' | 'default'
$clickable: boolean
$deletable: boolean
$disabled: boolean
$onlyChild: boolean
}
const StyledChips = styled.div.attrs<StyleProps>(
({ $clickable, $deletable }) => ({
tabIndex: $clickable || $deletable ? 0 : null,
role: $clickable ? 'button' : null,
}),
)<StyleProps>`
background: ${background};
height: ${height};
width: fit-content;
display: grid;
grid-gap: 8px;
grid-auto-flow: column;
grid-auto-columns: max-content;
align-items: center;
svg {
fill: ${typography.color};
}
&:focus {
outline: none;
}
&[data-focus-visible-added]:focus {
${outlineTemplate(states.focus.outline)}
}
&:focus-visible {
${outlineTemplate(states.focus.outline)}
}
${bordersTemplate(border)}
${spacingsTemplate(spacings)}
${typographyTemplate(typography)}
${({ $clickable }) =>
$clickable &&
css`
@media (hover: hover) and (pointer: fine) {
&:hover {
cursor: pointer;
color: ${states.hover.typography.color};
svg {
fill: ${states.hover.typography.color};
}
}
}
`}
${({ $variant, $clickable }) => {
switch ($variant) {
case 'active':
return css`
background: ${states.active.background};
`
case 'error':
return css`
background: ${error.background};
color: ${error.typography.color};
svg {
fill: ${error.entities.icon.typography.color};
}
${bordersTemplate(error.border)};
@media (hover: hover) and (pointer: fine) {
&:hover {
border-color: ${$clickable &&
error.states.hover.typography.color};
color: ${$clickable && error.states.hover.typography.color};
svg {
fill: ${$clickable && error.states.hover.typography.color};
}
}
}
`
default:
return ''
}
}}
${({ $disabled }) =>
$disabled &&
css`
cursor: not-allowed;
background: ${background};
color: ${states.disabled.typography.color};
svg {
fill: ${states.disabled.typography.color};
}
@media (hover: hover) and (pointer: fine) {
&:hover {
color: ${states.disabled.typography.color};
cursor: not-allowed;
svg {
fill: ${states.disabled.typography.color};
}
}
}
`}
${({ $deletable }) =>
$deletable &&
css`
padding-right: 4px;
`}
${({ $onlyChild }) =>
$onlyChild
? css`
padding-left: 8px;
`
: ''}
`
export type ChipProps = {
/** Disabled */
disabled?: boolean
/** Delete callback */
onDelete?: (Event) => void
/** Variant */
variant?: 'active' | 'error' | 'default'
} & HTMLAttributes<HTMLDivElement>
export const Chip = forwardRef<HTMLDivElement, ChipProps>(function Chip(
{
children,
onDelete,
disabled = false,
onClick,
variant = 'default',
...other
},
ref,
) {
const handleDelete = disabled ? undefined : onDelete
const handleClick = disabled ? undefined : onClick
const deletable = handleDelete !== undefined
const clickable = handleClick !== undefined
const onlyChild = typeof children === 'string'
const chipProps = {
...other,
ref,
$disabled: disabled,
$deletable: deletable,
$clickable: clickable,
$onlyChild: onlyChild,
$variant: variant,
}
const handleKeyPress = (
event:
| React.KeyboardEvent<HTMLDivElement>
| React.MouseEvent<HTMLDivElement>,
) => {
const { key } = event as React.KeyboardEvent<HTMLDivElement>
if (key === 'Enter') {
if (deletable) {
handleDelete(event)
}
// Delete takes precedence, else click action is activated
if (clickable && !deletable) {
handleClick(event as React.MouseEvent<HTMLDivElement>)
}
}
}
const resizedChildren = ReactChildren.map(
children,
(child: React.ReactElement<Record<string, unknown>> | null) => {
// We force size on Icon & Avatar component
if (child?.props) {
return cloneElement(child, {
size: 16,
disabled,
})
}
return child
},
)
const onDeleteClick = (
event: React.MouseEvent<SVGSVGElement, MouseEvent>,
) => {
event.stopPropagation()
if (deletable) {
handleDelete(event)
}
}
return (
<StyledChips
{...chipProps}
onClick={(event) => clickable && handleClick(event)}
onKeyDown={handleKeyPress}
>
{resizedChildren}
{onDelete && (
<Icon
name="close"
title="close"
$disabled={disabled}
$variant={variant}
onClick={onDeleteClick}
size={16}
/>
)}
</StyledChips>
)
})
// Chip.displayName = 'eds-chip'