Files
react/components/button/button.tsx
2020-03-29 04:21:02 +03:00

149 lines
4.5 KiB
TypeScript

import React, { useRef, useState, MouseEvent, useMemo } from 'react'
import withDefaults from '../utils/with-defaults'
import useTheme from '../styles/use-theme'
import { ButtonTypes, NormalSizes } from '../utils/prop-types'
import ButtonDrip from './button.drip'
import ButtonLoading from '../loading'
import { getButtonColors, getButtonCursor, getButtonHoverColors, getButtonSize } from './styles'
interface Props {
type?: ButtonTypes
size?: NormalSizes
ghost?: boolean
loading?: boolean
shadow?: boolean
auto?: boolean
effect?: boolean
disabled?: boolean
onClick?: React.MouseEventHandler<HTMLButtonElement>
className?: string
}
const defaultProps = {
type: 'default' as ButtonTypes,
size: 'medium' as NormalSizes,
ghost: false,
loading: false,
shadow: false,
auto: false,
effect: true,
disabled: false,
className: '',
}
type NativeAttrs = Omit<React.ButtonHTMLAttributes<any>, keyof Props>
export type ButtonProps = Props & typeof defaultProps & NativeAttrs
const Button: React.FC<React.PropsWithChildren<ButtonProps>> = React.memo(({
children, disabled, type, loading, shadow, ghost, effect, onClick,
auto, size, className, ...props
}) => {
const theme = useTheme()
const buttonRef = useRef<HTMLButtonElement>(null)
const [dripShow, setDripShow] = useState<boolean>(false)
const [dripX, setDripX] = useState<number>(0)
const [dripY, setDripY] = useState<number>(0)
const { bg, border, color } = useMemo(
() => getButtonColors(theme, type, disabled, ghost),
[theme, type, disabled, ghost],
)
const hover = useMemo(
() => getButtonHoverColors(theme, type, disabled, loading, shadow, ghost),
[theme, type, disabled, loading, shadow, ghost],
)
const { cursor, events } = useMemo(
() => getButtonCursor(disabled, loading),
[disabled, loading],
)
const { height, minWidth, padding, width, fontSize } = useMemo(
() => getButtonSize(size, auto),
[size, auto],
)
const dripCompletedHandle = () => {
setDripShow(false)
setDripX(0)
setDripY(0)
}
const clickHandler = (event: MouseEvent<HTMLButtonElement>) => {
if (disabled || loading) return
const showDrip = !shadow && !ghost && effect
if (showDrip && buttonRef.current) {
const rect = buttonRef.current.getBoundingClientRect()
setDripShow(true)
setDripX(event.clientX - rect.left)
setDripY(event.clientY - rect.top)
}
onClick && onClick(event)
}
return (
<button ref={buttonRef} className={`btn ${className}`} disabled={disabled} onClick={clickHandler} {...props}>
{loading ? <ButtonLoading /> : <div className="text">{children}</div>}
{dripShow && <ButtonDrip
x={dripX} y={dripY}
color={theme.palette.accents_2}
onCompleted={dripCompletedHandle}
/>}
<style jsx>{`
.btn {
box-sizing: border-box;
display: inline-block;
padding: 0 ${padding};
height: ${height};
line-height: ${height};
min-width: ${minWidth};
width: ${width};
border-radius: ${theme.layout.radius};
font-weight: 400;
font-size: ${fontSize};
user-select: none;
outline: none;
text-transform: capitalize;
justify-content: center;
text-align: center;
white-space: nowrap;
transition: all 0.2s ease;
position: relative;
overflow: hidden;
color: ${color};
background-color: ${bg};
border: 1px solid ${border};
cursor: ${cursor};
pointer-events: ${events};
box-shadow: ${shadow ? theme.expressiveness.shadowSmall : 'none'};
}
.btn:hover {
color: ${hover.color};
background-color: ${hover.bg};
border-color: ${hover.border};
cursor: ${cursor};
pointer-events: ${events};
box-shadow: ${shadow ? theme.expressiveness.shadowMedium : 'none'};
transform: translate3d(0px, ${shadow ? '-1px' : '0px'}, 0px);
}
.text {
position: relative;
z-index: 1;
display: inline-flex;
justify-content: center;
align-items: center;
text-align: center;
line-height: inherit;
top: -1px;
}
.text :global(p), .text :global(pre), .text :global(div) {
margin: 0;
}
`}</style>
</button>
)
})
export default withDefaults(Button, defaultProps)