5105d3edee7eb85de4883d26d957697d11fc2f3e9ccd224fbe0806b2f98b4996.json 19 KB

1
  1. {"ast":null,"code":"/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements. See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership. The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License. You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied. See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n/**\n * AUTO-GENERATED FILE. DO NOT MODIFY.\n */\n\n/*\r\n* Licensed to the Apache Software Foundation (ASF) under one\r\n* or more contributor license agreements. See the NOTICE file\r\n* distributed with this work for additional information\r\n* regarding copyright ownership. The ASF licenses this file\r\n* to you under the Apache License, Version 2.0 (the\r\n* \"License\"); you may not use this file except in compliance\r\n* with the License. You may obtain a copy of the License at\r\n*\r\n* http://www.apache.org/licenses/LICENSE-2.0\r\n*\r\n* Unless required by applicable law or agreed to in writing,\r\n* software distributed under the License is distributed on an\r\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\r\n* KIND, either express or implied. See the License for the\r\n* specific language governing permissions and limitations\r\n* under the License.\r\n*/\nimport { __extends } from \"tslib\";\nimport SeriesModel from '../../model/Series.js';\nimport Tree from '../../data/Tree.js';\nimport Model from '../../model/Model.js';\nimport { createTooltipMarkup } from '../../component/tooltip/tooltipMarkup.js';\nimport { wrapTreePathInfo } from '../helper/treeHelper.js';\nvar TreeSeriesModel = /** @class */function (_super) {\n __extends(TreeSeriesModel, _super);\n function TreeSeriesModel() {\n var _this = _super !== null && _super.apply(this, arguments) || this;\n _this.hasSymbolVisual = true;\n // Do it self.\n _this.ignoreStyleOnData = true;\n return _this;\n }\n /**\r\n * Init a tree data structure from data in option series\r\n */\n TreeSeriesModel.prototype.getInitialData = function (option) {\n // create a virtual root\n var root = {\n name: option.name,\n children: option.data\n };\n var leaves = option.leaves || {};\n var leavesModel = new Model(leaves, this, this.ecModel);\n var tree = Tree.createTree(root, this, beforeLink);\n function beforeLink(nodeData) {\n nodeData.wrapMethod('getItemModel', function (model, idx) {\n var node = tree.getNodeByDataIndex(idx);\n if (!(node && node.children.length && node.isExpand)) {\n model.parentModel = leavesModel;\n }\n return model;\n });\n }\n var treeDepth = 0;\n tree.eachNode('preorder', function (node) {\n if (node.depth > treeDepth) {\n treeDepth = node.depth;\n }\n });\n var expandAndCollapse = option.expandAndCollapse;\n var expandTreeDepth = expandAndCollapse && option.initialTreeDepth >= 0 ? option.initialTreeDepth : treeDepth;\n tree.root.eachNode('preorder', function (node) {\n var item = node.hostTree.data.getRawDataItem(node.dataIndex);\n // Add item.collapsed != null, because users can collapse node original in the series.data.\n node.isExpand = item && item.collapsed != null ? !item.collapsed : node.depth <= expandTreeDepth;\n });\n return tree.data;\n };\n /**\r\n * Make the configuration 'orient' backward compatibly, with 'horizontal = LR', 'vertical = TB'.\r\n * @returns {string} orient\r\n */\n TreeSeriesModel.prototype.getOrient = function () {\n var orient = this.get('orient');\n if (orient === 'horizontal') {\n orient = 'LR';\n } else if (orient === 'vertical') {\n orient = 'TB';\n }\n return orient;\n };\n TreeSeriesModel.prototype.setZoom = function (zoom) {\n this.option.zoom = zoom;\n };\n TreeSeriesModel.prototype.setCenter = function (center) {\n this.option.center = center;\n };\n TreeSeriesModel.prototype.formatTooltip = function (dataIndex, multipleSeries, dataType) {\n var tree = this.getData().tree;\n var realRoot = tree.root.children[0];\n var node = tree.getNodeByDataIndex(dataIndex);\n var value = node.getValue();\n var name = node.name;\n while (node && node !== realRoot) {\n name = node.parentNode.name + '.' + name;\n node = node.parentNode;\n }\n return createTooltipMarkup('nameValue', {\n name: name,\n value: value,\n noValue: isNaN(value) || value == null\n });\n };\n // Add tree path to tooltip param\n TreeSeriesModel.prototype.getDataParams = function (dataIndex) {\n var params = _super.prototype.getDataParams.apply(this, arguments);\n var node = this.getData().tree.getNodeByDataIndex(dataIndex);\n params.treeAncestors = wrapTreePathInfo(node, this);\n params.collapsed = !node.isExpand;\n return params;\n };\n TreeSeriesModel.type = 'series.tree';\n // can support the position parameters 'left', 'top','right','bottom', 'width',\n // 'height' in the setOption() with 'merge' mode normal.\n TreeSeriesModel.layoutMode = 'box';\n TreeSeriesModel.defaultOption = {\n // zlevel: 0,\n z: 2,\n coordinateSystem: 'view',\n // the position of the whole view\n left: '12%',\n top: '12%',\n right: '12%',\n bottom: '12%',\n // the layout of the tree, two value can be selected, 'orthogonal' or 'radial'\n layout: 'orthogonal',\n // value can be 'polyline'\n edgeShape: 'curve',\n edgeForkPosition: '50%',\n // true | false | 'move' | 'scale', see module:component/helper/RoamController.\n roam: false,\n // Symbol size scale ratio in roam\n nodeScaleRatio: 0.4,\n // Default on center of graph\n center: null,\n zoom: 1,\n orient: 'LR',\n symbol: 'emptyCircle',\n symbolSize: 7,\n expandAndCollapse: true,\n initialTreeDepth: 2,\n lineStyle: {\n color: '#ccc',\n width: 1.5,\n curveness: 0.5\n },\n itemStyle: {\n color: 'lightsteelblue',\n // borderColor: '#c23531',\n borderWidth: 1.5\n },\n label: {\n show: true\n },\n animationEasing: 'linear',\n animationDuration: 700,\n animationDurationUpdate: 500\n };\n return TreeSeriesModel;\n}(SeriesModel);\nexport default TreeSeriesModel;","map":{"version":3,"names":["__extends","SeriesModel","Tree","Model","createTooltipMarkup","wrapTreePathInfo","TreeSeriesModel","_super","_this","apply","arguments","hasSymbolVisual","ignoreStyleOnData","prototype","getInitialData","option","root","name","children","data","leaves","leavesModel","ecModel","tree","createTree","beforeLink","nodeData","wrapMethod","model","idx","node","getNodeByDataIndex","length","isExpand","parentModel","treeDepth","eachNode","depth","expandAndCollapse","expandTreeDepth","initialTreeDepth","item","hostTree","getRawDataItem","dataIndex","collapsed","getOrient","orient","get","setZoom","zoom","setCenter","center","formatTooltip","multipleSeries","dataType","getData","realRoot","value","getValue","parentNode","noValue","isNaN","getDataParams","params","treeAncestors","type","layoutMode","defaultOption","z","coordinateSystem","left","top","right","bottom","layout","edgeShape","edgeForkPosition","roam","nodeScaleRatio","symbol","symbolSize","lineStyle","color","width","curveness","itemStyle","borderWidth","label","show","animationEasing","animationDuration","animationDurationUpdate"],"sources":["E:/git/2021项目/安科院大屏/node_modules/echarts/lib/chart/tree/TreeSeries.js"],"sourcesContent":["\n/*\n* Licensed to the Apache Software Foundation (ASF) under one\n* or more contributor license agreements. See the NOTICE file\n* distributed with this work for additional information\n* regarding copyright ownership. The ASF licenses this file\n* to you under the Apache License, Version 2.0 (the\n* \"License\"); you may not use this file except in compliance\n* with the License. You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing,\n* software distributed under the License is distributed on an\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n* KIND, either express or implied. See the License for the\n* specific language governing permissions and limitations\n* under the License.\n*/\n\n\n/**\n * AUTO-GENERATED FILE. DO NOT MODIFY.\n */\n\n/*\r\n* Licensed to the Apache Software Foundation (ASF) under one\r\n* or more contributor license agreements. See the NOTICE file\r\n* distributed with this work for additional information\r\n* regarding copyright ownership. The ASF licenses this file\r\n* to you under the Apache License, Version 2.0 (the\r\n* \"License\"); you may not use this file except in compliance\r\n* with the License. You may obtain a copy of the License at\r\n*\r\n* http://www.apache.org/licenses/LICENSE-2.0\r\n*\r\n* Unless required by applicable law or agreed to in writing,\r\n* software distributed under the License is distributed on an\r\n* \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\r\n* KIND, either express or implied. See the License for the\r\n* specific language governing permissions and limitations\r\n* under the License.\r\n*/\nimport { __extends } from \"tslib\";\nimport SeriesModel from '../../model/Series.js';\nimport Tree from '../../data/Tree.js';\nimport Model from '../../model/Model.js';\nimport { createTooltipMarkup } from '../../component/tooltip/tooltipMarkup.js';\nimport { wrapTreePathInfo } from '../helper/treeHelper.js';\nvar TreeSeriesModel = /** @class */function (_super) {\n __extends(TreeSeriesModel, _super);\n function TreeSeriesModel() {\n var _this = _super !== null && _super.apply(this, arguments) || this;\n _this.hasSymbolVisual = true;\n // Do it self.\n _this.ignoreStyleOnData = true;\n return _this;\n }\n /**\r\n * Init a tree data structure from data in option series\r\n */\n TreeSeriesModel.prototype.getInitialData = function (option) {\n // create a virtual root\n var root = {\n name: option.name,\n children: option.data\n };\n var leaves = option.leaves || {};\n var leavesModel = new Model(leaves, this, this.ecModel);\n var tree = Tree.createTree(root, this, beforeLink);\n function beforeLink(nodeData) {\n nodeData.wrapMethod('getItemModel', function (model, idx) {\n var node = tree.getNodeByDataIndex(idx);\n if (!(node && node.children.length && node.isExpand)) {\n model.parentModel = leavesModel;\n }\n return model;\n });\n }\n var treeDepth = 0;\n tree.eachNode('preorder', function (node) {\n if (node.depth > treeDepth) {\n treeDepth = node.depth;\n }\n });\n var expandAndCollapse = option.expandAndCollapse;\n var expandTreeDepth = expandAndCollapse && option.initialTreeDepth >= 0 ? option.initialTreeDepth : treeDepth;\n tree.root.eachNode('preorder', function (node) {\n var item = node.hostTree.data.getRawDataItem(node.dataIndex);\n // Add item.collapsed != null, because users can collapse node original in the series.data.\n node.isExpand = item && item.collapsed != null ? !item.collapsed : node.depth <= expandTreeDepth;\n });\n return tree.data;\n };\n /**\r\n * Make the configuration 'orient' backward compatibly, with 'horizontal = LR', 'vertical = TB'.\r\n * @returns {string} orient\r\n */\n TreeSeriesModel.prototype.getOrient = function () {\n var orient = this.get('orient');\n if (orient === 'horizontal') {\n orient = 'LR';\n } else if (orient === 'vertical') {\n orient = 'TB';\n }\n return orient;\n };\n TreeSeriesModel.prototype.setZoom = function (zoom) {\n this.option.zoom = zoom;\n };\n TreeSeriesModel.prototype.setCenter = function (center) {\n this.option.center = center;\n };\n TreeSeriesModel.prototype.formatTooltip = function (dataIndex, multipleSeries, dataType) {\n var tree = this.getData().tree;\n var realRoot = tree.root.children[0];\n var node = tree.getNodeByDataIndex(dataIndex);\n var value = node.getValue();\n var name = node.name;\n while (node && node !== realRoot) {\n name = node.parentNode.name + '.' + name;\n node = node.parentNode;\n }\n return createTooltipMarkup('nameValue', {\n name: name,\n value: value,\n noValue: isNaN(value) || value == null\n });\n };\n // Add tree path to tooltip param\n TreeSeriesModel.prototype.getDataParams = function (dataIndex) {\n var params = _super.prototype.getDataParams.apply(this, arguments);\n var node = this.getData().tree.getNodeByDataIndex(dataIndex);\n params.treeAncestors = wrapTreePathInfo(node, this);\n params.collapsed = !node.isExpand;\n return params;\n };\n TreeSeriesModel.type = 'series.tree';\n // can support the position parameters 'left', 'top','right','bottom', 'width',\n // 'height' in the setOption() with 'merge' mode normal.\n TreeSeriesModel.layoutMode = 'box';\n TreeSeriesModel.defaultOption = {\n // zlevel: 0,\n z: 2,\n coordinateSystem: 'view',\n // the position of the whole view\n left: '12%',\n top: '12%',\n right: '12%',\n bottom: '12%',\n // the layout of the tree, two value can be selected, 'orthogonal' or 'radial'\n layout: 'orthogonal',\n // value can be 'polyline'\n edgeShape: 'curve',\n edgeForkPosition: '50%',\n // true | false | 'move' | 'scale', see module:component/helper/RoamController.\n roam: false,\n // Symbol size scale ratio in roam\n nodeScaleRatio: 0.4,\n // Default on center of graph\n center: null,\n zoom: 1,\n orient: 'LR',\n symbol: 'emptyCircle',\n symbolSize: 7,\n expandAndCollapse: true,\n initialTreeDepth: 2,\n lineStyle: {\n color: '#ccc',\n width: 1.5,\n curveness: 0.5\n },\n itemStyle: {\n color: 'lightsteelblue',\n // borderColor: '#c23531',\n borderWidth: 1.5\n },\n label: {\n show: true\n },\n animationEasing: 'linear',\n animationDuration: 700,\n animationDurationUpdate: 500\n };\n return TreeSeriesModel;\n}(SeriesModel);\nexport default TreeSeriesModel;"],"mappings":"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","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}