UNPKG

@brizy/ui

Version:
64 lines (63 loc) 3.06 kB
"use strict"; var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; var desc = Object.getOwnPropertyDescriptor(m, k); if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { desc = { enumerable: true, get: function() { return m[k]; } }; } Object.defineProperty(o, k2, desc); }) : (function(o, m, k, k2) { if (k2 === undefined) k2 = k; o[k2] = m[k]; })); var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { Object.defineProperty(o, "default", { enumerable: true, value: v }); }) : function(o, v) { o["default"] = v; }); var __importStar = (this && this.__importStar) || (function () { var ownKeys = function(o) { ownKeys = Object.getOwnPropertyNames || function (o) { var ar = []; for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; return ar; }; return ownKeys(o); }; return function (mod) { if (mod && mod.__esModule) return mod; var result = {}; if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); __setModuleDefault(result, mod); return result; }; })(); var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.RadioGroup = void 0; const react_1 = __importStar(require("react")); const group_1 = __importDefault(require("antd/lib/radio/group")); const classNamesFn_1 = require("../classNamesFn"); const RadioGroup = ({ value, children, type = "default", options, disabled, onChange, className, }) => { const optionType = type === "default" ? "default" : "button"; const buttonStyle = type === "default" ? undefined : type; //Here valueProp is made because of bug from antd that make the options to be without checked state const valueProp = value ? { value } : {}; const _className = (0, classNamesFn_1.classNames)(className)("radio-group"); const renderChildren = (0, react_1.useMemo)(() => { return react_1.default.Children.map(children, child => { if ((0, react_1.isValidElement)(child) && type !== "default") { const props = { type: "button" }; return react_1.default.cloneElement(child, props); } return child; }); }, [children, type]); const _onChange = (0, react_1.useCallback)((e) => { onChange === null || onChange === void 0 ? void 0 : onChange(e.target.value); }, [onChange]); return (react_1.default.createElement(group_1.default, Object.assign({ optionType: optionType, buttonStyle: buttonStyle, options: options, disabled: disabled, className: _className, onChange: _onChange }, valueProp), renderChildren)); }; exports.RadioGroup = RadioGroup;