mirror of
https://github.com/zhigang1992/react.git
synced 2026-01-26 22:27:03 +08:00
182 lines
4.3 KiB
TypeScript
182 lines
4.3 KiB
TypeScript
import React, { useMemo } from 'react'
|
|
import useTheme from '../styles/use-theme'
|
|
import { Justify, Direction, AlignItems, AlignContent } from './grid-types'
|
|
|
|
type BreakpointsValue = number | boolean
|
|
interface Props {
|
|
xs?: BreakpointsValue
|
|
sm?: BreakpointsValue
|
|
md?: BreakpointsValue
|
|
lg?: BreakpointsValue
|
|
xl?: BreakpointsValue
|
|
justify?: Justify
|
|
direction?: Direction
|
|
alignItems?: AlignItems
|
|
alignContent?: AlignContent
|
|
className?: string
|
|
}
|
|
|
|
const defaultProps = {
|
|
xs: false as BreakpointsValue,
|
|
sm: false as BreakpointsValue,
|
|
md: false as BreakpointsValue,
|
|
lg: false as BreakpointsValue,
|
|
xl: false as BreakpointsValue,
|
|
className: '',
|
|
}
|
|
|
|
type NativeAttrs = Omit<React.HTMLAttributes<any>, keyof Props>
|
|
export type GridBasicItemProps = Props & typeof defaultProps & NativeAttrs
|
|
|
|
type ItemLayoutValue = {
|
|
grow: number
|
|
width: string
|
|
basis: string
|
|
}
|
|
const getItemLayout = (val: BreakpointsValue): ItemLayoutValue => {
|
|
if (typeof val === 'number') {
|
|
const width = (100 / 24) * val
|
|
const ratio = width > 100 ? '100%' : width < 0 ? '0' : `${width}%`
|
|
return {
|
|
grow: 0,
|
|
width: ratio,
|
|
basis: ratio,
|
|
}
|
|
}
|
|
return {
|
|
grow: 1,
|
|
width: '100%',
|
|
basis: '0',
|
|
}
|
|
}
|
|
|
|
const GridBasicItem: React.FC<React.PropsWithChildren<GridBasicItemProps>> = ({
|
|
xs,
|
|
sm,
|
|
md,
|
|
lg,
|
|
xl,
|
|
justify,
|
|
direction,
|
|
alignItems,
|
|
alignContent,
|
|
children,
|
|
className,
|
|
}) => {
|
|
const theme = useTheme()
|
|
const classes = useMemo(() => {
|
|
const aligns: { [key: string]: any } = {
|
|
justify,
|
|
direction,
|
|
alignItems,
|
|
alignContent,
|
|
xs,
|
|
sm,
|
|
md,
|
|
lg,
|
|
xl,
|
|
}
|
|
const classString = Object.keys(aligns).reduce((pre, name) => {
|
|
if (Boolean(aligns[name]) && aligns[name] !== 0) return `${pre} ${name}`
|
|
return pre
|
|
}, '')
|
|
return classString.trim()
|
|
}, [justify, direction, alignItems, alignContent])
|
|
|
|
const layout = useMemo<
|
|
{
|
|
[key in ['xs', 'sm', 'md', 'lg', 'xl'][number]]: ItemLayoutValue
|
|
}
|
|
>(
|
|
() => ({
|
|
xs: getItemLayout(xs),
|
|
sm: getItemLayout(sm),
|
|
md: getItemLayout(md),
|
|
lg: getItemLayout(lg),
|
|
xl: getItemLayout(xl),
|
|
}),
|
|
[xs, sm, md, lg, xl],
|
|
)
|
|
|
|
return (
|
|
<div className={`item ${classes} ${className}`}>
|
|
{children}
|
|
<style jsx>{`
|
|
.item {
|
|
}
|
|
|
|
.justify {
|
|
justify-content: ${justify};
|
|
}
|
|
|
|
.direction {
|
|
flex-direction: ${direction};
|
|
}
|
|
|
|
.alignContent {
|
|
align-content: ${alignContent};
|
|
}
|
|
|
|
.alignItems {
|
|
align-items: ${alignItems};
|
|
}
|
|
|
|
.xs {
|
|
flex-grow: ${layout.xs.grow};
|
|
max-width: ${layout.xs.width};
|
|
flex-basis: ${layout.xs.basis};
|
|
}
|
|
|
|
@media only screen and (max-width: ${theme.breakpoints.xs.max}) {
|
|
.xs {
|
|
flex-grow: ${layout.xs.grow};
|
|
max-width: ${layout.xs.width};
|
|
flex-basis: ${layout.xs.basis};
|
|
}
|
|
}
|
|
|
|
@media only screen and (min-width: ${theme.breakpoints.sm.min}) {
|
|
.sm {
|
|
flex-grow: ${layout.sm.grow};
|
|
max-width: ${layout.sm.width};
|
|
flex-basis: ${layout.sm.basis};
|
|
}
|
|
}
|
|
|
|
@media only screen and (min-width: ${theme.breakpoints.md.min}) {
|
|
.md {
|
|
flex-grow: ${layout.md.grow};
|
|
max-width: ${layout.md.width};
|
|
flex-basis: ${layout.md.basis};
|
|
}
|
|
}
|
|
|
|
@media only screen and (min-width: ${theme.breakpoints.lg.min}) {
|
|
.lg {
|
|
flex-grow: ${layout.lg.grow};
|
|
max-width: ${layout.lg.width};
|
|
flex-basis: ${layout.lg.basis};
|
|
}
|
|
}
|
|
|
|
@media only screen and (min-width: ${theme.breakpoints.xl.min}) {
|
|
.xl {
|
|
flex-grow: ${layout.xl.grow};
|
|
max-width: ${layout.xl.width};
|
|
flex-basis: ${layout.xl.basis};
|
|
}
|
|
}
|
|
`}</style>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
type MemoBasicItemComponent<P = {}> = React.NamedExoticComponent<P>
|
|
export type GridBasicItemComponentProps = Partial<typeof defaultProps> &
|
|
Omit<Props, keyof typeof defaultProps> &
|
|
NativeAttrs
|
|
|
|
GridBasicItem.defaultProps = defaultProps
|
|
|
|
export default React.memo(GridBasicItem) as MemoBasicItemComponent<GridBasicItemComponentProps>
|