handsontable
Version:
Handsontable is a JavaScript Spreadsheet Component available for React, Angular and Vue.
297 lines (247 loc) • 8.78 kB
JavaScript
;
function _typeof(obj) { "@babel/helpers - typeof"; 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); }
require("core-js/modules/es.array.index-of.js");
require("core-js/modules/es.object.get-prototype-of.js");
require("core-js/modules/es.object.set-prototype-of.js");
exports.__esModule = true;
exports.default = void 0;
var _hotFormulaParser = require("hot-formula-parser");
var _array = require("../../../helpers/array");
var _base = _interopRequireDefault(require("./_base"));
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 _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 _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 _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
var STATE_OUT_OFF_DATE = 1;
var STATE_COMPUTING = 2;
var STATE_UP_TO_DATE = 3;
var states = [STATE_OUT_OFF_DATE, STATE_COMPUTING, STATE_UP_TO_DATE];
/**
* Class responsible for wrapping formula expression. It contains calculated value of
* the formula, an error if it has happened and cell references which indicates a relationship with regular
* cells. This object uses physical cell coordinates.
*
* @class CellValue
* @util
*/
var CellValue = /*#__PURE__*/function (_BaseCell) {
_inherits(CellValue, _BaseCell);
var _super = _createSuper(CellValue);
function CellValue(row, column) {
var _this;
_classCallCheck(this, CellValue);
_this = _super.call(this, row, column);
/**
* List of precedents cells.
*
* @type {Array}
*/
_this.precedents = [];
/**
* Computed value.
*
* @type {*}
*/
_this.value = null;
/**
* Error name.
*
* @type {string|null}
*/
_this.error = null;
/**
* Indicates cell state.
*
* @type {string}
*/
_this.state = CellValue.STATE_UP_TO_DATE;
return _this;
}
/**
* Set computed value.
*
* @param {*} value The calculated formula value.
*/
_createClass(CellValue, [{
key: "setValue",
value: function setValue(value) {
this.value = value;
}
/**
* Get computed value.
*
* @returns {*}
*/
}, {
key: "getValue",
value: function getValue() {
return this.value;
}
/**
* Set error message for this cell.
*
* @param {string} error Error name.
*/
}, {
key: "setError",
value: function setError(error) {
this.error = error;
}
/**
* Get error name for this cell.
*
* @returns {string|null}
*/
}, {
key: "getError",
value: function getError() {
return this.error;
}
/**
* Check if cell value is marked as error.
*
* @returns {boolean}
*/
}, {
key: "hasError",
value: function hasError() {
return this.error !== null;
}
/**
* Set cell state.
*
* @param {number} state Cell state.
*/
}, {
key: "setState",
value: function setState(state) {
if (states.indexOf(state) === -1) {
throw Error("Unrecognized state: ".concat(state));
}
this.state = state;
}
/**
* Check cell state.
*
* @param {number} state The state to compare with.
* @returns {boolean}
*/
}, {
key: "isState",
value: function isState(state) {
return this.state === state;
}
/**
* Add precedent cell to the collection.
*
* @param {CellReference} cellReference Cell reference object.
*/
}, {
key: "addPrecedent",
value: function addPrecedent(cellReference) {
if (this.isEqual(cellReference)) {
throw Error(_hotFormulaParser.ERROR_REF);
}
if (!this.hasPrecedent(cellReference)) {
this.precedents.push(cellReference);
}
}
/**
* Remove precedent cell from the collection.
*
* @param {CellReference} cellReference Cell reference object.
*/
}, {
key: "removePrecedent",
value: function removePrecedent(cellReference) {
if (this.isEqual(cellReference)) {
throw Error(_hotFormulaParser.ERROR_REF);
}
this.precedents = (0, _array.arrayFilter)(this.precedents, function (cell) {
return !cell.isEqual(cellReference);
});
}
/**
* Clear all precedent cells.
*/
}, {
key: "clearPrecedents",
value: function clearPrecedents() {
this.precedents.length = 0;
}
/**
* Get precedent cells.
*
* @returns {Array}
*/
}, {
key: "getPrecedents",
value: function getPrecedents() {
return this.precedents;
}
/**
* Check if cell value has precedents cells.
*
* @returns {boolean}
*/
}, {
key: "hasPrecedents",
value: function hasPrecedents() {
return this.precedents.length > 0;
}
/**
* Check if cell reference is precedents this cell.
*
* @param {CellReference} cellReference Cell reference object.
* @returns {boolean}
*/
}, {
key: "hasPrecedent",
value: function hasPrecedent(cellReference) {
return (0, _array.arrayFilter)(this.precedents, function (cell) {
return cell.isEqual(cellReference);
}).length > 0;
}
}], [{
key: "STATE_OUT_OFF_DATE",
get:
/**
* Out of date state indicates cells ready for recomputing.
*
* @returns {number}
*/
function get() {
return 1; // PhantomJS crashes when we want to use constant above
}
/**
* Computing state indicates cells under processing.
*
* @returns {number}
*/
}, {
key: "STATE_COMPUTING",
get: function get() {
return 2; // PhantomJS crashes when we want to use constant above
}
/**
* Up to date state indicates cells with fresh computed value.
*
* @returns {number}
*/
}, {
key: "STATE_UP_TO_DATE",
get: function get() {
return 3; // PhantomJS crashes when we want to use constant above
}
}]);
return CellValue;
}(_base.default);
var _default = CellValue;
exports.default = _default;