UNPKG

@highcharts/dashboards

Version:
85 lines (84 loc) 1.72 kB
/* * * * (c) 2009-2025 Highsoft AS * * License: www.highcharts.com/license * * !!!!!!! SOURCE GETS TRANSPILED BY TYPESCRIPT. EDIT TS FILE ONLY. !!!!!!! * * Authors: * - Sophie Bremer * * */ 'use strict'; import DataTable from '../../Data/DataTable.js'; import Serializable from '../Serializable.js'; /* * * * Functions * * */ /** * Converts the given JSON to a class instance. * * @param {DataTableHelper.JSON} json * JSON to deserialize as a class instance or object. * * @return {DataTable} * Returns the class instance or object, or throws an exception. */ function fromJSON(json) { return new DataTable({ columns: json.columns, id: json.id }); } /** * Validates the given class instance for JSON support. * * @param {Globals.AnyRecord} obj * Class instance or object to validate. * * @return {boolean} * Returns true, if the function set can convert the given object, otherwise * false. */ function jsonSupportFor(obj) { return obj instanceof DataTable; } /** * Converts the given class instance to JSON. * * @param {DataTable} obj * Class instance or object to serialize as JSON. * * @return {DataTableHelper.JSON} * Returns the JSON of the class instance or object. */ function toJSON(obj) { const json = { $class: 'Data.DataTable', columns: obj.getColumns(void 0, false, true) }; // Custom ID if (!obj.autoId) { json.id = obj.id; } // Done return json; } /* * * * Registry * * */ const DataTableHelper = { $class: 'Data.DataTable', fromJSON, jsonSupportFor, toJSON }; Serializable.registerHelper(DataTableHelper); /* * * * Default Export * * */ export default DataTableHelper;