@integec/grid-tools
Version:
Integ Grid Tools
164 lines (127 loc) • 7.39 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports["default"] = void 0;
var _isNil2 = _interopRequireDefault(require("ramda/src/isNil"));
var _react = _interopRequireDefault(require("react"));
var _index = _interopRequireWildcard(require("../../index"));
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 _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
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 _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _nonIterableSpread(); }
function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance"); }
function _iterableToArray(iter) { if (Symbol.iterator in Object(iter) || Object.prototype.toString.call(iter) === "[object Arguments]") return Array.from(iter); }
function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = new Array(arr.length); i < arr.length; 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 _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 _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
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 _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; }
var ControlledEditDemo =
/*#__PURE__*/
function (_React$Component) {
_inherits(ControlledEditDemo, _React$Component);
function ControlledEditDemo() {
var _getPrototypeOf2;
var _this;
_classCallCheck(this, ControlledEditDemo);
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
args[_key] = arguments[_key];
}
_this = _possibleConstructorReturn(this, (_getPrototypeOf2 = _getPrototypeOf(ControlledEditDemo)).call.apply(_getPrototypeOf2, [this].concat(args)));
_defineProperty(_assertThisInitialized(_this), "state", {
data: _this.props.data,
showAdd: false
});
_defineProperty(_assertThisInitialized(_this), "onEdit", function (_ref, done) {
var originalRow = _ref.originalRow,
editedRow = _ref.editedRow;
if (originalRow) {
_this.setState(function (_ref2) {
var data = _ref2.data;
return {
data: data.map(function (row) {
return row === originalRow ? editedRow : row;
})
};
});
} else {
_this.setState(function (_ref3) {
var data = _ref3.data;
return {
data: [editedRow].concat(_toConsumableArray(data)),
showAdd: false
};
}, done);
}
});
_defineProperty(_assertThisInitialized(_this), "onEditCancel", function (_) {
return _this.setState({
showAdd: false
});
});
_defineProperty(_assertThisInitialized(_this), "addRow", function (_) {
return _this.setState({
showAdd: true
});
});
_defineProperty(_assertThisInitialized(_this), "removeRow", function (_) {
return _this.setState(function (_ref4) {
var data = _ref4.data;
return {
data: data.filter(function (row) {
return (0, _isNil2["default"])(_this.selectedRows) || !_this.selectedRows.includes(row);
})
};
});
});
_defineProperty(_assertThisInitialized(_this), "selectionChange", function (_ref5) {
var selectedRows = _ref5.selectedRows;
_this.selectedRows = selectedRows;
});
return _this;
}
_createClass(ControlledEditDemo, [{
key: "render",
value: function render() {
var _this$state = this.state,
data = _this$state.data,
showAdd = _this$state.showAdd;
var _this$props = this.props,
headers = _this$props.headers,
controlled = _this$props.controlled;
return _react["default"].createElement("div", null, _react["default"].createElement("div", {
style: {
marginBottom: '.3em'
}
}, _react["default"].createElement("button", {
onClick: this.addRow
}, "Add Row"), _react["default"].createElement("button", {
onClick: this.removeRow
}, "Remove Row")), _react["default"].createElement(_index["default"], {
data: data,
headers: headers,
rowsPerPage: 15,
render: (0, _index.flexGridRenderer)({
renderRowEditorContent: (0, _index.renderRowEditorContent)({
headerWidth: '130px'
})
}),
onEdit: controlled ? this.onEdit : undefined,
onSelectionChange: this.selectionChange,
isEditable: true,
showAdd: showAdd,
onEditCancel: this.onEditCancel
}));
}
}]);
return ControlledEditDemo;
}(_react["default"].Component);
var _default = ControlledEditDemo;
exports["default"] = _default;
//# sourceMappingURL=ControlledEditDemo.js.map