@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.
38 lines (37 loc) • 1.32 kB
JavaScript
'use client';
import * as React from 'react';
import { useRenderElement } from "../../utils/useRenderElement.js";
import { useProgressRootContext } from "../root/ProgressRootContext.js";
import { progressStateAttributesMapping } from "../root/stateAttributesMapping.js";
/**
* A text label displaying the current value.
* Renders a `<span>` element.
*
* Documentation: [Base UI Progress](https://base-ui.com/react/components/progress)
*/
export const ProgressValue = /*#__PURE__*/React.forwardRef(function ProgressValue(componentProps, forwardedRef) {
const {
className,
render,
children,
...elementProps
} = componentProps;
const {
value,
formattedValue,
state
} = useProgressRootContext();
const formattedValueArg = value == null ? 'indeterminate' : formattedValue;
const formattedValueDisplay = value == null ? null : formattedValue;
const element = useRenderElement('span', componentProps, {
state,
ref: forwardedRef,
props: [{
'aria-hidden': true,
children: typeof children === 'function' ? children(formattedValueArg, value) : formattedValueDisplay
}, elementProps],
stateAttributesMapping: progressStateAttributesMapping
});
return element;
});
if (process.env.NODE_ENV !== "production") ProgressValue.displayName = "ProgressValue";