mirror of
https://github.com/zhigang1992/react.git
synced 2026-03-06 17:25:12 +08:00
* feat: export all types related to components fix(tooltip): fix the vertical offset of the arrow * refactor: optimize events of all popup related components * test: append testcases for popup base component * test: add testcase for visible events * test: update snapshots
88 lines
2.5 KiB
TypeScript
88 lines
2.5 KiB
TypeScript
import React, { MouseEvent, useMemo } from 'react'
|
|
import useTheme from '../use-theme'
|
|
import { getColor } from './styles'
|
|
import { useButtonDropdown } from './button-dropdown-context'
|
|
import Loading from '../loading'
|
|
import { NormalTypes } from '../utils/prop-types'
|
|
|
|
export type ButtonDropdownItemTypes = NormalTypes
|
|
|
|
interface Props {
|
|
main?: boolean
|
|
type?: ButtonDropdownItemTypes
|
|
onClick?: React.MouseEventHandler<HTMLElement>
|
|
className?: string
|
|
}
|
|
|
|
const defaultProps = {
|
|
main: false,
|
|
type: 'default' as ButtonDropdownItemTypes,
|
|
onClick: () => {},
|
|
className: '',
|
|
}
|
|
|
|
type NativeAttrs = Omit<React.ButtonHTMLAttributes<any>, keyof Props>
|
|
export type ButtonDropdownItemProps = Props & NativeAttrs
|
|
|
|
const ButtonDropdownItem: React.FC<React.PropsWithChildren<ButtonDropdownItemProps>> = ({
|
|
children,
|
|
onClick,
|
|
className,
|
|
main,
|
|
type: selfType,
|
|
...props
|
|
}: ButtonDropdownItemProps & typeof defaultProps) => {
|
|
const theme = useTheme()
|
|
const { type: parentType, disabled, loading } = useButtonDropdown()
|
|
const type = main ? parentType : selfType
|
|
const colors = getColor(theme.palette, type, disabled)
|
|
const clickHandler = (event: MouseEvent<HTMLButtonElement>) => {
|
|
if (disabled || loading) return
|
|
onClick && onClick(event)
|
|
}
|
|
|
|
const cursor = useMemo(() => {
|
|
if (loading) return 'default'
|
|
return disabled ? 'not-allowed' : 'pointer'
|
|
}, [loading, disabled])
|
|
|
|
return (
|
|
<button className={className} onClick={clickHandler} {...props}>
|
|
{loading ? <Loading /> : children}
|
|
<style jsx>{`
|
|
button {
|
|
position: relative;
|
|
-webkit-appearance: button;
|
|
text-rendering: auto;
|
|
display: inline-flex;
|
|
flex: 1;
|
|
justify-content: center;
|
|
align-items: center;
|
|
vertical-align: middle;
|
|
text-align: center;
|
|
cursor: ${cursor};
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
border: none;
|
|
background-color: ${colors.bgColor};
|
|
color: ${colors.color};
|
|
width: 100%;
|
|
height: var(--geist-ui-dropdown-height);
|
|
min-width: var(--geist-ui-dropdown-min-width);
|
|
padding: var(--geist-ui-dropdown-padding);
|
|
font-size: var(--geist-ui-dropdown-font-size);
|
|
}
|
|
|
|
button:hover {
|
|
border-color: ${colors.hoverBorder};
|
|
background-color: ${colors.hoverBgColor};
|
|
}
|
|
`}</style>
|
|
</button>
|
|
)
|
|
}
|
|
|
|
ButtonDropdownItem.defaultProps = defaultProps
|
|
ButtonDropdownItem.displayName = 'GeistButtonDropdownItem'
|
|
export default ButtonDropdownItem
|