UNPKG

cspace-ui

Version:
40 lines (39 loc) 1.59 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = withBooleanValue; var _react = _interopRequireDefault(require("react")); var _propTypes = _interopRequireDefault(require("prop-types")); function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; } function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); } /** * An enhancer that accepts a value prop, converts it to a boolean, and passes the boolean on to * the base component. The value 'true' is converted to true, and the value 'false' is converted * to false. Boolean values are passed directly to the base component. */ function withBooleanValue(BaseComponent) { function WithBooleanValue(props) { const { value, ...remainingProps } = props; let booleanValue; if (value === 'true') { booleanValue = true; } else if (value === 'false') { booleanValue = false; } else { booleanValue = value; } return /*#__PURE__*/_react.default.createElement(BaseComponent, _extends({ value: booleanValue // eslint-disable-next-line react/jsx-props-no-spreading }, remainingProps)); } WithBooleanValue.propTypes = { ...BaseComponent.propTypes, value: _propTypes.default.oneOfType([_propTypes.default.string, _propTypes.default.bool]) }; return WithBooleanValue; }