UNPKG

@iimm/formily-taro-vantui

Version:

form field components based on @antmjs/vantui and @formily/react

95 lines 8.19 kB
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); } var _excluded = ["value", "onChange", "defaultValue", "withFormItem", "options", "title", "required", "description", "error", "showFeedback", "alwaysShowFeedback", "feedback", "feedbackCls", "formItemProps", "readOnly", "disabled", "direction", "withCellGroup", "cellGroupProps", "cellProps", "radioGroupProps", "itemWrapperProps"]; function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; } function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; } function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); } function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); } function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); } function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); } function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; return arr2; } function _iterableToArrayLimit(arr, i) { var _i = null == arr ? null : "undefined" != typeof Symbol && arr[Symbol.iterator] || arr["@@iterator"]; if (null != _i) { var _s, _e, _x, _r, _arr = [], _n = !0, _d = !1; try { if (_x = (_i = _i.call(arr)).next, 0 === i) { if (Object(_i) !== _i) return; _n = !1; } else for (; !(_n = (_s = _x.call(_i)).done) && (_arr.push(_s.value), _arr.length !== i); _n = !0); } catch (err) { _d = !0, _e = err; } finally { try { if (!_n && null != _i.return && (_r = _i.return(), Object(_r) !== _r)) return; } finally { if (_d) throw _e; } } return _arr; } } function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; } function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; } function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; } import { useControllableValue, useMemoizedFn } from "ahooks"; import { View } from "@tarojs/components"; import { CellGroup, Radio, RadioGroup, Cell } from "@antmjs/vantui"; import { FormItemBase } from "../../layout/FormItem/FormItemBase"; import { jsx as _jsx } from "react/jsx-runtime"; export var RadioGroupBase = function RadioGroupBase(props) { var valueProp = props.value, onChangeProp = props.onChange, defaultValue = props.defaultValue, withFormItem = props.withFormItem, options = props.options, title = props.title, required = props.required, description = props.description, error = props.error, showFeedback = props.showFeedback, alwaysShowFeedback = props.alwaysShowFeedback, feedback = props.feedback, feedbackCls = props.feedbackCls, formItemProps = props.formItemProps, readOnly = props.readOnly, disabled = props.disabled, direction = props.direction, withCellGroup = props.withCellGroup, cellGroupProps = props.cellGroupProps, cellProps = props.cellProps, radioGroupProps = props.radioGroupProps, itemWrapperProps = props.itemWrapperProps, restProps = _objectWithoutProperties(props, _excluded); var _useControllableValue = useControllableValue(props), _useControllableValue2 = _slicedToArray(_useControllableValue, 2), value = _useControllableValue2[0], onChange = _useControllableValue2[1]; var onValueChange = useMemoizedFn(function (e) { if (readOnly || disabled) return; onChange(e === null || e === void 0 ? void 0 : e.detail); }); var dom = /*#__PURE__*/_jsx(RadioGroup, _objectSpread(_objectSpread({}, radioGroupProps || {}), {}, { direction: direction, value: value, disabled: disabled, onChange: onValueChange, children: withCellGroup ? /*#__PURE__*/_jsx(CellGroup, _objectSpread(_objectSpread({}, cellGroupProps || {}), {}, { children: options === null || options === void 0 ? void 0 : options.map(function (opt, index) { return /*#__PURE__*/_jsx(Cell, _objectSpread(_objectSpread({}, cellProps || {}), {}, { title: opt === null || opt === void 0 ? void 0 : opt.label, clickable: !(disabled || opt !== null && opt !== void 0 && opt.disabled), onClick: function onClick() { return onValueChange({ detail: opt === null || opt === void 0 ? void 0 : opt.value }); }, renderRightIcon: /*#__PURE__*/_jsx(Radio, { name: opt === null || opt === void 0 ? void 0 : opt.value }) })); }) })) : options === null || options === void 0 ? void 0 : options.map(function (opt, index) { return /*#__PURE__*/_jsx(Radio, _objectSpread(_objectSpread({ name: opt === null || opt === void 0 ? void 0 : opt.value, disabled: (opt === null || opt === void 0 ? void 0 : opt.disabled) || disabled }, restProps), {}, { children: opt === null || opt === void 0 ? void 0 : opt.label }), index); }) })); return withFormItem !== false ? /*#__PURE__*/_jsx(FormItemBase, _objectSpread(_objectSpread({}, formItemProps || {}), {}, { title: title, required: required, description: description, error: error, showFeedback: showFeedback, alwaysShowFeedback: alwaysShowFeedback, feedback: feedback, feedbackCls: feedbackCls, children: dom })) : /*#__PURE__*/_jsx(View, _objectSpread(_objectSpread({}, itemWrapperProps || {}), {}, { children: dom })); };