File size: 3,677 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 |
"use client"
import type { Assign } from "@ark-ui/react"
import { Field as ArkField, useFieldContext } from "@ark-ui/react/field"
import { forwardRef } from "react"
import {
type HTMLChakraProps,
type SlotRecipeProps,
type UnstyledProp,
chakra,
createSlotRecipeContext,
} from "../../styled-system"
import { cx } from "../../utils"
import { createIcon } from "../icon"
////////////////////////////////////////////////////////////////////////////////////
const {
withProvider,
withContext,
useStyles: useFieldStyles,
useClassNames,
PropsProvider,
} = createSlotRecipeContext({ key: "field" })
export { useFieldStyles }
////////////////////////////////////////////////////////////////////////////////////
export interface FieldRootBaseProps
extends Assign<ArkField.RootBaseProps, SlotRecipeProps<"field">>,
UnstyledProp {}
export interface FieldRootProps
extends HTMLChakraProps<"div", FieldRootBaseProps> {}
export const FieldRoot = withProvider<HTMLDivElement, FieldRootProps>(
ArkField.Root,
"root",
{ forwardAsChild: true },
)
////////////////////////////////////////////////////////////////////////////////////
export const FieldPropsProvider =
PropsProvider as React.Provider<FieldRootBaseProps>
////////////////////////////////////////////////////////////////////////////////////
export interface FieldLabelProps
extends HTMLChakraProps<"label", ArkField.LabelBaseProps>,
UnstyledProp {}
export const FieldLabel = withContext<HTMLLabelElement, FieldLabelProps>(
ArkField.Label,
"label",
{ forwardAsChild: true },
)
////////////////////////////////////////////////////////////////////////////////////
export interface FieldHelperTextProps
extends HTMLChakraProps<"div", ArkField.HelperTextBaseProps>,
UnstyledProp {}
export const FieldHelperText = withContext<
HTMLDivElement,
FieldHelperTextProps
>(ArkField.HelperText, "helperText", { forwardAsChild: true })
////////////////////////////////////////////////////////////////////////////////////
export interface FieldErrorTextProps
extends HTMLChakraProps<"div", ArkField.ErrorTextBaseProps>,
UnstyledProp {}
export const FieldErrorText = withContext<HTMLDivElement, FieldErrorTextProps>(
ArkField.ErrorText,
"errorText",
{ forwardAsChild: true },
)
////////////////////////////////////////////////////////////////////////////////////
export interface FieldErrorIconProps extends HTMLChakraProps<"svg"> {}
export const FieldErrorIcon = createIcon({
d: "M11.983,0a12.206,12.206,0,0,0-8.51,3.653A11.8,11.8,0,0,0,0,12.207,11.779,11.779,0,0,0,11.8,24h.214A12.111,12.111,0,0,0,24,11.791h0A11.766,11.766,0,0,0,11.983,0ZM10.5,16.542a1.476,1.476,0,0,1,1.449-1.53h.027a1.527,1.527,0,0,1,1.523,1.47,1.475,1.475,0,0,1-1.449,1.53h-.027A1.529,1.529,0,0,1,10.5,16.542ZM11,12.5v-6a1,1,0,0,1,2,0v6a1,1,0,1,1-2,0Z",
})
////////////////////////////////////////////////////////////////////////////////////
export interface FieldRequiredIndicatorProps extends HTMLChakraProps<"span"> {
fallback?: React.ReactNode | undefined
}
export const FieldRequiredIndicator = forwardRef<
HTMLSpanElement,
FieldRequiredIndicatorProps
>(function RequiredIndicator(props, ref) {
const { fallback, children = "*", ...restProps } = props
const field = useFieldContext()
const classNames = useClassNames()
const styles = useFieldStyles()
if (!field?.required) {
return fallback
}
return (
<chakra.span
ref={ref}
aria-hidden="true"
{...restProps}
className={cx(classNames.requiredIndicator, props.className)}
css={[styles.requiredIndicator, props.css]}
>
{children}
</chakra.span>
)
})
|