UNPKG

choerodon-ui

Version:

An enterprise-class UI design language and React-based implementation

189 lines (167 loc) 6.16 kB
import _extends from "@babel/runtime/helpers/extends"; import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties"; import _objectSpread from "@babel/runtime/helpers/objectSpread2"; import _classCallCheck from "@babel/runtime/helpers/classCallCheck"; import _createClass from "@babel/runtime/helpers/createClass"; import _assertThisInitialized from "@babel/runtime/helpers/assertThisInitialized"; import _inherits from "@babel/runtime/helpers/inherits"; import _createSuper from "@babel/runtime/helpers/createSuper"; import _defineProperty from "@babel/runtime/helpers/defineProperty"; var _excluded = ["prefixCls", "className", "style", "name", "id", "type", "disabled", "readOnly", "tabIndex", "onClick", "onFocus", "onBlur", "autoFocus", "value", "checkedValue", "unCheckedValue"]; import React, { Component } from 'react'; import classNames from 'classnames'; import PureRenderMixin from '../util/PureRenderMixin'; var Checkbox = /*#__PURE__*/function (_Component) { _inherits(Checkbox, _Component); var _super = _createSuper(Checkbox); function Checkbox(_props) { var _this; _classCallCheck(this, Checkbox); _this = _super.call(this, _props); _defineProperty(_assertThisInitialized(_this), "handleChange", function (e) { var _assertThisInitialize = _assertThisInitialized(_this), props = _assertThisInitialize.props; if (props.disabled) { return; } if (!('checked' in props)) { _this.setState({ checked: e.target.checked }); } var _props$checkedValue = props.checkedValue, checkedValue = _props$checkedValue === void 0 ? true : _props$checkedValue, _props$unCheckedValue = props.unCheckedValue, unCheckedValue = _props$unCheckedValue === void 0 ? false : _props$unCheckedValue; var checked = e.target.checked; var value = checked ? checkedValue : unCheckedValue; props.onChange({ target: _objectSpread(_objectSpread({}, props), {}, { checked: value }), stopPropagation: function stopPropagation() { e.stopPropagation(); }, preventDefault: function preventDefault() { e.preventDefault(); }, nativeEvent: e.nativeEvent }); }); _defineProperty(_assertThisInitialized(_this), "saveInput", function (node) { _this.input = node; }); var _checked = false; if ('checked' in _props) { _checked = !!_props.checked; } else if ('value' in _props) { _checked = _props.checkedValue === _props.value; } else { _checked = !!_props.defaultChecked; } _this.state = { checked: _checked }; return _this; } _createClass(Checkbox, [{ key: "componentWillReceiveProps", value: function componentWillReceiveProps(nextProps) { if ('checked' in nextProps) { this.setState({ checked: nextProps.checked }); // modified by njq.niu@hand-china.com } else if ('value' in nextProps) { this.setState({ checked: nextProps.checkedValue === nextProps.value }); } } }, { key: "shouldComponentUpdate", value: function shouldComponentUpdate() { for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) { args[_key] = arguments[_key]; } return PureRenderMixin.shouldComponentUpdate.apply(this, args); } }, { key: "focus", value: function focus() { this.input.focus(); } }, { key: "blur", value: function blur() { this.input.blur(); } }, { key: "render", value: function render() { var _classNames; var _this$props = this.props, prefixCls = _this$props.prefixCls, className = _this$props.className, style = _this$props.style, name = _this$props.name, id = _this$props.id, type = _this$props.type, disabled = _this$props.disabled, readOnly = _this$props.readOnly, tabIndex = _this$props.tabIndex, onClick = _this$props.onClick, onFocus = _this$props.onFocus, onBlur = _this$props.onBlur, autoFocus = _this$props.autoFocus, value = _this$props.value, checkedValue = _this$props.checkedValue, unCheckedValue = _this$props.unCheckedValue, others = _objectWithoutProperties(_this$props, _excluded); var globalProps = Object.keys(others).reduce(function (prev, key) { if (key.substr(0, 5) === 'aria-' || key.substr(0, 5) === 'data-' || key === 'role') { prev[key] = others[key]; } return prev; }, {}); var checked = this.state.checked; var classString = classNames(prefixCls, className, (_classNames = {}, _defineProperty(_classNames, "".concat(prefixCls, "-checked"), checked), _defineProperty(_classNames, "".concat(prefixCls, "-disabled"), disabled), _classNames)); return /*#__PURE__*/React.createElement("span", { className: classString, style: style }, /*#__PURE__*/React.createElement("input", _extends({ name: name, id: id, type: type, readOnly: readOnly, disabled: disabled, tabIndex: tabIndex, className: "".concat(prefixCls, "-input"), checked: !!checked, onClick: onClick, onFocus: onFocus, onBlur: onBlur, onChange: this.handleChange, autoFocus: autoFocus, ref: this.saveInput, value: value }, globalProps)), /*#__PURE__*/React.createElement("span", { className: "".concat(prefixCls, "-inner") })); } }]); return Checkbox; }(Component); _defineProperty(Checkbox, "defaultProps", { prefixCls: 'rc-checkbox', className: '', style: {}, type: 'checkbox', defaultChecked: false, onFocus: function onFocus() {}, onBlur: function onBlur() {}, onChange: function onChange() {}, checkedValue: true, unCheckedValue: false }); export { Checkbox as default }; //# sourceMappingURL=Checkbox.js.map