File size: 1,409 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 |
"use client"
import { forwardRef } from "react"
import {
type ConditionalValue,
type SystemStyleObject,
chakra,
} from "../../styled-system"
import { compact, mapObject } from "../../utils"
import type { BoxProps } from "../box"
export interface GridItemProps extends BoxProps {
area?: SystemStyleObject["gridArea"] | undefined
colSpan?: ConditionalValue<number | "auto"> | undefined
colStart?: ConditionalValue<number | "auto"> | undefined
colEnd?: ConditionalValue<number | "auto"> | undefined
rowStart?: ConditionalValue<number | "auto"> | undefined
rowEnd?: ConditionalValue<number | "auto"> | undefined
rowSpan?: ConditionalValue<number | "auto"> | undefined
}
function spanFn(span?: ConditionalValue<number | "auto">) {
return mapObject(span, (value) =>
value === "auto" ? "auto" : `span ${value}/span ${value}`,
)
}
export const GridItem = forwardRef<HTMLDivElement, GridItemProps>(
function GridItem(props, ref) {
const {
area,
colSpan,
colStart,
colEnd,
rowEnd,
rowSpan,
rowStart,
...rest
} = props
const styles = compact({
gridArea: area,
gridColumn: spanFn(colSpan),
gridRow: spanFn(rowSpan),
gridColumnStart: colStart,
gridColumnEnd: colEnd,
gridRowStart: rowStart,
gridRowEnd: rowEnd,
})
return <chakra.div ref={ref} css={styles} {...rest} />
},
)
|