Files
react/components/shared/dropdown.tsx
2020-03-25 02:03:17 +08:00

75 lines
1.8 KiB
TypeScript

import React, { MutableRefObject, useState } from 'react'
import { createPortal } from 'react-dom'
import usePortal from '../utils/use-portal'
import useResize from '../utils/use-resize'
import CSSTransition from './css-transition'
interface Props {
parent?: MutableRefObject<HTMLDivElement | null>
visible: boolean
}
interface ReactiveDomReact {
top: number
left: number
right: number
width: number
}
const defaultRect: ReactiveDomReact = {
top: -1000,
left: -1000,
right: -1000,
width: 0,
}
const getRect = (ref: MutableRefObject<HTMLDivElement | null>): ReactiveDomReact => {
if (!ref || !ref.current) return defaultRect
const rect = ref.current.getBoundingClientRect()
return {
...rect,
width: rect.width || (rect.right - rect.left),
top: rect.bottom + document.documentElement.scrollTop,
left: rect.left + document.documentElement.scrollLeft,
}
}
const Dropdown: React.FC<React.PropsWithChildren<Props>> = React.memo(({
children, parent, visible,
}) => {
const el = usePortal('dropdown')
const [rect, setRect] = useState<ReactiveDomReact>(defaultRect)
if (!parent) return null
const updateRect = () => {
const { top, left, right, width: nativeWidth } = getRect(parent)
setRect({ top, left, right, width: nativeWidth })
}
useResize(updateRect)
const clickHandler = (event: React.MouseEvent<HTMLDivElement>) => {
event.stopPropagation()
event.preventDefault()
}
if (!el) return null
return createPortal((
<CSSTransition visible={visible}>
<div className="dropdown" onClick={clickHandler}>
{children}
<style jsx>{`
.dropdown {
position: absolute;
width: ${rect.width}px;
top: ${rect.top + 2}px;
left: ${rect.left}px;
}
`}</style>
</div>
</CSSTransition>
), el)
})
export default Dropdown