| import {useState as $3whtM$useState, useRef as $3whtM$useRef, useEffect as $3whtM$useEffect, useCallback as $3whtM$useCallback} from "react"; |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| function $458b0a5536c1a7cf$export$40bfa8c7b0832715(value, defaultValue, onChange) { |
| let [stateValue, setStateValue] = (0, $3whtM$useState)(value || defaultValue); |
| let isControlledRef = (0, $3whtM$useRef)(value !== undefined); |
| let isControlled = value !== undefined; |
| (0, $3whtM$useEffect)(()=>{ |
| let wasControlled = isControlledRef.current; |
| if (wasControlled !== isControlled) console.warn(`WARN: A component changed from ${wasControlled ? 'controlled' : 'uncontrolled'} to ${isControlled ? 'controlled' : 'uncontrolled'}.`); |
| isControlledRef.current = isControlled; |
| }, [ |
| isControlled |
| ]); |
| let currentValue = isControlled ? value : stateValue; |
| let setValue = (0, $3whtM$useCallback)((value, ...args)=>{ |
| let onChangeCaller = (value, ...onChangeArgs)=>{ |
| if (onChange) { |
| if (!Object.is(currentValue, value)) onChange(value, ...onChangeArgs); |
| } |
| if (!isControlled) |
| |
| |
| |
| |
| currentValue = value; |
| }; |
| if (typeof value === 'function') { |
| console.warn('We can not support a function callback. See Github Issues for details https://github.com/adobe/react-spectrum/issues/2320'); |
| |
| |
| |
| |
| |
| let updateFunction = (oldValue, ...functionArgs)=>{ |
| let interceptedValue = value(isControlled ? currentValue : oldValue, ...functionArgs); |
| onChangeCaller(interceptedValue, ...args); |
| if (!isControlled) return interceptedValue; |
| return oldValue; |
| }; |
| setStateValue(updateFunction); |
| } else { |
| if (!isControlled) setStateValue(value); |
| onChangeCaller(value, ...args); |
| } |
| }, [ |
| isControlled, |
| currentValue, |
| onChange |
| ]); |
| return [ |
| currentValue, |
| setValue |
| ]; |
| } |
|
|
|
|
| export {$458b0a5536c1a7cf$export$40bfa8c7b0832715 as useControlledState}; |
| |
|
|