123456789101112131415161718192021222324252627282930313233343536373839 |
- 'use strict';
- /*
- *+------------------------------------------------------------------------+
- *| Licensed Materials - Property of IBM
- *| IBM Cognos Products: Dashboard
- *| (C) Copyright IBM Corp. 2017, 2020
- *|
- *| US Government Users Restricted Rights - Use, duplication or disclosure
- *| restricted by GSA ADP Schedule Contract with IBM Corp.
- *+------------------------------------------------------------------------+
- */
- define(['./SmartsToVizMapping'], function (SmartsToVisMapping) {
- 'use strict';
- var VisToSmartMapping = {};
- var smartsChartTypes = Object.keys(SmartsToVisMapping);
- smartsChartTypes.forEach(function (chartType) {
- var oldMapInfo = SmartsToVisMapping[chartType];
- if (!VisToSmartMapping[oldMapInfo.visId]) {
- VisToSmartMapping[oldMapInfo.visId] = {};
- }
- var newMapInfo = VisToSmartMapping[oldMapInfo.visId];
- var chartProps = Object.keys(SmartsToVisMapping[chartType]);
- chartProps.forEach(function (prop) {
- if (prop === 'visId') {
- if (!newMapInfo.chartType) {
- newMapInfo.chartType = chartType;
- }
- } else {
- if (!newMapInfo[oldMapInfo[prop]]) {
- newMapInfo[oldMapInfo[prop]] = prop;
- }
- }
- });
- });
- return VisToSmartMapping;
- });
- //# sourceMappingURL=VisToSmartsMapping.js.map
|