123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- "use client";
- var __rest = this && this.__rest || function (s, e) {
- var t = {};
- for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
- if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
- if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];
- }
- return t;
- };
- import * as React from 'react';
- import LoadingOutlined from "@ant-design/icons/es/icons/LoadingOutlined";
- import classNames from 'classnames';
- import RcSwitch from 'rc-switch';
- import useMergedState from "rc-util/es/hooks/useMergedState";
- import Wave from '../_util/wave';
- import { ConfigContext } from '../config-provider';
- import DisabledContext from '../config-provider/DisabledContext';
- import useSize from '../config-provider/hooks/useSize';
- import useStyle from './style';
- const InternalSwitch = /*#__PURE__*/React.forwardRef((props, ref) => {
- const {
- prefixCls: customizePrefixCls,
- size: customizeSize,
- disabled: customDisabled,
- loading,
- className,
- rootClassName,
- style,
- checked: checkedProp,
- value,
- defaultChecked: defaultCheckedProp,
- defaultValue,
- onChange
- } = props,
- restProps = __rest(props, ["prefixCls", "size", "disabled", "loading", "className", "rootClassName", "style", "checked", "value", "defaultChecked", "defaultValue", "onChange"]);
- const [checked, setChecked] = useMergedState(false, {
- value: checkedProp !== null && checkedProp !== void 0 ? checkedProp : value,
- defaultValue: defaultCheckedProp !== null && defaultCheckedProp !== void 0 ? defaultCheckedProp : defaultValue
- });
- const {
- getPrefixCls,
- direction,
- switch: SWITCH
- } = React.useContext(ConfigContext);
- // ===================== Disabled =====================
- const disabled = React.useContext(DisabledContext);
- const mergedDisabled = (customDisabled !== null && customDisabled !== void 0 ? customDisabled : disabled) || loading;
- const prefixCls = getPrefixCls('switch', customizePrefixCls);
- const loadingIcon = /*#__PURE__*/React.createElement("div", {
- className: `${prefixCls}-handle`
- }, loading && /*#__PURE__*/React.createElement(LoadingOutlined, {
- className: `${prefixCls}-loading-icon`
- }));
- // Style
- const [wrapCSSVar, hashId, cssVarCls] = useStyle(prefixCls);
- const mergedSize = useSize(customizeSize);
- const classes = classNames(SWITCH === null || SWITCH === void 0 ? void 0 : SWITCH.className, {
- [`${prefixCls}-small`]: mergedSize === 'small',
- [`${prefixCls}-loading`]: loading,
- [`${prefixCls}-rtl`]: direction === 'rtl'
- }, className, rootClassName, hashId, cssVarCls);
- const mergedStyle = Object.assign(Object.assign({}, SWITCH === null || SWITCH === void 0 ? void 0 : SWITCH.style), style);
- const changeHandler = (...args) => {
- setChecked(args[0]);
- onChange === null || onChange === void 0 ? void 0 : onChange.apply(void 0, args);
- };
- return wrapCSSVar(/*#__PURE__*/React.createElement(Wave, {
- component: "Switch",
- disabled: mergedDisabled
- }, /*#__PURE__*/React.createElement(RcSwitch, Object.assign({}, restProps, {
- checked: checked,
- onChange: changeHandler,
- prefixCls: prefixCls,
- className: classes,
- style: mergedStyle,
- disabled: mergedDisabled,
- ref: ref,
- loadingIcon: loadingIcon
- }))));
- });
- const Switch = InternalSwitch;
- Switch.__ANT_SWITCH = true;
- if (process.env.NODE_ENV !== 'production') {
- Switch.displayName = 'Switch';
- }
- export default Switch;
|