@base-ui-components/react
Version:
Base UI is a library of headless ('unstyled') React components and low-level hooks. You gain complete control over your app's CSS and accessibility features.
74 lines (70 loc) • 2.29 kB
JavaScript
'use client';
import * as React from 'react';
import { useComboboxItemContext } from "../item/ComboboxItemContext.js";
import { useTransitionStatus } from "../../utils/useTransitionStatus.js";
import { useOpenChangeComplete } from "../../utils/useOpenChangeComplete.js";
import { useRenderElement } from "../../utils/useRenderElement.js";
import { transitionStatusMapping } from "../../utils/stateAttributesMapping.js";
/**
* Indicates whether the item is selected.
* Renders a `<span>` element.
*/
import { jsx as _jsx } from "react/jsx-runtime";
export const ComboboxItemIndicator = /*#__PURE__*/React.forwardRef(function ComboboxItemIndicator(componentProps, forwardedRef) {
const keepMounted = componentProps.keepMounted ?? false;
const {
selected
} = useComboboxItemContext();
const shouldRender = keepMounted || selected;
if (!shouldRender) {
return null;
}
// eslint-disable-next-line @typescript-eslint/no-use-before-define
return /*#__PURE__*/_jsx(Inner, {
...componentProps,
ref: forwardedRef
});
});
/** The core implementation of the indicator is split here to avoid paying the hooks
* costs unless the element needs to be mounted. */
if (process.env.NODE_ENV !== "production") ComboboxItemIndicator.displayName = "ComboboxItemIndicator";
const Inner = /*#__PURE__*/React.memo(/*#__PURE__*/React.forwardRef((componentProps, forwardedRef) => {
const {
render,
className,
keepMounted,
...elementProps
} = componentProps;
const {
selected
} = useComboboxItemContext();
const indicatorRef = React.useRef(null);
const {
transitionStatus,
setMounted
} = useTransitionStatus(selected);
const state = React.useMemo(() => ({
selected,
transitionStatus
}), [selected, transitionStatus]);
const element = useRenderElement('span', componentProps, {
ref: [forwardedRef, indicatorRef],
state,
props: [{
'aria-hidden': true,
children: '✔️'
}, elementProps],
stateAttributesMapping: transitionStatusMapping
});
useOpenChangeComplete({
open: selected,
ref: indicatorRef,
onComplete() {
if (!selected) {
setMounted(false);
}
}
});
return element;
}));
if (process.env.NODE_ENV !== "production") Inner.displayName = "Inner";