200 lines
5.3 KiB
JavaScript
200 lines
5.3 KiB
JavaScript
|
"use strict";
|
||
|
|
||
|
Object.defineProperty(exports, "__esModule", {
|
||
|
value: true
|
||
|
});
|
||
|
exports.createConstantNode = void 0;
|
||
|
|
||
|
var _string = require("../../utils/string.js");
|
||
|
|
||
|
var _is = require("../../utils/is.js");
|
||
|
|
||
|
var _latex = require("../../utils/latex.js");
|
||
|
|
||
|
var _factory = require("../../utils/factory.js");
|
||
|
|
||
|
var name = 'ConstantNode';
|
||
|
var dependencies = ['Node'];
|
||
|
var createConstantNode = /* #__PURE__ */(0, _factory.factory)(name, dependencies, function (_ref) {
|
||
|
var Node = _ref.Node;
|
||
|
|
||
|
/**
|
||
|
* A ConstantNode holds a constant value like a number or string.
|
||
|
*
|
||
|
* Usage:
|
||
|
*
|
||
|
* new ConstantNode(2.3)
|
||
|
* new ConstantNode('hello')
|
||
|
*
|
||
|
* @param {*} value Value can be any type (number, BigNumber, string, ...)
|
||
|
* @constructor ConstantNode
|
||
|
* @extends {Node}
|
||
|
*/
|
||
|
function ConstantNode(value) {
|
||
|
if (!(this instanceof ConstantNode)) {
|
||
|
throw new SyntaxError('Constructor must be called with the new operator');
|
||
|
}
|
||
|
|
||
|
this.value = value;
|
||
|
}
|
||
|
|
||
|
ConstantNode.prototype = new Node();
|
||
|
ConstantNode.prototype.type = 'ConstantNode';
|
||
|
ConstantNode.prototype.isConstantNode = true;
|
||
|
/**
|
||
|
* Compile a node into a JavaScript function.
|
||
|
* This basically pre-calculates as much as possible and only leaves open
|
||
|
* calculations which depend on a dynamic scope with variables.
|
||
|
* @param {Object} math Math.js namespace with functions and constants.
|
||
|
* @param {Object} argNames An object with argument names as key and `true`
|
||
|
* as value. Used in the SymbolNode to optimize
|
||
|
* for arguments from user assigned functions
|
||
|
* (see FunctionAssignmentNode) or special symbols
|
||
|
* like `end` (see IndexNode).
|
||
|
* @return {function} Returns a function which can be called like:
|
||
|
* evalNode(scope: Object, args: Object, context: *)
|
||
|
*/
|
||
|
|
||
|
ConstantNode.prototype._compile = function (math, argNames) {
|
||
|
var value = this.value;
|
||
|
return function evalConstantNode() {
|
||
|
return value;
|
||
|
};
|
||
|
};
|
||
|
/**
|
||
|
* Execute a callback for each of the child nodes of this node
|
||
|
* @param {function(child: Node, path: string, parent: Node)} callback
|
||
|
*/
|
||
|
|
||
|
|
||
|
ConstantNode.prototype.forEach = function (callback) {// nothing to do, we don't have childs
|
||
|
};
|
||
|
/**
|
||
|
* Create a new ConstantNode having it's childs be the results of calling
|
||
|
* the provided callback function for each of the childs of the original node.
|
||
|
* @param {function(child: Node, path: string, parent: Node) : Node} callback
|
||
|
* @returns {ConstantNode} Returns a clone of the node
|
||
|
*/
|
||
|
|
||
|
|
||
|
ConstantNode.prototype.map = function (callback) {
|
||
|
return this.clone();
|
||
|
};
|
||
|
/**
|
||
|
* Create a clone of this node, a shallow copy
|
||
|
* @return {ConstantNode}
|
||
|
*/
|
||
|
|
||
|
|
||
|
ConstantNode.prototype.clone = function () {
|
||
|
return new ConstantNode(this.value);
|
||
|
};
|
||
|
/**
|
||
|
* Get string representation
|
||
|
* @param {Object} options
|
||
|
* @return {string} str
|
||
|
*/
|
||
|
|
||
|
|
||
|
ConstantNode.prototype._toString = function (options) {
|
||
|
return (0, _string.format)(this.value, options);
|
||
|
};
|
||
|
/**
|
||
|
* Get HTML representation
|
||
|
* @param {Object} options
|
||
|
* @return {string} str
|
||
|
*/
|
||
|
|
||
|
|
||
|
ConstantNode.prototype.toHTML = function (options) {
|
||
|
var value = this._toString(options);
|
||
|
|
||
|
switch ((0, _is.typeOf)(this.value)) {
|
||
|
case 'number':
|
||
|
case 'BigNumber':
|
||
|
case 'Fraction':
|
||
|
return '<span class="math-number">' + value + '</span>';
|
||
|
|
||
|
case 'string':
|
||
|
return '<span class="math-string">' + value + '</span>';
|
||
|
|
||
|
case 'boolean':
|
||
|
return '<span class="math-boolean">' + value + '</span>';
|
||
|
|
||
|
case 'null':
|
||
|
return '<span class="math-null-symbol">' + value + '</span>';
|
||
|
|
||
|
case 'undefined':
|
||
|
return '<span class="math-undefined">' + value + '</span>';
|
||
|
|
||
|
default:
|
||
|
return '<span class="math-symbol">' + value + '</span>';
|
||
|
}
|
||
|
};
|
||
|
/**
|
||
|
* Get a JSON representation of the node
|
||
|
* @returns {Object}
|
||
|
*/
|
||
|
|
||
|
|
||
|
ConstantNode.prototype.toJSON = function () {
|
||
|
return {
|
||
|
mathjs: 'ConstantNode',
|
||
|
value: this.value
|
||
|
};
|
||
|
};
|
||
|
/**
|
||
|
* Instantiate a ConstantNode from its JSON representation
|
||
|
* @param {Object} json An object structured like
|
||
|
* `{"mathjs": "SymbolNode", value: 2.3}`,
|
||
|
* where mathjs is optional
|
||
|
* @returns {ConstantNode}
|
||
|
*/
|
||
|
|
||
|
|
||
|
ConstantNode.fromJSON = function (json) {
|
||
|
return new ConstantNode(json.value);
|
||
|
};
|
||
|
/**
|
||
|
* Get LaTeX representation
|
||
|
* @param {Object} options
|
||
|
* @return {string} str
|
||
|
*/
|
||
|
|
||
|
|
||
|
ConstantNode.prototype._toTex = function (options) {
|
||
|
var value = this._toString(options);
|
||
|
|
||
|
switch ((0, _is.typeOf)(this.value)) {
|
||
|
case 'string':
|
||
|
return '\\mathtt{' + (0, _latex.escapeLatex)(value) + '}';
|
||
|
|
||
|
case 'number':
|
||
|
case 'BigNumber':
|
||
|
{
|
||
|
if (!isFinite(this.value)) {
|
||
|
return this.value.valueOf() < 0 ? '-\\infty' : '\\infty';
|
||
|
}
|
||
|
|
||
|
var index = value.toLowerCase().indexOf('e');
|
||
|
|
||
|
if (index !== -1) {
|
||
|
return value.substring(0, index) + '\\cdot10^{' + value.substring(index + 1) + '}';
|
||
|
}
|
||
|
}
|
||
|
return value;
|
||
|
|
||
|
case 'Fraction':
|
||
|
return this.value.toLatex();
|
||
|
|
||
|
default:
|
||
|
return value;
|
||
|
}
|
||
|
};
|
||
|
|
||
|
return ConstantNode;
|
||
|
}, {
|
||
|
isClass: true,
|
||
|
isNode: true
|
||
|
});
|
||
|
exports.createConstantNode = createConstantNode;
|