@blueprintjs/table
Version:
Scalable interactive table component
133 lines • 7.37 kB
JavaScript
"use strict";
/*
* Copyright 2016 Palantir Technologies, Inc. All rights reserved.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.EditableCell = void 0;
var tslib_1 = require("tslib");
var classnames_1 = tslib_1.__importDefault(require("classnames"));
var React = tslib_1.__importStar(require("react"));
var core_1 = require("@blueprintjs/core");
var Classes = tslib_1.__importStar(require("../common/classes"));
var draggable_1 = require("../interactions/draggable");
var cell_1 = require("./cell");
// HACKHACK(adahiya): fix for Blueprint 6.0
// eslint-disable-next-line @typescript-eslint/no-deprecated
var EditableCell = /** @class */ (function (_super) {
tslib_1.__extends(EditableCell, _super);
function EditableCell(props) {
var _this = _super.call(this, props) || this;
_this.cellRef = React.createRef();
_this.contentsRef = React.createRef();
_this.handleKeyPress = function () {
if (_this.state.isEditing || !_this.props.isFocused) {
return;
}
// setting dirty value to empty string because apparently the text field will pick up the key and write it in there
_this.setState({ dirtyValue: "", isEditing: true, savedValue: _this.state.savedValue });
};
_this.handleEdit = function () {
_this.setState({ dirtyValue: _this.state.savedValue, isEditing: true });
};
_this.handleCancel = function (value) {
// don't strictly need to clear the dirtyValue, but it's better hygiene
_this.setState({ dirtyValue: undefined, isEditing: false });
_this.invokeCallback(_this.props.onCancel, value);
};
_this.handleChange = function (value) {
_this.setState({ dirtyValue: value });
_this.invokeCallback(_this.props.onChange, value);
};
_this.handleConfirm = function (value) {
_this.setState({ dirtyValue: undefined, isEditing: false, savedValue: value });
_this.invokeCallback(_this.props.onConfirm, value);
};
_this.handleCellActivate = function (_event) {
return true;
};
_this.handleCellDoubleClick = function (_event) {
_this.handleEdit();
};
_this.state = {
isEditing: false,
savedValue: props.value,
};
return _this;
}
EditableCell.prototype.componentDidMount = function () {
this.checkShouldFocus();
};
EditableCell.prototype.componentDidUpdate = function (prevProps) {
var didPropsChange = !core_1.Utils.shallowCompareKeys(this.props, prevProps, { exclude: ["style"] }) ||
!core_1.Utils.deepCompareKeys(this.props, prevProps, ["style"]);
var value = this.props.value;
if (didPropsChange && value != null) {
this.setState({ dirtyValue: value, savedValue: value });
}
this.checkShouldFocus();
};
EditableCell.prototype.shouldComponentUpdate = function (nextProps, nextState) {
return (!core_1.Utils.shallowCompareKeys(this.props, nextProps, { exclude: ["style"] }) ||
!core_1.Utils.shallowCompareKeys(this.state, nextState) ||
!core_1.Utils.deepCompareKeys(this.props, nextProps, ["style"]));
};
EditableCell.prototype.render = function () {
var _a;
var _b = this.props, onCancel = _b.onCancel, onChange = _b.onChange, onConfirm = _b.onConfirm, truncated = _b.truncated, wrapText = _b.wrapText, editableTextProps = _b.editableTextProps, spreadableProps = tslib_1.__rest(_b, ["onCancel", "onChange", "onConfirm", "truncated", "wrapText", "editableTextProps"]);
var _c = this.state, isEditing = _c.isEditing, dirtyValue = _c.dirtyValue, savedValue = _c.savedValue;
var interactive = spreadableProps.interactive || isEditing;
var cellContents;
if (isEditing) {
var className = editableTextProps ? editableTextProps.className : null;
cellContents = (React.createElement(core_1.EditableText, tslib_1.__assign({}, editableTextProps, { isEditing: true, className: (0, classnames_1.default)(Classes.TABLE_EDITABLE_TEXT, Classes.TABLE_EDITABLE_NAME, className), elementRef: this.contentsRef, intent: spreadableProps.intent, minWidth: 0, onCancel: this.handleCancel, onChange: this.handleChange, onConfirm: this.handleConfirm, onEdit: this.handleEdit, placeholder: "", selectAllOnFocus: false, value: dirtyValue })));
}
else {
var textClasses = (0, classnames_1.default)(Classes.TABLE_EDITABLE_TEXT, (_a = {},
_a[Classes.TABLE_TRUNCATED_TEXT] = truncated,
_a[Classes.TABLE_NO_WRAP_TEXT] = !wrapText,
_a));
cellContents = (React.createElement("div", { className: textClasses, ref: this.contentsRef }, savedValue));
}
return (React.createElement(cell_1.Cell, tslib_1.__assign({}, spreadableProps, { wrapText: wrapText, truncated: false, interactive: interactive, cellRef: this.cellRef, onKeyPress: this.handleKeyPress }),
React.createElement(draggable_1.Draggable, { onActivate: this.handleCellActivate, onDoubleClick: this.handleCellDoubleClick, preventDefault: false, stopPropagation: interactive, targetRef: this.contentsRef }, cellContents)));
};
EditableCell.prototype.renderHotkeys = function () {
var tabIndex = this.props.tabIndex;
return (React.createElement(core_1.Hotkeys, { tabIndex: tabIndex },
React.createElement(core_1.Hotkey, { key: "edit-cell", label: "Edit the currently focused cell", group: "Table", combo: "f2", onKeyDown: this.handleEdit })));
};
EditableCell.prototype.checkShouldFocus = function () {
var _a;
if (this.props.isFocused && !this.state.isEditing) {
// don't focus if we're editing -- we'll lose the fact that we're editing
(_a = this.cellRef.current) === null || _a === void 0 ? void 0 : _a.focus();
}
};
EditableCell.prototype.invokeCallback = function (callback, value) {
// pass through the row and column indices if they were provided as props by the consumer
var _a = this.props, rowIndex = _a.rowIndex, columnIndex = _a.columnIndex;
callback === null || callback === void 0 ? void 0 : callback(value, rowIndex, columnIndex);
};
EditableCell.displayName = "".concat(core_1.DISPLAYNAME_PREFIX, ".EditableCell");
EditableCell.defaultProps = {
truncated: true,
wrapText: false,
};
EditableCell = tslib_1.__decorate([
core_1.HotkeysTarget
], EditableCell);
return EditableCell;
}(React.Component));
exports.EditableCell = EditableCell;
//# sourceMappingURL=editableCell.js.map