dtable-statistic 4.2.2 → 4.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es/api/dtable-db-api.js +31 -37
- package/es/calculator/base-calculator.js +49 -99
- package/es/calculator/basic-chart-calculator.js +335 -559
- package/es/calculator/combination-calculator.js +231 -299
- package/es/calculator/compare-bar-calculator.js +184 -281
- package/es/calculator/completeness-calculator.js +203 -288
- package/es/calculator/copy-value.js +18 -18
- package/es/calculator/dashboard-calculator.js +68 -137
- package/es/calculator/heat-map-calculator.js +139 -220
- package/es/calculator/horizontal-bar-calculator.js +64 -93
- package/es/calculator/index.js +53 -69
- package/es/calculator/map-calculator.js +98 -174
- package/es/calculator/mirror-calculator.js +137 -216
- package/es/calculator/number-card-calculator.js +58 -126
- package/es/calculator/pivot-table-calculator.js +750 -792
- package/es/calculator/scatter-calculator.js +72 -140
- package/es/calculator/thread-manager.js +48 -67
- package/es/calculator/trend-calculator.js +107 -191
- package/es/calculator/workers/basic-chart-calculator-worker.js +194 -165
- package/es/calculator/workers/calculator.worker.js +22 -6
- package/es/calculator/workers/card-calculator-worker.js +16 -14
- package/es/calculator/workers/combination-calculator-worker.js +128 -135
- package/es/calculator/workers/compare-bar-chart-calculator-worker.js +80 -96
- package/es/calculator/workers/completeness-calculator-worker.js +56 -49
- package/es/calculator/workers/dashboard-calculator-worker.js +24 -22
- package/es/calculator/workers/mirror-calculator-worker.js +52 -52
- package/es/calculator/workers/pivot-table-calculator-worker.js +247 -230
- package/es/calculator/workers/scatter-calculator-worker.js +34 -32
- package/es/calculator/workers/trend-calculator-worker.js +33 -29
- package/es/calculator/world-map-calculator.js +120 -197
- package/es/components/common-add-tool.js +7 -5
- package/es/components/dialog/chart-addition-edit-dialog.js +67 -77
- package/es/components/dialog/chart-addition-widgets/chart-selector.js +57 -67
- package/es/components/dialog/color-theme-dialog.js +34 -47
- package/es/components/dialog/delete-confirmation-dialog.js +7 -5
- package/es/components/dialog/enlarged-chart-dialog.js +68 -81
- package/es/components/dialog/new-table-dialog.js +62 -80
- package/es/components/dialog/new-view-dialog.js +50 -62
- package/es/components/dialog/rename-view-dialog.js +49 -58
- package/es/components/dialog/statistic-record-dialog/index.js +233 -231
- package/es/components/dialog/statistic-types-dialog/index.js +40 -49
- package/es/components/dialog/table-select-dialog.js +61 -70
- package/es/components/dropdown-menu/statistic-dropdown-menu.js +129 -142
- package/es/components/dtable-popover.js +62 -81
- package/es/components/dtable-search-input.js +89 -99
- package/es/components/dtable-select.js +55 -74
- package/es/components/icon.js +5 -3
- package/es/components/loading.js +1 -1
- package/es/components/modal-portal.js +15 -32
- package/es/components/popover/color-rules/color-rule.js +137 -141
- package/es/components/popover/color-rules/index.js +58 -66
- package/es/components/popover/color-rules/rule-filters/filter.js +124 -124
- package/es/components/popover/color-rules/rule-filters/index.js +50 -58
- package/es/components/popover/color-rules/rule-filters/number-input.js +42 -57
- package/es/components/popover/color-rules-popover.js +117 -121
- package/es/components/popover/color-selector-popover.js +60 -70
- package/es/components/seatable-radio/index.js +2 -2
- package/es/components/select/option-group.js +139 -157
- package/es/components/select/option.js +26 -40
- package/es/components/select/select.js +97 -112
- package/es/components/toast/alert.js +65 -80
- package/es/components/toast/index.js +1 -1
- package/es/components/toast/toast.js +76 -103
- package/es/components/toast/toastManager.js +57 -93
- package/es/components/toast/toaster.js +58 -56
- package/es/constants/color-rules.js +8 -5
- package/es/constants/dtable-select-style.js +44 -48
- package/es/constants/event-types.js +4 -4
- package/es/constants/index.js +328 -242
- package/es/constants/map.js +2 -2
- package/es/constants/model.js +20 -20
- package/es/constants/regions.js +1 -1
- package/es/constants/zIndexes.js +1 -1
- package/es/custom-g2.js +11 -11
- package/es/dashboard.js +343 -333
- package/es/desktop-dashboard.js +217 -224
- package/es/index.js +45 -58
- package/es/locale/index.js +3 -3
- package/es/locale/lang/de.js +1 -1
- package/es/locale/lang/en.js +7 -7
- package/es/locale/lang/fr.js +1 -1
- package/es/locale/lang/zh_CN.js +1 -1
- package/es/mobile-dashboard.js +76 -89
- package/es/model/bar-group.js +34 -44
- package/es/model/bar.js +26 -36
- package/es/model/base-model.js +11 -12
- package/es/model/basic-number-card.js +10 -20
- package/es/model/collaborators.js +10 -11
- package/es/model/combination.js +32 -42
- package/es/model/compare-bar.js +30 -40
- package/es/model/completeness-group.js +19 -29
- package/es/model/completeness.js +14 -24
- package/es/model/custom-bar.js +14 -24
- package/es/model/dashboard.js +9 -19
- package/es/model/generic-model.js +187 -197
- package/es/model/heat-map.js +16 -26
- package/es/model/horizontal-bar-group.js +32 -42
- package/es/model/horizontal-bar.js +26 -36
- package/es/model/index.js +31 -3
- package/es/model/map.js +20 -30
- package/es/model/mirror.js +15 -25
- package/es/model/pie.js +21 -31
- package/es/model/ring.js +23 -33
- package/es/model/scatter.js +11 -21
- package/es/model/statistic-dashboard.js +7 -8
- package/es/model/table.js +19 -29
- package/es/model/trend.js +15 -25
- package/es/model/world-map.js +17 -27
- package/es/service/chart-service.js +69 -65
- package/es/service/dashboard-service.js +421 -419
- package/es/service/map-json.js +112 -132
- package/es/stat-editor/chart-name-editor.js +44 -58
- package/es/stat-editor/index.js +59 -70
- package/es/stat-editor/stat-settings/advance-chart-settings/basic-number-card-settings.js +93 -98
- package/es/stat-editor/stat-settings/advance-chart-settings/combination-settings.js +246 -248
- package/es/stat-editor/stat-settings/advance-chart-settings/dashboard-chart-settings.js +127 -126
- package/es/stat-editor/stat-settings/advance-chart-settings/geo-granularity-settings.js +5 -3
- package/es/stat-editor/stat-settings/advance-chart-settings/heat-map-settings.js +78 -90
- package/es/stat-editor/stat-settings/advance-chart-settings/index.js +146 -150
- package/es/stat-editor/stat-settings/advance-chart-settings/map-settings.js +88 -98
- package/es/stat-editor/stat-settings/advance-chart-settings/mirror-settings.js +100 -118
- package/es/stat-editor/stat-settings/advance-chart-settings/style-setting/combination-style-setting.js +161 -148
- package/es/stat-editor/stat-settings/advance-chart-settings/style-setting/heat-map-settings.js +58 -66
- package/es/stat-editor/stat-settings/advance-chart-settings/style-setting/map-setting.js +58 -60
- package/es/stat-editor/stat-settings/advance-chart-settings/summary-settings.js +152 -148
- package/es/stat-editor/stat-settings/advance-chart-settings/trend-chart-settings.js +101 -105
- package/es/stat-editor/stat-settings/advance-chart-settings/world-map-settings.js +81 -91
- package/es/stat-editor/stat-settings/basic-chart-settings/advance-bar-chart-settings.js +110 -122
- package/es/stat-editor/stat-settings/basic-chart-settings/bar-settings.js +101 -113
- package/es/stat-editor/stat-settings/basic-chart-settings/completeness-chart-settings.js +130 -120
- package/es/stat-editor/stat-settings/basic-chart-settings/custom-bar-settings.js +88 -102
- package/es/stat-editor/stat-settings/basic-chart-settings/groupby-settings.js +88 -102
- package/es/stat-editor/stat-settings/basic-chart-settings/horizontal-axis-group-settings.js +200 -194
- package/es/stat-editor/stat-settings/basic-chart-settings/horizontal-bar-settings.js +98 -110
- package/es/stat-editor/stat-settings/basic-chart-settings/horizontal-group-chart-settings.js +106 -118
- package/es/stat-editor/stat-settings/basic-chart-settings/index.js +212 -223
- package/es/stat-editor/stat-settings/basic-chart-settings/pie-settings.js +109 -119
- package/es/stat-editor/stat-settings/basic-chart-settings/pivot-table-settings.js +329 -319
- package/es/stat-editor/stat-settings/basic-chart-settings/scatter-settings.js +82 -90
- package/es/stat-editor/stat-settings/basic-chart-settings/stack-item-settings.js +58 -65
- package/es/stat-editor/stat-settings/basic-chart-settings/stacks-settings.js +126 -116
- package/es/stat-editor/stat-settings/basic-chart-settings/style-setting/bar-chart-style-setting.js +201 -182
- package/es/stat-editor/stat-settings/basic-chart-settings/style-setting/completeness-style.js +79 -79
- package/es/stat-editor/stat-settings/basic-chart-settings/style-setting/horizontal-bar-chart-style.js +196 -175
- package/es/stat-editor/stat-settings/basic-chart-settings/style-setting/label-font-size-editor.js +35 -50
- package/es/stat-editor/stat-settings/basic-chart-settings/style-setting/pie-chart-style-settings.js +180 -147
- package/es/stat-editor/stat-settings/basic-chart-settings/style-setting/time-compare-style.js +31 -40
- package/es/stat-editor/stat-settings/basic-chart-settings/summary-method-setting.js +56 -67
- package/es/stat-editor/stat-settings/basic-chart-settings/summary-settings.js +60 -69
- package/es/stat-editor/stat-settings/basic-chart-settings/time-comparison-settings.js +165 -158
- package/es/stat-editor/stat-settings/basic-chart-settings/timer-picker.js +61 -74
- package/es/stat-editor/stat-settings/basic-chart-settings/y-axis-group-settings.js +199 -193
- package/es/stat-editor/stat-settings/color-setting/color-group-selector.js +25 -38
- package/es/stat-editor/stat-settings/color-setting/color-picker.js +79 -86
- package/es/stat-editor/stat-settings/color-setting/color-use-type-selector.js +138 -120
- package/es/stat-editor/stat-settings/map/map-level.js +31 -43
- package/es/stat-editor/stat-settings/map/map-province-city.js +82 -83
- package/es/stat-editor/stat-settings/public-setting/axis-label-position-setting.js +48 -50
- package/es/stat-editor/stat-settings/public-setting/base-settings.js +96 -96
- package/es/stat-editor/stat-settings/public-setting/calender.js +69 -75
- package/es/stat-editor/stat-settings/public-setting/column-settings.js +5 -3
- package/es/stat-editor/stat-settings/public-setting/custom-title-setting.js +36 -41
- package/es/stat-editor/stat-settings/public-setting/data-sort-setting.js +37 -41
- package/es/stat-editor/stat-settings/public-setting/ind-toggle-setting.js +25 -38
- package/es/stat-editor/stat-settings/public-setting/min-max-setting.js +40 -52
- package/es/stat-editor/stat-settings/public-setting/numeric-summary-item.js +90 -93
- package/es/stat-editor/stat-settings/public-setting/toggle-setting.js +23 -36
- package/es/stat-editor/stat-settings/public-setting/type-settings/index.js +39 -44
- package/es/stat-list/chart-preview.js +85 -98
- package/es/stat-list/index.js +170 -178
- package/es/stat-view/area-chart.js +282 -274
- package/es/stat-view/bar-chart.js +300 -292
- package/es/stat-view/base-chart.js +58 -52
- package/es/stat-view/basic-number-card.js +115 -168
- package/es/stat-view/combination-chart.js +298 -334
- package/es/stat-view/compare-chart.js +256 -254
- package/es/stat-view/completeness-chart.js +194 -206
- package/es/stat-view/custom-bar.js +221 -223
- package/es/stat-view/dashboard-chart.js +122 -180
- package/es/stat-view/heat-map.js +268 -294
- package/es/stat-view/horizontal-bar-chart.js +291 -281
- package/es/stat-view/index.js +136 -152
- package/es/stat-view/line-chart.js +267 -265
- package/es/stat-view/map.js +246 -246
- package/es/stat-view/mirror.js +141 -152
- package/es/stat-view/pie-chart.js +143 -156
- package/es/stat-view/pivot-table/index.js +113 -118
- package/es/stat-view/pivot-table/one-dimension-table-no-numeric-columns.js +104 -102
- package/es/stat-view/pivot-table/one-dimension-table-with-numeric-columns.js +116 -118
- package/es/stat-view/pivot-table/pivot-table-display-name.js +96 -95
- package/es/stat-view/pivot-table/two-dimension-table.js +238 -229
- package/es/stat-view/ring-chart.js +189 -200
- package/es/stat-view/scatter-chart.js +162 -213
- package/es/stat-view/treemap-chart.js +136 -200
- package/es/stat-view/trend-chart.js +137 -183
- package/es/stat-view/world-map.js +233 -243
- package/es/tabs/index.js +164 -169
- package/es/tabs/tab.js +101 -116
- package/es/utils/basic-chart-utils.js +7 -9
- package/es/utils/cell-format.js +48 -51
- package/es/utils/cell-value.js +1 -1
- package/es/utils/collaborator.js +15 -14
- package/es/utils/color-utils.js +48 -37
- package/es/utils/column-utils.js +47 -33
- package/es/utils/column.js +1 -1
- package/es/utils/common-utils.js +111 -117
- package/es/utils/date-format.js +17 -17
- package/es/utils/export-table-utils.js +507 -396
- package/es/utils/index.js +6 -6
- package/es/utils/map.js +30 -34
- package/es/utils/model.js +3 -5
- package/es/utils/object.js +4 -4
- package/es/utils/pivot-table.js +20 -20
- package/es/utils/row-utils.js +41 -33
- package/es/utils/search.js +18 -20
- package/es/utils/sql-utils.js +132 -98
- package/es/utils/stat-utils.js +303 -320
- package/es/utils/trend-utils.js +57 -67
- package/package.json +2 -2
package/es/dashboard.js
CHANGED
|
@@ -1,9 +1,3 @@
|
|
|
1
|
-
import _objectSpread from "@babel/runtime/helpers/esm/objectSpread2";
|
|
2
|
-
import _toConsumableArray from "@babel/runtime/helpers/esm/toConsumableArray";
|
|
3
|
-
import _classCallCheck from "@babel/runtime/helpers/esm/classCallCheck";
|
|
4
|
-
import _createClass from "@babel/runtime/helpers/esm/createClass";
|
|
5
|
-
import _inherits from "@babel/runtime/helpers/esm/inherits";
|
|
6
|
-
import _createSuper from "@babel/runtime/helpers/esm/createSuper";
|
|
7
1
|
import React, { Component } from 'react';
|
|
8
2
|
import intl from 'react-intl-universal';
|
|
9
3
|
import { TableUtils, Views } from 'dtable-store';
|
|
@@ -22,15 +16,11 @@ import './locale';
|
|
|
22
16
|
import './assets/css/dashboard.css';
|
|
23
17
|
import './assets/css/theme.css';
|
|
24
18
|
import './assets/css/dialog.css';
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
_classCallCheck(this, DashBoard);
|
|
31
|
-
_this = _super.call(this, props);
|
|
32
|
-
_this.loadSvg = function () {
|
|
33
|
-
var importAll = function importAll(requireContext) {
|
|
19
|
+
class DashBoard extends Component {
|
|
20
|
+
constructor(props) {
|
|
21
|
+
super(props);
|
|
22
|
+
this.loadSvg = () => {
|
|
23
|
+
const importAll = requireContext => {
|
|
34
24
|
requireContext.keys().forEach(requireContext);
|
|
35
25
|
};
|
|
36
26
|
try {
|
|
@@ -40,471 +30,491 @@ var DashBoard = /*#__PURE__*/function (_Component) {
|
|
|
40
30
|
console.log(error);
|
|
41
31
|
}
|
|
42
32
|
};
|
|
43
|
-
|
|
44
|
-
if (
|
|
33
|
+
this.onLocalDTableChanged = value => {
|
|
34
|
+
if (this.updatingLocalStatistics) {
|
|
45
35
|
// it's unnecessary to notify data changed during update statistics
|
|
46
|
-
|
|
47
|
-
|
|
36
|
+
this.value = value;
|
|
37
|
+
this.updatingLocalStatistics = false;
|
|
48
38
|
return;
|
|
49
39
|
}
|
|
50
|
-
|
|
51
|
-
value
|
|
40
|
+
this.onDTableChanged({
|
|
41
|
+
value
|
|
52
42
|
});
|
|
53
43
|
};
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
value
|
|
44
|
+
this.onServerDTableChanged = value => {
|
|
45
|
+
this.onDTableChanged({
|
|
46
|
+
value
|
|
57
47
|
});
|
|
58
48
|
};
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
49
|
+
this.onDTableChanged = _ref => {
|
|
50
|
+
let {
|
|
51
|
+
value
|
|
52
|
+
} = _ref;
|
|
53
|
+
this.value = value;
|
|
54
|
+
this.disabledUpdateLayout = true;
|
|
55
|
+
const {
|
|
56
|
+
statistics,
|
|
57
|
+
selectedDashboardIdx
|
|
58
|
+
} = this.initDashboard();
|
|
59
|
+
this.setState({
|
|
60
|
+
statistics,
|
|
61
|
+
selectedDashboardIdx
|
|
69
62
|
});
|
|
70
63
|
};
|
|
71
|
-
|
|
72
|
-
|
|
64
|
+
this.refreshCharts = () => {
|
|
65
|
+
this.setState({
|
|
73
66
|
dtableChangedTime: Date.now()
|
|
74
67
|
});
|
|
75
68
|
};
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
username
|
|
79
|
-
userId
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
69
|
+
this.initDashboard = () => {
|
|
70
|
+
const {
|
|
71
|
+
username,
|
|
72
|
+
userId
|
|
73
|
+
} = window.dtable;
|
|
74
|
+
const value = this.value;
|
|
75
|
+
this.chartCalculator = new ChartCalculator({
|
|
76
|
+
username,
|
|
77
|
+
userId,
|
|
78
|
+
value,
|
|
79
|
+
statisticThreadManager: this.statisticThreadManager
|
|
80
|
+
});
|
|
81
|
+
this.dashboardService = new DashBoardService({
|
|
82
|
+
value,
|
|
83
|
+
defaultDashboardName: this.defaultDashboardName,
|
|
84
|
+
chartCalculator: this.chartCalculator,
|
|
85
|
+
chartService: this.chartService,
|
|
86
|
+
updateStatistics: this.props.updateStatistics,
|
|
87
|
+
deletePluginSettings: this.props.deletePluginSettings
|
|
88
|
+
});
|
|
89
|
+
this.initLabelColorConfigs();
|
|
90
|
+
const statistics = this.dashboardService.getStatistics();
|
|
91
|
+
const validStatistics = this.dashboardService.getValidStatistics(statistics);
|
|
92
|
+
let selectedDashboardIdx = this.getSelectedDashboardIdxFromLocal(KEY_SELECTED_DASHBOARD) || 0;
|
|
99
93
|
if (!statistics[selectedDashboardIdx]) {
|
|
100
94
|
selectedDashboardIdx = 0;
|
|
101
95
|
}
|
|
102
96
|
return {
|
|
103
97
|
statistics: validStatistics,
|
|
104
|
-
selectedDashboardIdx
|
|
98
|
+
selectedDashboardIdx
|
|
105
99
|
};
|
|
106
100
|
};
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
var dtableUuid = window.dtable.dtableUuid;
|
|
134
|
-
var selectedViewIdsString = window.localStorage.getItem(key);
|
|
135
|
-
var selectedViewIds = selectedViewIdsString ? JSON.parse(selectedViewIdsString) : {};
|
|
101
|
+
this.initLabelColorConfigs = () => {
|
|
102
|
+
const systemCustomColors = window.dtable.customColors || [];
|
|
103
|
+
const baseSettings = this.value && this.value.settings;
|
|
104
|
+
const baseCustomColors = baseSettings && baseSettings.custom_colors || [];
|
|
105
|
+
this.labelColorConfigs = [...LABEL_COLORS.map(color => ({
|
|
106
|
+
color: color.toUpperCase(),
|
|
107
|
+
text_color: '#fff'
|
|
108
|
+
})), ...systemCustomColors.map(customColor => ({
|
|
109
|
+
...customColor,
|
|
110
|
+
color: customColor.color.toUpperCase()
|
|
111
|
+
})), ...baseCustomColors.map(customColor => ({
|
|
112
|
+
color: customColor.COLOR.toUpperCase(),
|
|
113
|
+
text_color: customColor.TEXT_COLOR,
|
|
114
|
+
border_color: customColor.BORDER_COLOR
|
|
115
|
+
}))];
|
|
116
|
+
};
|
|
117
|
+
this.clearCalculations = () => {
|
|
118
|
+
this.statisticThreadManager.clearQueue();
|
|
119
|
+
this.statisticThreadManager.terminateWorkers();
|
|
120
|
+
};
|
|
121
|
+
this.getSelectedDashboardIdxFromLocal = key => {
|
|
122
|
+
const {
|
|
123
|
+
dtableUuid
|
|
124
|
+
} = window.dtable;
|
|
125
|
+
const selectedViewIdsString = window.localStorage.getItem(key);
|
|
126
|
+
const selectedViewIds = selectedViewIdsString ? JSON.parse(selectedViewIdsString) : {};
|
|
136
127
|
return selectedViewIds[dtableUuid];
|
|
137
128
|
};
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
129
|
+
this.setSelectedDashboardIdx = index => {
|
|
130
|
+
const {
|
|
131
|
+
dtableUuid
|
|
132
|
+
} = window.dtable;
|
|
133
|
+
const selectedViewIdsString = window.localStorage.getItem(KEY_SELECTED_DASHBOARD);
|
|
134
|
+
let selectedViewIds = selectedViewIdsString ? JSON.parse(selectedViewIdsString) : {};
|
|
142
135
|
selectedViewIds[dtableUuid] = index;
|
|
143
136
|
localStorage.setItem(KEY_SELECTED_DASHBOARD, JSON.stringify(selectedViewIds));
|
|
144
137
|
};
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
138
|
+
this.getActiveTable = () => {
|
|
139
|
+
const {
|
|
140
|
+
activeTableIdx
|
|
141
|
+
} = this.props;
|
|
142
|
+
return TableUtils.getTableByIndex(this.value.tables, activeTableIdx);
|
|
143
|
+
};
|
|
144
|
+
this.getActiveView = () => {
|
|
145
|
+
const {
|
|
146
|
+
activeViewId
|
|
147
|
+
} = this.props;
|
|
148
|
+
const selectedTable = this.getActiveTable();
|
|
152
149
|
if (!activeViewId) return selectedTable.views[0];
|
|
153
150
|
return Views.getViewById(selectedTable.views, activeViewId);
|
|
154
151
|
};
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
152
|
+
this.getInitChart = _ref2 => {
|
|
153
|
+
let {
|
|
154
|
+
chartType,
|
|
155
|
+
dashboard,
|
|
156
|
+
activeTable,
|
|
157
|
+
activeView
|
|
158
|
+
} = _ref2;
|
|
159
|
+
return this.chartService.getInitChart({
|
|
161
160
|
type: chartType,
|
|
162
|
-
dashboard
|
|
163
|
-
activeTable
|
|
164
|
-
activeView
|
|
165
|
-
});
|
|
166
|
-
};
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
161
|
+
dashboard,
|
|
162
|
+
activeTable,
|
|
163
|
+
activeView
|
|
164
|
+
});
|
|
165
|
+
};
|
|
166
|
+
this.getConvertedChart = _ref3 => {
|
|
167
|
+
let {
|
|
168
|
+
originalStatistic,
|
|
169
|
+
targetStatisticType,
|
|
170
|
+
activeTable
|
|
171
|
+
} = _ref3;
|
|
172
|
+
return this.chartService.getConvertedChart({
|
|
173
|
+
originalStatistic,
|
|
174
|
+
targetStatisticType,
|
|
175
|
+
activeTable
|
|
176
|
+
});
|
|
177
|
+
};
|
|
178
|
+
this.selectDashboard = selectedDashboardIdx => {
|
|
179
|
+
this.disabledUpdateLayout = true;
|
|
180
|
+
this.setSelectedDashboardIdx(selectedDashboardIdx);
|
|
181
|
+
this.clearCalculations();
|
|
182
|
+
this.setState({
|
|
183
|
+
selectedDashboardIdx
|
|
183
184
|
});
|
|
184
185
|
};
|
|
185
|
-
|
|
186
|
-
|
|
186
|
+
this.modifyColorTheme = colorThemeName => {
|
|
187
|
+
const updatedStatistics = this.dashboardService.update({
|
|
187
188
|
action: DASHBOARD_ACTION_TYPE.MODIFY_COLOR_THEME,
|
|
188
189
|
payload: {
|
|
189
|
-
colorThemeName
|
|
190
|
+
colorThemeName
|
|
190
191
|
}
|
|
191
192
|
});
|
|
192
|
-
|
|
193
|
+
this.updateStatistics({
|
|
193
194
|
statistics: updatedStatistics
|
|
194
195
|
});
|
|
195
196
|
};
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
197
|
+
this.addDashboard = (name, callback) => {
|
|
198
|
+
const {
|
|
199
|
+
statistics
|
|
200
|
+
} = this.state;
|
|
201
|
+
const dashboard = new StatisticDashBoard({
|
|
199
202
|
_id: generatorUniqueId(statistics),
|
|
200
203
|
stat_items: [],
|
|
201
|
-
name
|
|
204
|
+
name
|
|
202
205
|
});
|
|
203
|
-
|
|
206
|
+
const updatedStatistics = this.dashboardService.update({
|
|
204
207
|
action: DASHBOARD_ACTION_TYPE.ADD_DASHBOARD,
|
|
205
208
|
payload: {
|
|
206
|
-
dashboard
|
|
209
|
+
dashboard
|
|
207
210
|
}
|
|
208
211
|
});
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
212
|
+
this.clearCalculations();
|
|
213
|
+
const selectedDashboardIdx = updatedStatistics.length - 1;
|
|
214
|
+
this.setSelectedDashboardIdx(selectedDashboardIdx);
|
|
215
|
+
this.updateStatistics({
|
|
213
216
|
statistics: updatedStatistics,
|
|
214
|
-
selectedDashboardIdx
|
|
215
|
-
},
|
|
217
|
+
selectedDashboardIdx
|
|
218
|
+
}, () => {
|
|
216
219
|
callback && callback();
|
|
217
220
|
});
|
|
218
221
|
};
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
+
this.renameDashboard = name => {
|
|
223
|
+
const {
|
|
224
|
+
selectedDashboardIdx
|
|
225
|
+
} = this.state;
|
|
226
|
+
const updatedStatistics = this.dashboardService.update({
|
|
222
227
|
action: DASHBOARD_ACTION_TYPE.RENAME_DASHBOARD,
|
|
223
228
|
payload: {
|
|
224
229
|
index: selectedDashboardIdx,
|
|
225
|
-
name
|
|
230
|
+
name
|
|
226
231
|
}
|
|
227
232
|
});
|
|
228
|
-
|
|
233
|
+
this.updateStatistics({
|
|
229
234
|
statistics: updatedStatistics
|
|
230
235
|
});
|
|
231
236
|
};
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
statistics
|
|
235
|
-
selectedDashboardIdx
|
|
236
|
-
|
|
237
|
+
this.deleteDashboard = index => {
|
|
238
|
+
const {
|
|
239
|
+
statistics,
|
|
240
|
+
selectedDashboardIdx
|
|
241
|
+
} = this.state;
|
|
242
|
+
let nextSelectedDashboardIdx = selectedDashboardIdx;
|
|
237
243
|
if (index === statistics.length - 1) {
|
|
238
244
|
nextSelectedDashboardIdx--;
|
|
239
245
|
}
|
|
240
|
-
|
|
246
|
+
const updatedStatistics = this.dashboardService.update({
|
|
241
247
|
action: DASHBOARD_ACTION_TYPE.DELETE_DASHBOARD,
|
|
242
248
|
payload: {
|
|
243
|
-
index
|
|
249
|
+
index
|
|
244
250
|
}
|
|
245
251
|
});
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
252
|
+
this.setSelectedDashboardIdx(nextSelectedDashboardIdx);
|
|
253
|
+
this.clearCalculations();
|
|
254
|
+
this.updateStatistics({
|
|
249
255
|
statistics: updatedStatistics,
|
|
250
256
|
selectedDashboardIdx: nextSelectedDashboardIdx
|
|
251
257
|
});
|
|
252
258
|
};
|
|
253
|
-
|
|
254
|
-
|
|
259
|
+
this.moveDashboard = (draggedDashboardId, targetBoardId, relativePosition) => {
|
|
260
|
+
const updatedStatistics = this.dashboardService.update({
|
|
255
261
|
action: DASHBOARD_ACTION_TYPE.MOVE_DASHBOARD,
|
|
256
262
|
payload: {
|
|
257
|
-
draggedDashboardId
|
|
258
|
-
targetBoardId
|
|
259
|
-
relativePosition
|
|
263
|
+
draggedDashboardId,
|
|
264
|
+
targetBoardId,
|
|
265
|
+
relativePosition
|
|
260
266
|
}
|
|
261
267
|
});
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
_this.setSelectedDashboardIdx(selectedDashboardIdx);
|
|
266
|
-
_this.updateStatistics({
|
|
268
|
+
const selectedDashboardIdx = updatedStatistics.findIndex(statistic => statistic._id === draggedDashboardId);
|
|
269
|
+
this.setSelectedDashboardIdx(selectedDashboardIdx);
|
|
270
|
+
this.updateStatistics({
|
|
267
271
|
statistics: updatedStatistics,
|
|
268
|
-
selectedDashboardIdx
|
|
272
|
+
selectedDashboardIdx
|
|
269
273
|
});
|
|
270
274
|
};
|
|
271
|
-
|
|
275
|
+
this.modifyDashboardLayout = layout => {
|
|
272
276
|
// prevent unexpected refresh.
|
|
273
|
-
if (
|
|
274
|
-
|
|
277
|
+
if (this.isInitDashboard) {
|
|
278
|
+
this.isInitDashboard = false;
|
|
275
279
|
return;
|
|
276
280
|
}
|
|
277
|
-
if (
|
|
278
|
-
|
|
281
|
+
if (this.disabledUpdateLayout) {
|
|
282
|
+
this.disabledUpdateLayout = false;
|
|
279
283
|
return;
|
|
280
284
|
}
|
|
281
|
-
|
|
285
|
+
const updatedStatistics = this.dashboardService.update({
|
|
282
286
|
action: DASHBOARD_ACTION_TYPE.MODIFY_DASHBOARD_LAYOUT,
|
|
283
287
|
payload: {
|
|
284
|
-
index:
|
|
285
|
-
layout
|
|
288
|
+
index: this.state.selectedDashboardIdx,
|
|
289
|
+
layout
|
|
286
290
|
}
|
|
287
291
|
});
|
|
288
|
-
|
|
292
|
+
this.updateStatistics({
|
|
289
293
|
statistics: updatedStatistics
|
|
290
294
|
});
|
|
291
295
|
};
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
statistics
|
|
295
|
-
selectedDashboardIdx
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
});
|
|
296
|
+
this.copyChart = chartId => {
|
|
297
|
+
const {
|
|
298
|
+
statistics,
|
|
299
|
+
selectedDashboardIdx
|
|
300
|
+
} = this.state;
|
|
301
|
+
const dashboard = statistics[selectedDashboardIdx];
|
|
302
|
+
const fromChart = dashboard && dashboard.stat_items.find(chart => chart._id === chartId);
|
|
300
303
|
if (!fromChart) return;
|
|
301
|
-
|
|
302
|
-
dashboard
|
|
304
|
+
const newChart = this.chartService.getCopiedChart({
|
|
305
|
+
dashboard,
|
|
303
306
|
originalStatItem: fromChart
|
|
304
307
|
});
|
|
305
|
-
|
|
308
|
+
this.addChart(newChart);
|
|
306
309
|
};
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
+
this.moveChartToView = (chartId, viewId) => {
|
|
311
|
+
this.disabledUpdateLayout = true;
|
|
312
|
+
const updatedStatistics = this.dashboardService.update({
|
|
310
313
|
action: DASHBOARD_ACTION_TYPE.MOVE_CHART_TO_VIEW,
|
|
311
314
|
payload: {
|
|
312
|
-
index:
|
|
315
|
+
index: this.state.selectedDashboardIdx,
|
|
313
316
|
chart_id: chartId,
|
|
314
317
|
target_view_id: viewId
|
|
315
318
|
}
|
|
316
319
|
});
|
|
317
|
-
|
|
320
|
+
this.updateStatistics({
|
|
318
321
|
statistics: updatedStatistics
|
|
319
322
|
});
|
|
320
323
|
};
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
+
this.deleteChart = chartId => {
|
|
325
|
+
this.disabledUpdateLayout = true;
|
|
326
|
+
const updatedStatistics = this.dashboardService.update({
|
|
324
327
|
action: DASHBOARD_ACTION_TYPE.DELETE_CHART,
|
|
325
328
|
payload: {
|
|
326
|
-
index:
|
|
329
|
+
index: this.state.selectedDashboardIdx,
|
|
327
330
|
chart_id: chartId
|
|
328
331
|
}
|
|
329
332
|
});
|
|
330
|
-
|
|
333
|
+
this.updateStatistics({
|
|
331
334
|
statistics: updatedStatistics
|
|
332
335
|
});
|
|
333
336
|
};
|
|
334
|
-
|
|
335
|
-
if (!
|
|
337
|
+
this.addChart = chart => {
|
|
338
|
+
if (!this.chartCalculator.isValidChart(chart)) {
|
|
336
339
|
return;
|
|
337
340
|
}
|
|
338
|
-
|
|
339
|
-
|
|
341
|
+
this.disabledUpdateLayout = true;
|
|
342
|
+
const updatedStatistics = this.dashboardService.update({
|
|
340
343
|
action: DASHBOARD_ACTION_TYPE.ADD_CHART,
|
|
341
344
|
payload: {
|
|
342
|
-
index:
|
|
343
|
-
chart
|
|
345
|
+
index: this.state.selectedDashboardIdx,
|
|
346
|
+
chart
|
|
344
347
|
}
|
|
345
348
|
});
|
|
346
|
-
|
|
349
|
+
this.updateStatistics({
|
|
347
350
|
statistics: updatedStatistics
|
|
348
|
-
},
|
|
351
|
+
}, () => {
|
|
349
352
|
// make the copied stat item display in the view
|
|
350
353
|
document.getElementById(chart._id).scrollIntoView(true);
|
|
351
354
|
});
|
|
352
355
|
};
|
|
353
|
-
|
|
354
|
-
|
|
356
|
+
this.modifyChart = chart => {
|
|
357
|
+
const updatedStatistics = this.dashboardService.update({
|
|
355
358
|
action: DASHBOARD_ACTION_TYPE.MODIFY_CHART,
|
|
356
359
|
payload: {
|
|
357
|
-
index:
|
|
358
|
-
chart
|
|
360
|
+
index: this.state.selectedDashboardIdx,
|
|
361
|
+
chart
|
|
359
362
|
}
|
|
360
363
|
});
|
|
361
|
-
|
|
364
|
+
this.updateStatistics({
|
|
362
365
|
statistics: updatedStatistics
|
|
363
366
|
});
|
|
364
367
|
};
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
368
|
+
this.updateStatistics = (updates, callback) => {
|
|
369
|
+
const {
|
|
370
|
+
statistics
|
|
371
|
+
} = updates;
|
|
372
|
+
this.updatingLocalStatistics = true;
|
|
373
|
+
let validUpdates = {
|
|
374
|
+
...updates
|
|
375
|
+
};
|
|
369
376
|
if (hasOwnProperty(updates, 'statistics')) {
|
|
370
|
-
validUpdates.statistics =
|
|
377
|
+
validUpdates.statistics = this.dashboardService.getValidStatistics(statistics);
|
|
371
378
|
}
|
|
372
|
-
|
|
379
|
+
this.setState(validUpdates, () => {
|
|
373
380
|
callback && callback();
|
|
374
|
-
|
|
381
|
+
this.props.updateStatistics(statistics);
|
|
375
382
|
});
|
|
376
383
|
};
|
|
377
|
-
|
|
378
|
-
return TableUtils.getTableById(
|
|
384
|
+
this.getTableById = tableId => {
|
|
385
|
+
return TableUtils.getTableById(this.value.tables, tableId);
|
|
379
386
|
};
|
|
380
|
-
|
|
381
|
-
return
|
|
387
|
+
this.getTables = () => {
|
|
388
|
+
return this.value.tables;
|
|
382
389
|
};
|
|
383
|
-
|
|
390
|
+
this.getViews = table => {
|
|
384
391
|
return table.views;
|
|
385
392
|
};
|
|
386
|
-
|
|
387
|
-
return
|
|
393
|
+
this.getValue = () => {
|
|
394
|
+
return this.value;
|
|
388
395
|
};
|
|
389
|
-
|
|
396
|
+
this.isTableReadOnly = () => {
|
|
390
397
|
if (window.dtable.modulePermission) {
|
|
391
398
|
return window.dtable.modulePermission.isTableReadOnly;
|
|
392
399
|
}
|
|
393
|
-
|
|
400
|
+
const permission = window.dtable.permission || '';
|
|
394
401
|
return permission === 'r' || permission.slice(0, 2) === 'c-';
|
|
395
402
|
};
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
403
|
+
this.queryMapJson = (_ref4, callback) => {
|
|
404
|
+
let {
|
|
405
|
+
map_level,
|
|
406
|
+
map_location
|
|
407
|
+
} = _ref4;
|
|
408
|
+
this.mapJsonService.queryMapJson({
|
|
409
|
+
map_level,
|
|
410
|
+
map_location
|
|
402
411
|
}, callback);
|
|
403
412
|
};
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
413
|
+
const {
|
|
414
|
+
mediaUrl
|
|
415
|
+
} = window.dtable;
|
|
416
|
+
const {
|
|
417
|
+
value: _value
|
|
418
|
+
} = props;
|
|
419
|
+
const defaultChartTitle = intl.get('Untitled');
|
|
420
|
+
this.defaultDashboardName = intl.get('Default_dashboard');
|
|
421
|
+
this.value = _value;
|
|
422
|
+
this.chartService = new ChartService({
|
|
423
|
+
defaultChartTitle
|
|
411
424
|
});
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
mediaUrl
|
|
425
|
+
this.statisticThreadManager = new ThreadManager((navigator.hardwareConcurrency || 4) - 1);
|
|
426
|
+
this.mapJsonService = new MapJsonService({
|
|
427
|
+
mediaUrl
|
|
415
428
|
});
|
|
416
|
-
|
|
417
|
-
_statistics
|
|
418
|
-
_selectedDashboardIdx
|
|
419
|
-
|
|
429
|
+
const {
|
|
430
|
+
statistics: _statistics,
|
|
431
|
+
selectedDashboardIdx: _selectedDashboardIdx
|
|
432
|
+
} = this.initDashboard();
|
|
433
|
+
this.state = {
|
|
420
434
|
statistics: _statistics,
|
|
421
435
|
selectedDashboardIdx: _selectedDashboardIdx,
|
|
422
436
|
dtableChangedTime: null
|
|
423
437
|
};
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
return _this;
|
|
438
|
+
this.isInitDashboard = true;
|
|
439
|
+
this.updatingLocalStatistics = false;
|
|
440
|
+
this.disabledUpdateLayout = false;
|
|
441
|
+
this.loadSvg();
|
|
429
442
|
}
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
}]);
|
|
508
|
-
return DashBoard;
|
|
509
|
-
}(Component);
|
|
443
|
+
componentDidMount() {
|
|
444
|
+
const {
|
|
445
|
+
eventBus
|
|
446
|
+
} = this.props;
|
|
447
|
+
this.unsubscribeLocalDtableChanged = eventBus.subscribe('local-dtable-changed', this.onLocalDTableChanged);
|
|
448
|
+
this.unsubscribeRemoteDtableChange = eventBus.subscribe('remote-dtable-changed', this.onServerDTableChanged);
|
|
449
|
+
this.unsubscribeRefreshCharts = eventBus.subscribe(CommonEventTypes.REFRESH_CHARTS, this.refreshCharts);
|
|
450
|
+
}
|
|
451
|
+
componentWillUnmount() {
|
|
452
|
+
this.unsubscribeLocalDtableChanged();
|
|
453
|
+
this.unsubscribeRemoteDtableChange();
|
|
454
|
+
this.unsubscribeRefreshCharts();
|
|
455
|
+
this.clearCalculations();
|
|
456
|
+
}
|
|
457
|
+
render() {
|
|
458
|
+
const {
|
|
459
|
+
eventBus
|
|
460
|
+
} = this.props;
|
|
461
|
+
const {
|
|
462
|
+
statistics,
|
|
463
|
+
selectedDashboardIdx,
|
|
464
|
+
dtableChangedTime,
|
|
465
|
+
editingChart
|
|
466
|
+
} = this.state;
|
|
467
|
+
const isTableReadOnly = this.isTableReadOnly();
|
|
468
|
+
const colorThemeName = this.dashboardService.getColorThemeName();
|
|
469
|
+
return isMobile ? /*#__PURE__*/React.createElement(MobileDashboard, {
|
|
470
|
+
isTableReadOnly: isTableReadOnly,
|
|
471
|
+
colorThemeName: colorThemeName,
|
|
472
|
+
dtableChangedTime: dtableChangedTime,
|
|
473
|
+
statistics: statistics,
|
|
474
|
+
selectedDashboardIdx: selectedDashboardIdx,
|
|
475
|
+
chartCalculator: this.chartCalculator,
|
|
476
|
+
labelColorConfigs: this.labelColorConfigs,
|
|
477
|
+
eventBus: eventBus,
|
|
478
|
+
onCloseDashboard: this.props.onCloseStatistic,
|
|
479
|
+
selectDashboard: this.selectDashboard,
|
|
480
|
+
addDashboard: this.addDashboard,
|
|
481
|
+
renameDashboard: this.renameDashboard,
|
|
482
|
+
deleteDashboard: this.deleteDashboard,
|
|
483
|
+
getTableById: this.getTableById,
|
|
484
|
+
queryMapJson: this.queryMapJson
|
|
485
|
+
}) : /*#__PURE__*/React.createElement(DesktopDashboard, {
|
|
486
|
+
isTableReadOnly: isTableReadOnly,
|
|
487
|
+
colorThemeName: colorThemeName,
|
|
488
|
+
dtableChangedTime: dtableChangedTime,
|
|
489
|
+
statistics: statistics,
|
|
490
|
+
editingChart: editingChart,
|
|
491
|
+
selectedDashboardIdx: selectedDashboardIdx,
|
|
492
|
+
chartCalculator: this.chartCalculator,
|
|
493
|
+
labelColorConfigs: this.labelColorConfigs,
|
|
494
|
+
eventBus: eventBus,
|
|
495
|
+
getActiveTable: this.getActiveTable,
|
|
496
|
+
getActiveView: this.getActiveView,
|
|
497
|
+
onCloseDashboard: this.props.onCloseStatistic,
|
|
498
|
+
selectDashboard: this.selectDashboard,
|
|
499
|
+
modifyColorTheme: this.modifyColorTheme,
|
|
500
|
+
addDashboard: this.addDashboard,
|
|
501
|
+
renameDashboard: this.renameDashboard,
|
|
502
|
+
deleteDashboard: this.deleteDashboard,
|
|
503
|
+
moveDashboard: this.moveDashboard,
|
|
504
|
+
getTableById: this.getTableById,
|
|
505
|
+
getTables: this.getTables,
|
|
506
|
+
getViews: this.getViews,
|
|
507
|
+
getValue: this.getValue,
|
|
508
|
+
queryMapJson: this.queryMapJson,
|
|
509
|
+
getInitChart: this.getInitChart,
|
|
510
|
+
getConvertedChart: this.getConvertedChart,
|
|
511
|
+
copyChart: this.copyChart,
|
|
512
|
+
moveChartToView: this.moveChartToView,
|
|
513
|
+
deleteChart: this.deleteChart,
|
|
514
|
+
modifyDashboardLayout: this.modifyDashboardLayout,
|
|
515
|
+
addChart: this.addChart,
|
|
516
|
+
modifyChart: this.modifyChart
|
|
517
|
+
});
|
|
518
|
+
}
|
|
519
|
+
}
|
|
510
520
|
export default DashBoard;
|