@canner/antd-array-table
Version:
array table
190 lines (151 loc) • 8.25 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _react = _interopRequireWildcard(require("react"));
var _editModal = _interopRequireDefault(require("./editModal"));
var _addModal = _interopRequireDefault(require("./addModal"));
var _reactIntl = require("react-intl");
var _styledComponents = _interopRequireDefault(require("styled-components"));
var _antdShareTable = _interopRequireDefault(require("@canner/antd-share-table"));
var _class, _class2, _temp;
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = Object.defineProperty && Object.getOwnPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : {}; if (desc.get || desc.set) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } } newObj.default = obj; return newObj; } }
function _typeof(obj) { 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 _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 _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
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 _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
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 _templateObject() {
var data = _taggedTemplateLiteral(["\n .antd td {\n white-space: nowrap;\n }\n .ant-table-thead > tr > th,\n .ant-table-tbody > tr > td {\n word-break: initial;\n }\n"]);
_templateObject = function _templateObject() {
return data;
};
return data;
}
function _taggedTemplateLiteral(strings, raw) { if (!raw) { raw = strings.slice(0); } return Object.freeze(Object.defineProperties(strings, { raw: { value: Object.freeze(raw) } })); }
var Wrapper = _styledComponents.default.div(_templateObject());
var TableArrayPlugin = (0, _reactIntl.injectIntl)(_class = (_temp = _class2 =
/*#__PURE__*/
function (_Component) {
_inherits(TableArrayPlugin, _Component);
function TableArrayPlugin(props) {
var _this;
_classCallCheck(this, TableArrayPlugin);
_this = _possibleConstructorReturn(this, _getPrototypeOf(TableArrayPlugin).call(this, props));
_defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), "editModal", void 0);
_defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), "addModal", void 0);
_defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), "update", function (text, record) {
_this.editModal && _this.editModal.showModal(record.__index);
});
_defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), "delete", function (text, record) {
var index = record.__index;
var _this$props = _this.props,
onChange = _this$props.onChange,
deploy = _this$props.deploy,
refId = _this$props.refId,
value = _this$props.value;
onChange(refId.child(index), 'delete').then(function () {
deploy(refId.getPathArr()[0], value[index].id);
});
});
_defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), "create", function () {
var value = _this.props.value;
_this.addModal && _this.addModal.showModal(value.length);
});
_this.state = {
showAddModal: false,
showEditModal: false,
value: props.value
};
return _this;
}
_createClass(TableArrayPlugin, [{
key: "render",
value: function render() {
var _this2 = this;
var _this$props2 = this.props,
refId = _this$props2.refId,
uiParams = _this$props2.uiParams,
onChange = _this$props2.onChange,
items = _this$props2.items,
deploy = _this$props2.deploy,
intl = _this$props2.intl,
reset = _this$props2.reset,
toolbar = _this$props2.toolbar,
goTo = _this$props2.goTo,
rootValue = _this$props2.rootValue,
request = _this$props2.request,
keyName = _this$props2.keyName,
_this$props2$disabled = _this$props2.disabled,
disabled = _this$props2$disabled === void 0 ? {} : _this$props2$disabled;
var value = this.state.value;
return _react.default.createElement(Wrapper, null, _react.default.createElement(_antdShareTable.default, {
refId: refId,
uiParams: uiParams,
onChange: onChange,
items: items,
deploy: deploy,
intl: intl,
reset: reset,
toolbar: toolbar,
goTo: goTo,
rootValue: rootValue,
request: request,
keyName: keyName,
disabled: disabled,
value: value,
delete: this.delete,
create: this.create,
update: this.update
}), _react.default.createElement(_editModal.default, {
ref: function ref(modal) {
return _this2.editModal = modal;
},
refId: refId,
updateKeys: uiParams.updateKeys,
updateShowModal: function updateShowModal(state) {
return _this2.setState({
showEditModal: state
});
},
onChange: onChange,
reset: reset
}), _react.default.createElement(_addModal.default, {
ref: function ref(modal) {
return _this2.addModal = modal;
},
refId: refId,
reset: reset,
updateShowModal: function updateShowModal(state) {
return _this2.setState({
showAddModal: state
});
},
createKeys: uiParams.createKeys,
onChange: onChange,
items: items.items
}));
}
}], [{
key: "getDerivedStateFromProps",
value: function getDerivedStateFromProps(nextProps, nextState) {
if (!nextState.showAddModal && !nextState.showEditModal) {
return {
value: nextProps.value
};
}
}
}]);
return TableArrayPlugin;
}(_react.Component), _defineProperty(_class2, "defaultProps", {
value: [],
showPagination: true
}), _temp)) || _class;
exports.default = TableArrayPlugin;