256 lines
12 KiB
JavaScript
256 lines
12 KiB
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports["default"] = exports.GroupContext = void 0;
|
|
|
|
var React = _interopRequireWildcard(require("react"));
|
|
|
|
var PropTypes = _interopRequireWildcard(require("prop-types"));
|
|
|
|
var _classnames = _interopRequireDefault(require("classnames"));
|
|
|
|
var _omit = _interopRequireDefault(require("omit.js"));
|
|
|
|
var _Checkbox = _interopRequireDefault(require("./Checkbox"));
|
|
|
|
var _configProvider = require("../config-provider");
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
|
|
function _getRequireWildcardCache() { if (typeof WeakMap !== "function") return null; var cache = new WeakMap(); _getRequireWildcardCache = function _getRequireWildcardCache() { return cache; }; return cache; }
|
|
|
|
function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
|
|
function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
|
|
|
|
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
|
|
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
|
|
function _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread(); }
|
|
|
|
function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread 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(n); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
|
|
|
|
function _iterableToArray(iter) { if (typeof Symbol !== "undefined" && Symbol.iterator in Object(iter)) return Array.from(iter); }
|
|
|
|
function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); }
|
|
|
|
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 _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
|
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|
|
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
|
|
|
|
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
|
|
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
|
|
function _createSuper(Derived) { return function () { var Super = _getPrototypeOf(Derived), result; if (_isNativeReflectConstruct()) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
|
|
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
|
|
|
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
|
|
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
|
|
|
|
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
|
|
var __rest = void 0 && (void 0).__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;
|
|
};
|
|
|
|
var GroupContext = React.createContext(null);
|
|
exports.GroupContext = GroupContext;
|
|
|
|
var CheckboxGroup = /*#__PURE__*/function (_React$PureComponent) {
|
|
_inherits(CheckboxGroup, _React$PureComponent);
|
|
|
|
var _super = _createSuper(CheckboxGroup);
|
|
|
|
function CheckboxGroup(props) {
|
|
var _this;
|
|
|
|
_classCallCheck(this, CheckboxGroup);
|
|
|
|
_this = _super.call(this, props);
|
|
|
|
_this.cancelValue = function (value) {
|
|
_this.setState(function (_ref) {
|
|
var registeredValues = _ref.registeredValues;
|
|
return {
|
|
registeredValues: registeredValues.filter(function (val) {
|
|
return val !== value;
|
|
})
|
|
};
|
|
});
|
|
};
|
|
|
|
_this.registerValue = function (value) {
|
|
_this.setState(function (_ref2) {
|
|
var registeredValues = _ref2.registeredValues;
|
|
return {
|
|
registeredValues: [].concat(_toConsumableArray(registeredValues), [value])
|
|
};
|
|
});
|
|
};
|
|
|
|
_this.toggleOption = function (option) {
|
|
var registeredValues = _this.state.registeredValues;
|
|
|
|
var optionIndex = _this.state.value.indexOf(option.value);
|
|
|
|
var value = _toConsumableArray(_this.state.value);
|
|
|
|
if (optionIndex === -1) {
|
|
value.push(option.value);
|
|
} else {
|
|
value.splice(optionIndex, 1);
|
|
}
|
|
|
|
if (!('value' in _this.props)) {
|
|
_this.setState({
|
|
value: value
|
|
});
|
|
}
|
|
|
|
var onChange = _this.props.onChange;
|
|
|
|
if (onChange) {
|
|
var options = _this.getOptions();
|
|
|
|
onChange(value.filter(function (val) {
|
|
return registeredValues.indexOf(val) !== -1;
|
|
}).sort(function (a, b) {
|
|
var indexA = options.findIndex(function (opt) {
|
|
return opt.value === a;
|
|
});
|
|
var indexB = options.findIndex(function (opt) {
|
|
return opt.value === b;
|
|
});
|
|
return indexA - indexB;
|
|
}));
|
|
}
|
|
};
|
|
|
|
_this.renderGroup = function (_ref3) {
|
|
var getPrefixCls = _ref3.getPrefixCls,
|
|
direction = _ref3.direction;
|
|
|
|
var _assertThisInitialize = _assertThisInitialized(_this),
|
|
props = _assertThisInitialize.props,
|
|
state = _assertThisInitialize.state;
|
|
|
|
var customizePrefixCls = props.prefixCls,
|
|
className = props.className,
|
|
style = props.style,
|
|
options = props.options,
|
|
restProps = __rest(props, ["prefixCls", "className", "style", "options"]);
|
|
|
|
var prefixCls = getPrefixCls('checkbox', customizePrefixCls);
|
|
var groupPrefixCls = "".concat(prefixCls, "-group");
|
|
var domProps = (0, _omit["default"])(restProps, ['children', 'defaultValue', 'value', 'onChange', 'disabled']);
|
|
var children = props.children;
|
|
|
|
if (options && options.length > 0) {
|
|
children = _this.getOptions().map(function (option) {
|
|
return /*#__PURE__*/React.createElement(_Checkbox["default"], {
|
|
prefixCls: prefixCls,
|
|
key: option.value.toString(),
|
|
disabled: 'disabled' in option ? option.disabled : props.disabled,
|
|
value: option.value,
|
|
checked: state.value.indexOf(option.value) !== -1,
|
|
onChange: option.onChange,
|
|
className: "".concat(groupPrefixCls, "-item"),
|
|
style: option.style
|
|
}, option.label);
|
|
});
|
|
}
|
|
|
|
var context = {
|
|
toggleOption: _this.toggleOption,
|
|
value: _this.state.value,
|
|
disabled: _this.props.disabled,
|
|
name: _this.props.name,
|
|
// https://github.com/ant-design/ant-design/issues/16376
|
|
registerValue: _this.registerValue,
|
|
cancelValue: _this.cancelValue
|
|
};
|
|
var classString = (0, _classnames["default"])(groupPrefixCls, className, _defineProperty({}, "".concat(groupPrefixCls, "-rtl"), direction === 'rtl'));
|
|
return /*#__PURE__*/React.createElement("div", _extends({
|
|
className: classString,
|
|
style: style
|
|
}, domProps), /*#__PURE__*/React.createElement(GroupContext.Provider, {
|
|
value: context
|
|
}, children));
|
|
};
|
|
|
|
_this.state = {
|
|
value: props.value || props.defaultValue || [],
|
|
registeredValues: []
|
|
};
|
|
return _this;
|
|
}
|
|
|
|
_createClass(CheckboxGroup, [{
|
|
key: "getOptions",
|
|
value: function getOptions() {
|
|
var options = this.props.options; // https://github.com/Microsoft/TypeScript/issues/7960
|
|
|
|
return options.map(function (option) {
|
|
if (typeof option === 'string') {
|
|
return {
|
|
label: option,
|
|
value: option
|
|
};
|
|
}
|
|
|
|
return option;
|
|
});
|
|
}
|
|
}, {
|
|
key: "render",
|
|
value: function render() {
|
|
return /*#__PURE__*/React.createElement(_configProvider.ConfigConsumer, null, this.renderGroup);
|
|
}
|
|
}], [{
|
|
key: "getDerivedStateFromProps",
|
|
value: function getDerivedStateFromProps(nextProps) {
|
|
if ('value' in nextProps) {
|
|
return {
|
|
value: nextProps.value || []
|
|
};
|
|
}
|
|
|
|
return null;
|
|
}
|
|
}]);
|
|
|
|
return CheckboxGroup;
|
|
}(React.PureComponent);
|
|
|
|
CheckboxGroup.defaultProps = {
|
|
options: []
|
|
};
|
|
CheckboxGroup.propTypes = {
|
|
defaultValue: PropTypes.array,
|
|
value: PropTypes.array,
|
|
options: PropTypes.array.isRequired,
|
|
onChange: PropTypes.func
|
|
};
|
|
var _default = CheckboxGroup;
|
|
exports["default"] = _default; |