145 lines
3.3 KiB
JavaScript
145 lines
3.3 KiB
JavaScript
|
"use strict";
|
||
|
|
||
|
Object.defineProperty(exports, "__esModule", {
|
||
|
value: true
|
||
|
});
|
||
|
exports.createHelpClass = void 0;
|
||
|
|
||
|
var _is = require("../utils/is.js");
|
||
|
|
||
|
var _object = require("../utils/object.js");
|
||
|
|
||
|
var _string = require("../utils/string.js");
|
||
|
|
||
|
var _factory = require("../utils/factory.js");
|
||
|
|
||
|
var name = 'Help';
|
||
|
var dependencies = ['parse'];
|
||
|
var createHelpClass = /* #__PURE__ */(0, _factory.factory)(name, dependencies, function (_ref) {
|
||
|
var parse = _ref.parse;
|
||
|
|
||
|
/**
|
||
|
* Documentation object
|
||
|
* @param {Object} doc Object containing properties:
|
||
|
* {string} name
|
||
|
* {string} category
|
||
|
* {string} description
|
||
|
* {string[]} syntax
|
||
|
* {string[]} examples
|
||
|
* {string[]} seealso
|
||
|
* @constructor
|
||
|
*/
|
||
|
function Help(doc) {
|
||
|
if (!(this instanceof Help)) {
|
||
|
throw new SyntaxError('Constructor must be called with the new operator');
|
||
|
}
|
||
|
|
||
|
if (!doc) throw new Error('Argument "doc" missing');
|
||
|
this.doc = doc;
|
||
|
}
|
||
|
/**
|
||
|
* Attach type information
|
||
|
*/
|
||
|
|
||
|
|
||
|
Help.prototype.type = 'Help';
|
||
|
Help.prototype.isHelp = true;
|
||
|
/**
|
||
|
* Generate a string representation of the Help object
|
||
|
* @return {string} Returns a string
|
||
|
* @private
|
||
|
*/
|
||
|
|
||
|
Help.prototype.toString = function () {
|
||
|
var doc = this.doc || {};
|
||
|
var desc = '\n';
|
||
|
|
||
|
if (doc.name) {
|
||
|
desc += 'Name: ' + doc.name + '\n\n';
|
||
|
}
|
||
|
|
||
|
if (doc.category) {
|
||
|
desc += 'Category: ' + doc.category + '\n\n';
|
||
|
}
|
||
|
|
||
|
if (doc.description) {
|
||
|
desc += 'Description:\n ' + doc.description + '\n\n';
|
||
|
}
|
||
|
|
||
|
if (doc.syntax) {
|
||
|
desc += 'Syntax:\n ' + doc.syntax.join('\n ') + '\n\n';
|
||
|
}
|
||
|
|
||
|
if (doc.examples) {
|
||
|
desc += 'Examples:\n';
|
||
|
var scope = {};
|
||
|
|
||
|
for (var i = 0; i < doc.examples.length; i++) {
|
||
|
var expr = doc.examples[i];
|
||
|
desc += ' ' + expr + '\n';
|
||
|
var res = void 0;
|
||
|
|
||
|
try {
|
||
|
// note: res can be undefined when `expr` is an empty string
|
||
|
res = parse(expr).compile().evaluate(scope);
|
||
|
} catch (e) {
|
||
|
res = e;
|
||
|
}
|
||
|
|
||
|
if (res !== undefined && !(0, _is.isHelp)(res)) {
|
||
|
desc += ' ' + (0, _string.format)(res, {
|
||
|
precision: 14
|
||
|
}) + '\n';
|
||
|
}
|
||
|
}
|
||
|
|
||
|
desc += '\n';
|
||
|
}
|
||
|
|
||
|
if (doc.mayThrow && doc.mayThrow.length) {
|
||
|
desc += 'Throws: ' + doc.mayThrow.join(', ') + '\n\n';
|
||
|
}
|
||
|
|
||
|
if (doc.seealso && doc.seealso.length) {
|
||
|
desc += 'See also: ' + doc.seealso.join(', ') + '\n';
|
||
|
}
|
||
|
|
||
|
return desc;
|
||
|
};
|
||
|
/**
|
||
|
* Export the help object to JSON
|
||
|
*/
|
||
|
|
||
|
|
||
|
Help.prototype.toJSON = function () {
|
||
|
var obj = (0, _object.clone)(this.doc);
|
||
|
obj.mathjs = 'Help';
|
||
|
return obj;
|
||
|
};
|
||
|
/**
|
||
|
* Instantiate a Help object from a JSON object
|
||
|
* @param {Object} json
|
||
|
* @returns {Help} Returns a new Help object
|
||
|
*/
|
||
|
|
||
|
|
||
|
Help.fromJSON = function (json) {
|
||
|
var doc = {};
|
||
|
Object.keys(json).filter(function (prop) {
|
||
|
return prop !== 'mathjs';
|
||
|
}).forEach(function (prop) {
|
||
|
doc[prop] = json[prop];
|
||
|
});
|
||
|
return new Help(doc);
|
||
|
};
|
||
|
/**
|
||
|
* Returns a string representation of the Help object
|
||
|
*/
|
||
|
|
||
|
|
||
|
Help.prototype.valueOf = Help.prototype.toString;
|
||
|
return Help;
|
||
|
}, {
|
||
|
isClass: true
|
||
|
});
|
||
|
exports.createHelpClass = createHelpClass;
|