@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.
72 lines (71 loc) • 2.59 kB
JavaScript
;
'use client';
var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.SliderValue = void 0;
var React = _interopRequireWildcard(require("react"));
var _formatNumber = require("../../utils/formatNumber");
var _useRenderElement = require("../../utils/useRenderElement");
var _SliderRootContext = require("../root/SliderRootContext");
var _stateAttributesMapping = require("../root/stateAttributesMapping");
/**
* Displays the current value of the slider as text.
* Renders an `<output>` element.
*
* Documentation: [Base UI Slider](https://base-ui.com/react/components/slider)
*/
const SliderValue = exports.SliderValue = /*#__PURE__*/React.forwardRef(function SliderValue(componentProps, forwardedRef) {
const {
'aria-live': ariaLive = 'off',
render,
className,
children,
...elementProps
} = componentProps;
const {
thumbMap,
state,
values,
formatOptionsRef,
locale
} = (0, _SliderRootContext.useSliderRootContext)();
const outputFor = React.useMemo(() => {
let htmlFor = '';
for (const thumbMetadata of thumbMap.values()) {
if (thumbMetadata?.inputId) {
htmlFor += `${thumbMetadata.inputId} `;
}
}
return htmlFor.trim() === '' ? undefined : htmlFor.trim();
}, [thumbMap]);
const formattedValues = React.useMemo(() => {
const arr = [];
for (let i = 0; i < values.length; i += 1) {
arr.push((0, _formatNumber.formatNumber)(values[i], locale, formatOptionsRef.current ?? undefined));
}
return arr;
}, [formatOptionsRef, locale, values]);
const defaultDisplayValue = React.useMemo(() => {
const arr = [];
for (let i = 0; i < values.length; i += 1) {
arr.push(formattedValues[i] || values[i]);
}
return arr.join(' – ');
}, [values, formattedValues]);
const element = (0, _useRenderElement.useRenderElement)('output', componentProps, {
state,
ref: forwardedRef,
props: [{
// off by default because it will keep announcing when the slider is being dragged
// and also when the value is changing (but not yet committed)
'aria-live': ariaLive,
children: typeof children === 'function' ? children(formattedValues, values) : defaultDisplayValue,
htmlFor: outputFor
}, elementProps],
stateAttributesMapping: _stateAttributesMapping.sliderStateAttributesMapping
});
return element;
});
if (process.env.NODE_ENV !== "production") SliderValue.displayName = "SliderValue";