UNPKG

@clayui/shared

Version:
76 lines (75 loc) 3.15 kB
"use strict"; var __create = Object.create; var __defProp = Object.defineProperty; var __getOwnPropDesc = Object.getOwnPropertyDescriptor; var __getOwnPropNames = Object.getOwnPropertyNames; var __getProtoOf = Object.getPrototypeOf; var __hasOwnProp = Object.prototype.hasOwnProperty; var __export = (target, all) => { for (var name in all) __defProp(target, name, { get: all[name], enumerable: true }); }; var __copyProps = (to, from, except, desc) => { if (from && typeof from === "object" || typeof from === "function") { for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable }); } return to; }; var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps( // If the importer is in node compatibility mode or this is not an ESM // file that has been converted to a CommonJS file using a Babel- // compatible transform (i.e. "__esModule" has not been set), then set // "default" to the CommonJS "module.exports" for node compatibility. isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target, mod )); var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod); var useControlledState_exports = {}; __export(useControlledState_exports, { useControlledState: () => useControlledState }); module.exports = __toCommonJS(useControlledState_exports); var import_react = require("react"); var import_warning = __toESM(require("warning")); function useControlledState({ defaultName, defaultValue, handleName, name, onChange, value }) { const [stateValue, setStateValue] = (0, import_react.useState)( defaultValue === void 0 ? value : defaultValue ); const ref = (0, import_react.useRef)(value !== void 0); const wasControlled = ref.current; const isControlled = value !== void 0; if (wasControlled !== isControlled) { console.warn( `WARN: A component changed from ${wasControlled ? "controlled" : "uncontrolled"} to ${isControlled ? "controlled" : "uncontrolled"}. This is likely caused by the value changing from a defined to undefined, which should not happen. Decide between using a controlled or uncontrolled '${name}' prop for the lifetime of the component.` ); } ref.current = isControlled; (0, import_warning.default)( !(typeof onChange === "undefined" && typeof value !== "undefined"), `You provided a '${name}' prop for a component without a handler '${handleName}'. This will render the component with an internal state, if the component is to be uncontrolled, use '${defaultName}'. Otherwise, set the '${handleName}' handler.` ); const setValue = (0, import_react.useCallback)( (value2) => { if (!isControlled) { setStateValue(value2); } if (onChange) { onChange(value2); } }, [isControlled, onChange] ); if (!isControlled) { value = stateValue; } return [value, setValue, !isControlled]; }