multiselect-qa
Version:
Select с мультивыбором
117 lines (90 loc) • 4.79 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
var _createClass = 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); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
var _react = require("react");
var _react2 = _interopRequireDefault(_react);
var _checkboxQa = require("checkbox-qa");
var _checkboxQa2 = _interopRequireDefault(_checkboxQa);
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
/*
*
*/
var CheckboxOption = function (_React$Component) {
_inherits(CheckboxOption, _React$Component);
function CheckboxOption(props) {
_classCallCheck(this, CheckboxOption);
var _this = _possibleConstructorReturn(this, (CheckboxOption.__proto__ || Object.getPrototypeOf(CheckboxOption)).call(this, props));
_this.state = {};
_this.checkboxCallbacks = {};
_this.clickLabel = _this.clickLabel.bind(_this);
_this.check = _this.check.bind(_this);
return _this;
}
// клик по label (у checkbox свой внутренний обработчик)
_createClass(CheckboxOption, [{
key: "clickLabel",
value: function clickLabel() {
this.props.data.isChecked = this.props.data.isChecked ? false : true;
// для вида
this.setState({ isChecked: this.props.data.isChecked });
if (this.checkboxCallbacks.$check) {
this.checkboxCallbacks.$check();
}
if (this.props.clickOption) {
this.props.clickOption();
}
}
// клик по checkbox (из внутреннего обработчика)
}, {
key: "check",
value: function check() {
this.props.data.isChecked = this.props.data.isChecked ? false : true;
// для вида
this.setState({ isChecked: this.props.data.isChecked });
if (this.props.clickOption) {
this.props.clickOption();
}
}
// для проведения массовой очистки
}, {
key: "componentDidUpdate",
value: function componentDidUpdate() {
if (!this.props.data.isChecked) {
if (this.checkboxCallbacks.$clear) {
this.checkboxCallbacks.$clear();
}
}
}
}, {
key: "render",
value: function render() {
return _react2.default.createElement(
"div",
{ className: "CheckboxOption " + this.props.data.isChecked },
_react2.default.createElement(
"div",
{ className: "checkbox" },
_react2.default.createElement(_checkboxQa2.default, {
isChecked: this.props.data.isChecked,
callbacks: this.checkboxCallbacks,
check: this.check
})
),
_react2.default.createElement(
"div",
{ className: "label", onClick: this.clickLabel },
this.props.data.label
),
_react2.default.createElement("div", { className: "cle" })
);
}
}]);
return CheckboxOption;
}(_react2.default.Component);
;
exports.default = CheckboxOption;