-
Notifications
You must be signed in to change notification settings - Fork 331
/
Copy pathbutton-dropdown.tsx
211 lines (192 loc) · 6.43 KB
/
button-dropdown.tsx
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
import React, { MouseEvent, useCallback, useMemo, useRef, useState } from 'react'
import useTheme from '../use-theme'
import useClickAway from '../utils/use-click-away'
import { getColor } from './styles'
import ButtonDropdownIcon from './icon'
import ButtonDropdownItem from './button-dropdown-item'
import { ButtonDropdownContext } from './button-dropdown-context'
import { NormalTypes } from '../utils/prop-types'
import { pickChild, pickChildByProps } from '../utils/collections'
import useScale, { withScale } from '../use-scale'
import useClasses from '../use-classes'
export type ButtonDropdownTypes = NormalTypes
interface Props {
type?: ButtonDropdownTypes
auto?: boolean
loading?: boolean
disabled?: boolean
className?: string
icon?: React.ReactNode
}
const defaultProps = {
type: 'default' as ButtonDropdownTypes,
auto: false,
loading: false,
disabled: false,
className: '',
}
type NativeAttrs = Omit<React.HTMLAttributes<any>, keyof Props>
export type ButtonDropdownProps = Props & NativeAttrs
const stopPropagation = (event: MouseEvent<HTMLElement>) => {
event.stopPropagation()
event.nativeEvent.stopImmediatePropagation()
}
const ButtonDropdownComponent: React.FC<React.PropsWithChildren<ButtonDropdownProps>> = ({
children,
type,
auto,
className,
disabled,
loading,
icon,
...props
}) => {
const { SCALES } = useScale()
const ref = useRef<HTMLDivElement>(null)
const theme = useTheme()
const colors = getColor(theme.palette, type)
const itemChildren = pickChild(children, ButtonDropdownItem)[1]
const [itemChildrenWithoutMain, mainItemChildren] = pickChildByProps(
itemChildren,
'main',
true,
)
const [visible, setVisible] = useState<boolean>(false)
const clickHandler = useCallback(
(event: MouseEvent<HTMLDetailsElement>) => {
event.preventDefault()
stopPropagation(event)
if (disabled || loading) return
setVisible(!visible)
},
[visible],
)
const initialValue = {
type,
auto,
disabled,
loading,
}
const bgColor = useMemo(() => {
if (disabled || loading) return theme.palette.accents_1
return visible ? colors.hoverBgColor : colors.bgColor
}, [visible, colors, theme.palette])
const [paddingLeft, paddingRight] = [
auto ? SCALES.pl(1.15) : SCALES.pl(1.375),
auto ? SCALES.pr(1.15) : SCALES.pr(1.375),
]
useClickAway(ref, () => setVisible(false))
return (
<ButtonDropdownContext.Provider value={initialValue}>
<div
ref={ref}
className={useClasses('btn-dropdown', className)}
onClick={stopPropagation}
{...props}
>
{mainItemChildren}
<details open={visible}>
<summary onClick={clickHandler}>
<div className="dropdown-box">
{icon ? (
<span
className="dropdown-icon"
style={{
color: colors.color,
height: SCALES.height(2.5),
width: SCALES.height(2.5),
}}
>
{icon}
</span>
) : (
<ButtonDropdownIcon color={colors.color} height={SCALES.height(2.5)} />
)}
</div>
</summary>
<div className="content">{itemChildrenWithoutMain}</div>
</details>
<style jsx>{`
.btn-dropdown {
display: inline-flex;
position: relative;
box-sizing: border-box;
border: 1px solid ${theme.palette.border};
border-radius: ${theme.layout.radius};
--geist-ui-dropdown-height: ${SCALES.height(2.5)};
--geist-ui-dropdown-min-width: ${auto ? 'min-content' : SCALES.width(10.5)};
--geist-ui-dropdown-padding: ${SCALES.pt(0)} ${paddingRight} ${SCALES.pb(0)}
${paddingLeft};
--geist-ui-dropdown-font-size: ${SCALES.font(0.875)};
}
.btn-dropdown > :global(button) {
border-top-left-radius: ${theme.layout.radius};
border-bottom-left-radius: ${theme.layout.radius};
}
details {
border-top-right-radius: ${theme.layout.radius};
border-bottom-right-radius: ${theme.layout.radius};
overflow: hidden;
}
.dropdown-box {
height: ${SCALES.height(2.5)};
display: flex;
justify-content: center;
align-items: center;
width: auto;
}
summary {
box-sizing: border-box;
-webkit-tap-highlight-color: transparent;
list-style: none;
outline: none;
color: ${colors.color};
background-color: ${bgColor};
height: ${SCALES.height(2.5)};
border-left: 1px solid ${colors.borderLeftColor};
cursor: ${disabled || loading ? 'not-allowed' : 'pointer'};
display: flex;
justify-content: center;
align-items: center;
width: auto;
padding: 0 1px;
transition: background 0.2s ease 0s, border-color 0.2s ease 0s;
}
summary:hover {
border-color: ${colors.hoverBorder};
background-color: ${colors.hoverBgColor};
}
.content {
position: absolute;
right: 0;
left: 0;
z-index: 90;
width: 100%;
border-radius: ${theme.layout.radius};
box-shadow: ${theme.expressiveness.shadowLarge};
transform: translateY(${theme.layout.gapHalf});
background-color: ${theme.palette.background};
}
.content > :global(button:first-of-type) {
border-top-left-radius: ${theme.layout.radius};
border-top-right-radius: ${theme.layout.radius};
}
.content > :global(button:last-of-type) {
border-bottom-left-radius: ${theme.layout.radius};
border-bottom-right-radius: ${theme.layout.radius};
}
.dropdown-icon {
display: flex;
justify-content: center;
align-items: center;
transform: scale(0.6);
}
`}</style>
</div>
</ButtonDropdownContext.Provider>
)
}
ButtonDropdownComponent.displayName = 'GeistButtonDropdown'
ButtonDropdownComponent.defaultProps = defaultProps
const ButtonDropdown = withScale(ButtonDropdownComponent)
export default ButtonDropdown