package.dist.components.field.use-field.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of react Show documentation
Show all versions of react Show documentation
A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.
The newest version!
'use client';
import { getWindow, dataAttr, ariaAttr } from '@zag-js/dom-query';
import { useRef, useId, useMemo } from 'react';
import { useSafeLayoutEffect } from '../../utils/use-safe-layout-effect.js';
import { useFieldsetContext } from '../fieldset/use-fieldset-context.js';
import { parts } from './field.anatomy.js';
const useField = (props) => {
const fieldset = useFieldsetContext();
const {
ids,
disabled = Boolean(fieldset?.disabled),
invalid = false,
readOnly = false,
required = false
} = props;
const hasErrorText = useRef(false);
const hasHelperText = useRef(false);
const id = props.id ?? useId();
const rootRef = useRef(null);
const rootId = ids?.control ?? `field::${id}`;
const errorTextId = ids?.errorText ?? `field::${id}::error-text`;
const helperTextId = ids?.helperText ?? `field::${id}::helper-text`;
const labelId = ids?.label ?? `field::${id}::label`;
useSafeLayoutEffect(() => {
const rootNode = rootRef.current;
if (!rootNode) return;
const win = getWindow(rootNode);
const doc = win.document;
const checkTextElements = () => {
hasErrorText.current = !!doc.getElementById(errorTextId);
hasHelperText.current = !!doc.getElementById(helperTextId);
};
checkTextElements();
const observer = new win.MutationObserver(checkTextElements);
observer.observe(rootNode, { childList: true, subtree: true });
return () => observer.disconnect();
}, [errorTextId, helperTextId]);
const labelIds = useMemo(() => {
const ids2 = [];
if (hasErrorText.current && invalid) ids2.push(errorTextId);
if (hasHelperText.current) ids2.push(helperTextId);
return ids2.join(" ") || void 0;
}, [invalid, errorTextId, helperTextId]);
const getRootProps = useMemo(
() => () => ({
...parts.root.attrs,
id: rootId,
ref: rootRef,
role: "group",
"data-disabled": dataAttr(disabled),
"data-invalid": dataAttr(invalid),
"data-readonly": dataAttr(readOnly)
}),
[disabled, invalid, readOnly, rootId]
);
const getLabelProps = useMemo(
() => () => ({
...parts.label.attrs,
id: labelId,
"data-disabled": dataAttr(disabled),
"data-invalid": dataAttr(invalid),
"data-readonly": dataAttr(readOnly),
htmlFor: id
}),
[disabled, invalid, readOnly, id, labelId]
);
const getControlProps = useMemo(
() => () => ({
"aria-describedby": labelIds,
"aria-invalid": ariaAttr(invalid),
"data-invalid": dataAttr(invalid),
"data-required": dataAttr(required),
"data-readonly": dataAttr(readOnly),
id,
required,
disabled,
readOnly
}),
[labelIds, invalid, required, readOnly, id, disabled]
);
const getInputProps = useMemo(
() => () => ({
...getControlProps(),
...parts.input.attrs
}),
[getControlProps]
);
const getTextareaProps = useMemo(
() => () => ({
...getControlProps(),
...parts.textarea.attrs
}),
[getControlProps]
);
const getSelectProps = useMemo(
() => () => ({
...getControlProps(),
...parts.select.attrs
}),
[getControlProps]
);
const getHelperTextProps = useMemo(
() => () => ({
id: helperTextId,
...parts.helperText.attrs
}),
[helperTextId]
);
const getErrorTextProps = useMemo(
() => () => ({
id: errorTextId,
...parts.errorText.attrs,
"aria-live": "polite"
}),
[errorTextId]
);
const getRequiredIndicatorProps = useMemo(
() => () => ({
"aria-hidden": true,
...parts.requiredIndicator.attrs
}),
[]
);
return {
ariaDescribedby: labelIds,
ids: {
root: rootId,
control: id,
label: labelId,
errorText: errorTextId,
helperText: helperTextId
},
refs: {
rootRef
},
disabled,
invalid,
readOnly,
required,
getLabelProps,
getRootProps,
getInputProps,
getTextareaProps,
getSelectProps,
getHelperTextProps,
getErrorTextProps,
getRequiredIndicatorProps
};
};
export { useField };
© 2015 - 2025 Weber Informatics LLC | Privacy Policy