mirror of
https://github.com/zhigang1992/react.git
synced 2026-01-31 09:08:41 +08:00
107 lines
3.1 KiB
TypeScript
107 lines
3.1 KiB
TypeScript
import React, { useMemo } from 'react'
|
|
import withDefaults from '../utils/with-defaults'
|
|
import useTheme from '../styles/use-theme'
|
|
import { TableColumnItem } from './table-context'
|
|
|
|
interface Props {
|
|
width: number
|
|
columns: Array<TableColumnItem>
|
|
className?: string
|
|
}
|
|
|
|
const defaultProps = {
|
|
className: '',
|
|
}
|
|
|
|
type NativeAttrs = Omit<React.HTMLAttributes<any>, keyof Props>
|
|
export type TableHeadProps = Props & typeof defaultProps & NativeAttrs
|
|
|
|
const makeColgroup = (width: number, columns: Array<TableColumnItem>) => {
|
|
const unsetWidthCount = columns.filter(c => !c.width).length
|
|
const customWidthTotal = columns.reduce((pre, current) => {
|
|
return current.width ? pre + current.width : pre
|
|
}, 0)
|
|
const averageWidth = (width - customWidthTotal) / unsetWidthCount
|
|
if (averageWidth <= 0) return <colgroup />
|
|
return (
|
|
<colgroup>
|
|
{columns.map((column, index) => (
|
|
<col key={`colgroup-${index}`} width={column.width || averageWidth} />
|
|
))}
|
|
</colgroup>
|
|
)
|
|
}
|
|
|
|
const TableHead: React.FC<TableHeadProps> = ({ columns, width }) => {
|
|
const theme = useTheme()
|
|
const isScalableWidth = useMemo(() => columns.find(item => !!item.width), [columns])
|
|
const colgroup = useMemo(() => {
|
|
if (!isScalableWidth) return <colgroup />
|
|
return makeColgroup(width, columns)
|
|
}, [isScalableWidth, width])
|
|
|
|
return (
|
|
<>
|
|
{colgroup}
|
|
<thead>
|
|
<tr>
|
|
{columns.map((column, index) => (
|
|
<th key={`table-th-${column.value}-${index}`}>
|
|
<div className="thead-box">{column.label}</div>
|
|
</th>
|
|
))}
|
|
</tr>
|
|
</thead>
|
|
<style jsx>{`
|
|
thead {
|
|
border-collapse: separate;
|
|
border-spacing: 0;
|
|
}
|
|
|
|
th {
|
|
padding: 0 ${theme.layout.gapHalf};
|
|
font-size: 0.75rem;
|
|
font-weight: normal;
|
|
text-align: left;
|
|
letter-spacing: 0;
|
|
vertical-align: center;
|
|
min-height: 2.5rem;
|
|
color: ${theme.palette.accents_5};
|
|
background: ${theme.palette.accents_1};
|
|
border-bottom: 1px solid ${theme.palette.border};
|
|
border-top: 1px solid ${theme.palette.border};
|
|
border-radius: 0;
|
|
}
|
|
|
|
th:nth-child(1) {
|
|
border-bottom: 1px solid ${theme.palette.border};
|
|
border-left: 1px solid ${theme.palette.border};
|
|
border-top: 1px solid ${theme.palette.border};
|
|
border-top-left-radius: ${theme.layout.radius};
|
|
border-bottom-left-radius: ${theme.layout.radius};
|
|
}
|
|
|
|
th:last-child {
|
|
border-bottom: 1px solid ${theme.palette.border};
|
|
border-right: 1px solid ${theme.palette.border};
|
|
border-top: 1px solid ${theme.palette.border};
|
|
border-top-right-radius: ${theme.layout.radius};
|
|
border-bottom-right-radius: ${theme.layout.radius};
|
|
}
|
|
|
|
.thead-box {
|
|
display: flex;
|
|
align-items: center;
|
|
-webkit-box-align: center;
|
|
min-height: 2.5rem;
|
|
text-transform: uppercase;
|
|
}
|
|
`}</style>
|
|
</>
|
|
)
|
|
}
|
|
|
|
const MemoTableHead = React.memo(TableHead)
|
|
|
|
export default withDefaults(MemoTableHead, defaultProps)
|