File size: 4,105 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 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 |
"use client"
import {
Children,
cloneElement,
forwardRef,
isValidElement,
memo,
useMemo,
} from "react"
import {
type HTMLChakraProps,
type InferRecipeProps,
type JsxStyleProps,
chakra,
} from "../../styled-system"
import { cx, dataAttr } from "../../utils"
const StyledGroup = chakra("div", {
base: {
display: "inline-flex",
gap: "var(--group-gap, 0.5rem)",
isolation: "isolate",
position: "relative",
"& [data-group-item]": {
_focusVisible: {
zIndex: 1,
},
},
},
variants: {
orientation: {
horizontal: {
flexDirection: "row",
},
vertical: {
flexDirection: "column",
},
},
attached: {
true: {
gap: "0!",
},
},
grow: {
true: {
display: "flex",
"& > *": {
flex: 1,
},
},
},
stacking: {
"first-on-top": {
"& > [data-group-item]": {
zIndex: "calc(var(--group-count) - var(--group-index))",
},
},
"last-on-top": {
"& > [data-group-item]": {
zIndex: "var(--group-index)",
},
},
},
},
compoundVariants: [
{
orientation: "horizontal",
attached: true,
css: {
"& > *[data-first]": {
borderEndRadius: "0!",
marginEnd: "-1px",
},
"& > *[data-between]": {
borderRadius: "0!",
marginEnd: "-1px",
},
"& > *[data-last]": {
borderStartRadius: "0!",
},
},
},
{
orientation: "vertical",
attached: true,
css: {
"& > *[data-first]": {
borderBottomRadius: "0!",
marginBottom: "-1px",
},
"& > *[data-between]": {
borderRadius: "0!",
marginBottom: "-1px",
},
"& > *[data-last]": {
borderTopRadius: "0!",
},
},
},
],
defaultVariants: {
orientation: "horizontal",
},
})
type VariantProps = InferRecipeProps<typeof StyledGroup>
export interface GroupProps extends HTMLChakraProps<"div", VariantProps> {
/**
* The `alignItems` style property
*/
align?: JsxStyleProps["alignItems"] | undefined
/**
* The `justifyContent` style property
*/
justify?: JsxStyleProps["justifyContent"] | undefined
/**
* The `flexWrap` style property
*/
wrap?: JsxStyleProps["flexWrap"] | undefined
/**
* A function that determines if a child should be skipped
*/
skip?: (child: React.ReactElement) => boolean | undefined
}
export const Group = memo(
forwardRef<HTMLDivElement, GroupProps>(function Group(props, ref) {
const {
align = "center",
justify = "flex-start",
children,
wrap,
skip,
...rest
} = props
const _children = useMemo(() => {
let childArray = Children.toArray(children).filter(isValidElement)
if (childArray.length === 1) return childArray
const validChildArray = childArray.filter((child) => !skip?.(child))
const validChildCount = validChildArray.length
if (validChildArray.length === 1) return childArray
return childArray.map((child) => {
const childProps = child.props as any
if (skip?.(child)) return child
const index = validChildArray.indexOf(child)
return cloneElement(child, {
...childProps,
"data-group-item": "",
"data-first": dataAttr(index === 0),
"data-last": dataAttr(index === validChildCount - 1),
"data-between": dataAttr(index > 0 && index < validChildCount - 1),
style: {
"--group-count": validChildCount,
"--group-index": index,
...(childProps?.style ?? {}),
},
} as any)
})
}, [children, skip])
return (
<StyledGroup
ref={ref}
alignItems={align}
justifyContent={justify}
flexWrap={wrap}
{...rest}
className={cx("chakra-group", props.className)}
>
{_children}
</StyledGroup>
)
}),
)
|