UNPKG

@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.

81 lines (80 loc) 2.79 kB
'use client'; import * as React from 'react'; import PropTypes from 'prop-types'; import { useComponentRenderer } from '../../utils/useComponentRenderer.js'; import { useSliderRootContext } from '../root/SliderRootContext.js'; import { sliderStyleHookMapping } from '../root/styleHooks.js'; import { useSliderValue } from './useSliderValue.js'; /** * 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 = /*#__PURE__*/React.forwardRef(function SliderValue(props, forwardedRef) { const { render, className, children, ...otherProps } = props; const { inputIdMap, state, values, format } = useSliderRootContext(); const { getRootProps, formattedValues } = useSliderValue({ format, inputIdMap, 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 { renderElement } = useComponentRenderer({ propGetter: getRootProps, render: render ?? 'output', state, className, ref: forwardedRef, extraProps: { children: typeof children === 'function' ? children(formattedValues, values) : defaultDisplayValue, ...otherProps }, customStyleHookMapping: sliderStyleHookMapping }); return renderElement(); }); export { SliderValue }; process.env.NODE_ENV !== "production" ? SliderValue.propTypes /* remove-proptypes */ = { // ┌────────────────────────────── Warning ──────────────────────────────┐ // │ These PropTypes are generated from the TypeScript type definitions. │ // │ To update them, edit the TypeScript types and run `pnpm proptypes`. │ // └─────────────────────────────────────────────────────────────────────┘ /** * @ignore */ children: PropTypes.func, /** * CSS class applied to the element, or a function that * returns a class based on the component’s state. */ className: PropTypes.oneOfType([PropTypes.func, PropTypes.string]), /** * Allows you to replace the component’s HTML element * with a different tag, or compose it with another component. * * Accepts a `ReactElement` or a function that returns the element to render. */ render: PropTypes.oneOfType([PropTypes.element, PropTypes.func]) } : void 0;