UNPKG

@nexara/nativeflow

Version:

Beautiful, responsive, and customizable UI components for React Native – built for performance and seamless experiences.

46 lines (45 loc) 2.07 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = void 0; var _react = _interopRequireWildcard(require("react")); var _index = require("../StyledComponents/index.js"); var _jsxRuntime = require("react/jsx-runtime"); function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); } const RadioGroup = ({ name, defaultValue, children, onSelect, ...rest }) => { const [selectedChildren, setSelectedChildren] = (0, _react.useState)(defaultValue ?? ''); const renderChildren = (0, _react.useCallback)(() => { return _react.default.Children.toArray(children).map(child => { if (/*#__PURE__*/_react.default.isValidElement(child)) { return /*#__PURE__*/_react.default.cloneElement(child, { active: selectedChildren === child.props.value, onPress: () => { if (!('disabled' in child.props) && !child?.props?.disabled) { child.props?.onPress?.(); onSelect?.(name || child.props.name, child.props.value); setSelectedChildren(child?.props?.value); } } }); } return null; }); }, [children, selectedChildren]); return /*#__PURE__*/(0, _jsxRuntime.jsx)(_jsxRuntime.Fragment, { children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_index.StyledView, { flexDirection: "row", gap: 15, ...rest, children: renderChildren() }) }); }; var _default = exports.default = RadioGroup; //# sourceMappingURL=RadioGroup.js.map