dtable-statistic 4.4.24-alpha.9 → 5.0.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.
Files changed (198) hide show
  1. package/es/assets/css/color-picker.css +53 -0
  2. package/es/assets/css/color-rules-popover.css +144 -0
  3. package/es/assets/css/dashboard.css +0 -1
  4. package/es/assets/css/dialog.css +0 -30
  5. package/es/assets/css/slider.css +77 -0
  6. package/es/assets/css/statistic-chart.module.css +11 -0
  7. package/es/assets/css/statistic-custom-title.module.css +3 -0
  8. package/es/assets/css/statistic-custom.module.css +4 -0
  9. package/es/assets/css/statistic-numeric-column-item.module.css +43 -0
  10. package/es/assets/css/statistic-time-picker.module.css +21 -0
  11. package/es/calculator/base-calculator.js +80 -0
  12. package/es/calculator/basic-chart-calculator.js +349 -0
  13. package/es/calculator/combination-calculator.js +246 -0
  14. package/es/calculator/compare-bar-calculator.js +197 -0
  15. package/es/calculator/completeness-calculator.js +215 -0
  16. package/es/calculator/copy-value.js +53 -0
  17. package/es/calculator/dashboard-calculator.js +70 -0
  18. package/es/calculator/heat-map-calculator.js +148 -0
  19. package/es/calculator/horizontal-bar-calculator.js +67 -0
  20. package/es/calculator/index.js +81 -0
  21. package/es/calculator/map-calculator.js +103 -0
  22. package/es/calculator/mirror-calculator.js +146 -0
  23. package/es/calculator/number-card-calculator.js +60 -0
  24. package/es/calculator/pivot-table-calculator.js +821 -0
  25. package/es/calculator/scatter-calculator.js +75 -0
  26. package/es/calculator/thread-manager.js +57 -0
  27. package/es/calculator/trend-calculator.js +113 -0
  28. package/es/calculator/workers/basic-chart-calculator-worker.js +495 -0
  29. package/es/calculator/workers/calculator.worker.js +44 -0
  30. package/es/calculator/workers/card-calculator-worker.js +40 -0
  31. package/es/calculator/workers/combination-calculator-worker.js +276 -0
  32. package/es/calculator/workers/compare-bar-chart-calculator-worker.js +150 -0
  33. package/es/calculator/workers/completeness-calculator-worker.js +208 -0
  34. package/es/calculator/workers/dashboard-calculator-worker.js +68 -0
  35. package/es/calculator/workers/mirror-calculator-worker.js +152 -0
  36. package/es/calculator/workers/pivot-table-calculator-worker.js +718 -0
  37. package/es/calculator/workers/scatter-calculator-worker.js +80 -0
  38. package/es/calculator/workers/trend-calculator-worker.js +108 -0
  39. package/es/calculator/world-map-calculator.js +124 -0
  40. package/es/components/dialog/chart-addition-edit-dialog.js +90 -0
  41. package/es/components/dialog/chart-addition-widgets/chart-selector.js +259 -0
  42. package/es/components/dialog/chart-addition-widgets/statistic-chart-selector.module.css +83 -0
  43. package/es/components/dialog/enlarged-chart-dialog.js +13 -8
  44. package/es/components/dialog/statistic-record-dialog/index.js +34 -25
  45. package/es/components/dialog/statistic-types-dialog/index.css +14 -0
  46. package/es/components/dialog/statistic-types-dialog/index.js +62 -0
  47. package/es/components/dropdown-menu/statistic-dropdown-menu.js +2 -2
  48. package/es/components/popover/color-rules/color-rule.js +183 -0
  49. package/es/components/popover/color-rules/index.js +87 -0
  50. package/es/components/popover/color-rules/rule-filters/filter.js +221 -0
  51. package/es/components/popover/color-rules/rule-filters/index.css +210 -0
  52. package/es/components/popover/color-rules/rule-filters/index.js +97 -0
  53. package/es/components/popover/color-rules/rule-filters/number-input.js +78 -0
  54. package/es/components/popover/color-rules-popover.js +218 -0
  55. package/es/components/popover/color-selector-popover.js +83 -0
  56. package/es/constants/index.js +2 -1
  57. package/es/custom-g2.js +644 -0
  58. package/es/dashboard.js +31 -9
  59. package/es/desktop-dashboard.js +32 -51
  60. package/es/mobile-dashboard.js +16 -8
  61. package/es/model/bar-group.js +58 -0
  62. package/es/model/bar.js +47 -0
  63. package/es/model/base-model.js +18 -0
  64. package/es/model/basic-number-card.js +25 -0
  65. package/es/model/combination.js +48 -0
  66. package/es/model/compare-bar.js +56 -0
  67. package/es/model/completeness-group.js +31 -0
  68. package/es/model/completeness.js +25 -0
  69. package/es/model/custom-bar.js +25 -0
  70. package/es/model/dashboard.js +20 -0
  71. package/es/model/generic-model.js +222 -0
  72. package/es/model/heat-map.js +33 -0
  73. package/es/model/horizontal-bar-group.js +55 -0
  74. package/es/model/horizontal-bar.js +47 -0
  75. package/es/model/index.js +187 -0
  76. package/es/model/map.js +38 -0
  77. package/es/model/mirror.js +33 -0
  78. package/es/model/pie.js +38 -0
  79. package/es/model/ring.js +40 -0
  80. package/es/model/scatter.js +22 -0
  81. package/es/model/table.js +32 -0
  82. package/es/model/trend.js +32 -0
  83. package/es/model/world-map.js +34 -0
  84. package/es/service/chart-service.js +15 -8
  85. package/es/service/dashboard-service.js +29 -25
  86. package/es/stat-editor/chart-name-editor.js +68 -0
  87. package/es/stat-editor/index.js +75 -0
  88. package/es/stat-editor/stat-settings/advance-chart-settings/basic-number-card-settings.js +153 -0
  89. package/es/stat-editor/stat-settings/advance-chart-settings/combination-settings.js +422 -0
  90. package/es/stat-editor/stat-settings/advance-chart-settings/dashboard-chart-settings.js +203 -0
  91. package/es/stat-editor/stat-settings/advance-chart-settings/geo-granularity-settings.js +23 -0
  92. package/es/stat-editor/stat-settings/advance-chart-settings/heat-map-settings.js +104 -0
  93. package/es/stat-editor/stat-settings/advance-chart-settings/index.js +334 -0
  94. package/es/stat-editor/stat-settings/advance-chart-settings/map-settings.js +119 -0
  95. package/es/stat-editor/stat-settings/advance-chart-settings/mirror-settings.js +132 -0
  96. package/es/stat-editor/stat-settings/advance-chart-settings/style-setting/combination-style-setting.js +240 -0
  97. package/es/stat-editor/stat-settings/advance-chart-settings/style-setting/heat-map-settings.js +89 -0
  98. package/es/stat-editor/stat-settings/advance-chart-settings/style-setting/map-setting.js +138 -0
  99. package/es/stat-editor/stat-settings/advance-chart-settings/summary-settings.js +331 -0
  100. package/es/stat-editor/stat-settings/advance-chart-settings/trend-chart-settings.js +143 -0
  101. package/es/stat-editor/stat-settings/advance-chart-settings/world-map-settings.js +109 -0
  102. package/es/stat-editor/stat-settings/basic-chart-settings/advance-bar-chart-settings.js +153 -0
  103. package/es/stat-editor/stat-settings/basic-chart-settings/bar-settings.js +144 -0
  104. package/es/stat-editor/stat-settings/basic-chart-settings/completeness-chart-settings.js +214 -0
  105. package/es/stat-editor/stat-settings/basic-chart-settings/custom-bar-settings.js +121 -0
  106. package/es/stat-editor/stat-settings/basic-chart-settings/groupby-settings.js +172 -0
  107. package/es/stat-editor/stat-settings/basic-chart-settings/horizontal-axis-group-settings.js +366 -0
  108. package/es/stat-editor/stat-settings/basic-chart-settings/horizontal-bar-settings.js +142 -0
  109. package/es/stat-editor/stat-settings/basic-chart-settings/horizontal-group-chart-settings.js +150 -0
  110. package/es/stat-editor/stat-settings/basic-chart-settings/index.js +473 -0
  111. package/es/stat-editor/stat-settings/basic-chart-settings/pie-settings.js +182 -0
  112. package/es/stat-editor/stat-settings/basic-chart-settings/pivot-table-settings.js +564 -0
  113. package/es/stat-editor/stat-settings/basic-chart-settings/scatter-settings.js +112 -0
  114. package/es/stat-editor/stat-settings/basic-chart-settings/stack-item-settings.js +87 -0
  115. package/es/stat-editor/stat-settings/basic-chart-settings/stacks-settings.js +187 -0
  116. package/es/stat-editor/stat-settings/basic-chart-settings/style-setting/bar-chart-style-setting.js +300 -0
  117. package/es/stat-editor/stat-settings/basic-chart-settings/style-setting/completeness-style.js +113 -0
  118. package/es/stat-editor/stat-settings/basic-chart-settings/style-setting/horizontal-bar-chart-style.js +289 -0
  119. package/es/stat-editor/stat-settings/basic-chart-settings/style-setting/label-font-size-editor.js +58 -0
  120. package/es/stat-editor/stat-settings/basic-chart-settings/style-setting/pie-chart-style-settings.js +359 -0
  121. package/es/stat-editor/stat-settings/basic-chart-settings/style-setting/time-compare-style.js +48 -0
  122. package/es/stat-editor/stat-settings/basic-chart-settings/summary-method-setting.js +121 -0
  123. package/es/stat-editor/stat-settings/basic-chart-settings/summary-settings.js +143 -0
  124. package/es/stat-editor/stat-settings/basic-chart-settings/time-comparison-settings.js +269 -0
  125. package/es/stat-editor/stat-settings/basic-chart-settings/timer-picker.js +104 -0
  126. package/es/stat-editor/stat-settings/basic-chart-settings/y-axis-group-settings.js +366 -0
  127. package/es/stat-editor/stat-settings/color-setting/color-group-selector.js +55 -0
  128. package/es/stat-editor/stat-settings/color-setting/color-picker.js +130 -0
  129. package/es/stat-editor/stat-settings/color-setting/color-use-type-selector.js +374 -0
  130. package/es/stat-editor/stat-settings/map/map-level.js +72 -0
  131. package/es/stat-editor/stat-settings/map/map-province-city.js +151 -0
  132. package/es/stat-editor/stat-settings/public-setting/axis-label-position-setting.js +108 -0
  133. package/es/stat-editor/stat-settings/public-setting/base-settings.js +154 -0
  134. package/es/stat-editor/stat-settings/public-setting/calender.js +125 -0
  135. package/es/stat-editor/stat-settings/public-setting/column-settings.js +24 -0
  136. package/es/stat-editor/stat-settings/public-setting/custom-title-setting.js +62 -0
  137. package/es/stat-editor/stat-settings/public-setting/data-sort-setting.js +61 -0
  138. package/es/stat-editor/stat-settings/public-setting/ind-toggle-setting.js +35 -0
  139. package/es/stat-editor/stat-settings/public-setting/min-max-setting.js +60 -0
  140. package/es/stat-editor/stat-settings/public-setting/numeric-summary-item.js +123 -0
  141. package/es/stat-editor/stat-settings/public-setting/toggle-setting.js +33 -0
  142. package/es/stat-editor/stat-settings/public-setting/type-settings/index.css +29 -0
  143. package/es/stat-editor/stat-settings/public-setting/type-settings/index.js +82 -0
  144. package/es/stat-list/chart-preview.js +20 -19
  145. package/es/stat-list/index.js +21 -15
  146. package/es/stat-view/area-chart.js +551 -0
  147. package/es/stat-view/bar-chart.js +582 -0
  148. package/es/stat-view/base-chart.js +132 -0
  149. package/es/stat-view/basic-number-card.js +201 -0
  150. package/es/stat-view/combination-chart.js +546 -0
  151. package/es/stat-view/compare-chart.js +483 -0
  152. package/es/stat-view/completeness-chart.js +390 -0
  153. package/es/stat-view/custom-bar.js +418 -0
  154. package/es/stat-view/dashboard-chart.js +266 -0
  155. package/es/stat-view/heat-map.js +463 -0
  156. package/es/stat-view/horizontal-bar-chart.js +562 -0
  157. package/es/stat-view/index.js +156 -47
  158. package/es/stat-view/line-chart.js +518 -0
  159. package/es/stat-view/map.js +448 -0
  160. package/es/stat-view/mirror.js +275 -0
  161. package/es/stat-view/pie-chart.js +290 -0
  162. package/es/stat-view/pivot-table/index.js +196 -0
  163. package/es/stat-view/pivot-table/one-dimension-table-no-numeric-columns.js +156 -0
  164. package/es/stat-view/pivot-table/one-dimension-table-with-numeric-columns.js +176 -0
  165. package/es/stat-view/pivot-table/pivot-table-display-name.js +215 -0
  166. package/es/stat-view/pivot-table/statistic-pivot-table.module.css +132 -0
  167. package/es/stat-view/pivot-table/two-dimension-table.js +384 -0
  168. package/es/stat-view/ring-chart.js +392 -0
  169. package/es/stat-view/scatter-chart.js +306 -0
  170. package/es/stat-view/treemap-chart.js +253 -0
  171. package/es/stat-view/trend-chart.js +249 -0
  172. package/es/stat-view/world-map.js +431 -0
  173. package/es/tabs/tab.js +2 -2
  174. package/es/utils/basic-chart-utils.js +29 -0
  175. package/es/utils/cell-format.js +115 -0
  176. package/es/utils/collaborator.js +50 -0
  177. package/es/utils/color-utils.js +134 -0
  178. package/es/utils/column-utils.js +110 -0
  179. package/es/utils/column.js +20 -0
  180. package/es/utils/common-utils.js +352 -2
  181. package/es/utils/date-format.js +71 -0
  182. package/es/utils/export-table-utils.js +69 -0
  183. package/es/utils/index.js +89 -12
  184. package/es/utils/map.js +114 -0
  185. package/es/utils/model.js +19 -0
  186. package/es/utils/row-utils.js +134 -0
  187. package/es/utils/search.js +73 -0
  188. package/es/utils/sql-utils.js +359 -0
  189. package/es/utils/stat-utils.js +351 -0
  190. package/es/utils/trend-utils.js +135 -0
  191. package/package.json +8 -6
  192. package/es/components/dialog/chart-edit-dialog.js +0 -93
  193. package/es/components/dtable-popover.js +0 -97
  194. package/es/components/dtable-search-input.js +0 -135
  195. package/es/components/index.js +0 -41
  196. package/es/components/loading.js +0 -15
  197. package/es/components/modal-portal.js +0 -26
  198. package/es/model/conver-statItem.js +0 -124
@@ -0,0 +1,821 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ exports.default = void 0;
8
+ var _dayjs = _interopRequireDefault(require("dayjs"));
9
+ var _dtableUtils = require("dtable-utils");
10
+ var _baseCalculator = _interopRequireDefault(require("./base-calculator"));
11
+ var _constants = require("../constants");
12
+ var _commonUtils = require("../utils/common-utils");
13
+ var _statUtils = _interopRequireDefault(require("../utils/stat-utils"));
14
+ var _rowUtils = require("../utils/row-utils");
15
+ class PivotTableCalculator extends _baseCalculator.default {
16
+ isValidChart(chart) {
17
+ if (!this.validateBaseConfigs(chart)) {
18
+ return false;
19
+ }
20
+ const {
21
+ table_id,
22
+ groupby_column_key,
23
+ summary_type,
24
+ summary_column_key,
25
+ column_groupby_column_key,
26
+ summary_columns_option
27
+ } = chart;
28
+ const table = this.getTableById(table_id);
29
+ if (!groupby_column_key || !(0, _dtableUtils.getTableColumnByKey)(table, groupby_column_key)) {
30
+ return false;
31
+ }
32
+ if (column_groupby_column_key && !(0, _dtableUtils.getTableColumnByKey)(table, column_groupby_column_key)) {
33
+ return false;
34
+ }
35
+ if (summary_type === _constants.SUMMARY_TYPE.ADVANCED) {
36
+ const summaryColumnsKeys = summary_columns_option ? summary_columns_option.map(item => item.key) : [];
37
+ if (!table.columns.find(column => column.key === summary_column_key || summaryColumnsKeys.includes(column.key))) {
38
+ return false;
39
+ }
40
+ }
41
+ return true;
42
+ }
43
+ async calculate(chart) {
44
+ if (!this.isValidChart(chart)) return {};
45
+ if (this.isCalcByQueryDB(chart)) {
46
+ return await this.queryDb(chart);
47
+ }
48
+ return await this.calculateWithWorker(chart);
49
+ }
50
+ async queryDb(chart) {
51
+ const {
52
+ table_id,
53
+ view_id,
54
+ column_groupby_column_key,
55
+ groupby_column_key,
56
+ summary_column_key
57
+ } = chart;
58
+ const table = this.getTableById(table_id);
59
+ const view = this.getViewById(view_id, table);
60
+ const groupbyColumn = (0, _dtableUtils.getTableColumnByKey)(table, groupby_column_key);
61
+ const columnGroupbyColumn = (0, _dtableUtils.getTableColumnByKey)(table, column_groupby_column_key);
62
+ const summaryColumn = (0, _dtableUtils.getTableColumnByKey)(table, summary_column_key);
63
+ const sqlMap = this.generateSqlFromChart(chart, table, view);
64
+ const columnMap = {
65
+ groupbyColumn,
66
+ columnGroupbyColumn,
67
+ summaryColumn
68
+ };
69
+ const result = await this.sqlQuery(sqlMap.sql);
70
+ const {
71
+ status,
72
+ data
73
+ } = result;
74
+ if (!status === 200 || !data || !data.success) return {};
75
+ const {
76
+ results: sqlRows
77
+ } = data;
78
+ if (!column_groupby_column_key) {
79
+ return this.oneDimensionTableSQLResult2JavaScript(chart, sqlRows, sqlMap, columnMap);
80
+ }
81
+ return this.twoDimensionTableSQLResult2JavaScript(chart, sqlRows, sqlMap, columnMap);
82
+ }
83
+ generateSqlFromChart(chart, table, view) {
84
+ if (!chart || !table || !view) return '';
85
+ const {
86
+ column_groupby_column_key,
87
+ groupby_column_key
88
+ } = chart;
89
+ if (!groupby_column_key) return '';
90
+ const condition = this.filter2SqlCondition(table, view);
91
+ if (!column_groupby_column_key) {
92
+ return this.oneDimensionStatisticTable2sql(chart, condition);
93
+ }
94
+ return this.twoDimensionStatisticTable2sql(chart, condition);
95
+ }
96
+ oneDimensionStatisticTable2sql(chart, condition) {
97
+ const {
98
+ table_id,
99
+ groupby_column_key,
100
+ summary_type,
101
+ summary_column_key,
102
+ numeric_column_keys,
103
+ groupby_date_granularity,
104
+ groupby_geolocation_granularity,
105
+ summary_method,
106
+ summary_columns_option
107
+ } = chart;
108
+ const table = this.getTableById(table_id);
109
+ const groupbyColumn = (0, _dtableUtils.getTableColumnByKey)(table, groupby_column_key);
110
+ if (!groupbyColumn) return '';
111
+ const {
112
+ name: sqlGroupbyColumnName,
113
+ key: sqlGroupbyColumnKey
114
+ } = this.column2SqlColumn(groupbyColumn, {
115
+ dateGranularity: groupby_date_granularity,
116
+ geolocationGranularity: groupby_geolocation_granularity
117
+ });
118
+ let tableName = "`".concat(table.name, "`");
119
+ if (summary_type === _constants.SUMMARY_TYPE.COUNT) {
120
+ const {
121
+ name: sqlSummaryColumnName,
122
+ key: sqlSummaryColumnKey
123
+ } = this.summaryMethodColumn2SqlColumn('Count', groupbyColumn);
124
+ const sql = "SELECT ".concat(sqlGroupbyColumnName, ", ").concat(sqlSummaryColumnName, " FROM ").concat(tableName, " ").concat(condition, " GROUP BY ").concat(sqlGroupbyColumnName, " ORDER BY `").concat(groupbyColumn.name, "` LIMIT 0, 5000");
125
+ return {
126
+ sql,
127
+ sqlGroupbyColumnKey,
128
+ sqlSummaryColumnKey
129
+ };
130
+ }
131
+ if (summary_columns_option) {
132
+ let summaries = [];
133
+ let summaryColumnOptions = [];
134
+ const summaryMethod = summary_method;
135
+ const summaryColumn = (0, _dtableUtils.getTableColumnByKey)(table, summary_column_key);
136
+ if (summaryColumn && ((0, _dtableUtils.isNumericColumn)(summaryColumn) || (0, _dtableUtils.isDateColumn)(summaryColumn))) {
137
+ const {
138
+ name: sqlSummaryMethodColumnName,
139
+ key: sqlSummaryMethodColumnKey
140
+ } = this.summaryMethodColumn2SqlColumn(summaryMethod, summaryColumn);
141
+ summaries.push({
142
+ sqlSummaryMethodColumnKey,
143
+ summaryColumn,
144
+ summaryMethod
145
+ });
146
+ summaryColumnOptions.push(sqlSummaryMethodColumnName);
147
+ }
148
+ summary_columns_option.forEach(option => {
149
+ const {
150
+ key,
151
+ method
152
+ } = option;
153
+ const summaryColumn = (0, _dtableUtils.getTableColumnByKey)(table, key);
154
+ const summaryMethod = method;
155
+ if (summaryColumn && ((0, _dtableUtils.isNumericColumn)(summaryColumn) || (0, _dtableUtils.isDateColumn)(summaryColumn))) {
156
+ const {
157
+ name: sqlSummaryMethodColumnName,
158
+ key: sqlSummaryMethodColumnKey
159
+ } = this.summaryMethodColumn2SqlColumn(summaryMethod, summaryColumn);
160
+ summaries.push({
161
+ sqlSummaryMethodColumnKey,
162
+ summaryColumn,
163
+ summaryMethod
164
+ });
165
+ summaryColumnOptions.push(sqlSummaryMethodColumnName);
166
+ }
167
+ });
168
+ const statisticSummaryColumnsString = summaryColumnOptions.join(', ');
169
+ const sql = "SELECT ".concat(sqlGroupbyColumnName).concat(statisticSummaryColumnsString ? ', ' + statisticSummaryColumnsString : '', " FROM ").concat(tableName, " ").concat(condition, " GROUP BY ").concat(sqlGroupbyColumnName, " LIMIT 0, 5000");
170
+ return {
171
+ sql,
172
+ sqlGroupbyColumnKey,
173
+ summaries
174
+ };
175
+ }
176
+ const summaryMethod = summary_method;
177
+ const statisticNumericColumnKeys = [summary_column_key, ...(numeric_column_keys || [])];
178
+ const validStatisticNumericColumnKeys = [...new Set(statisticNumericColumnKeys)];
179
+ let sqlNumericColumns = [];
180
+ let summaries = [];
181
+ validStatisticNumericColumnKeys.map(key => (0, _dtableUtils.getTableColumnByKey)(table, key)).filter(column => column && ((0, _dtableUtils.isDateColumn)(column) || (0, _dtableUtils.isNumericColumn)(column))).forEach(column => {
182
+ const {
183
+ name: sqlNumericColumn,
184
+ key: sqlNumericColumnKey
185
+ } = this.summaryMethodColumn2SqlColumn(summaryMethod, column);
186
+ summaries.push({
187
+ sqlSummaryMethodColumnKey: sqlNumericColumnKey,
188
+ summaryColumn: column,
189
+ summaryMethod
190
+ });
191
+ sqlNumericColumns.push(sqlNumericColumn);
192
+ });
193
+ const statisticSummaryColumnsString = sqlNumericColumns.join(', ');
194
+ const sql = "SELECT ".concat(sqlGroupbyColumnName).concat(statisticSummaryColumnsString ? ', ' + statisticSummaryColumnsString : '', " FROM ").concat(tableName, " ").concat(condition, " GROUP BY ").concat(sqlGroupbyColumnName, " LIMIT 0, 5000");
195
+ return {
196
+ sql,
197
+ sqlGroupbyColumnKey,
198
+ summaries
199
+ };
200
+ }
201
+ twoDimensionStatisticTable2sql(chart, condition) {
202
+ const {
203
+ table_id,
204
+ groupby_column_key,
205
+ column_groupby_column_key,
206
+ summary_type,
207
+ summary_column_key,
208
+ groupby_date_granularity,
209
+ groupby_geolocation_granularity,
210
+ column_groupby_date_granularity,
211
+ column_groupby_geolocation_granularity,
212
+ summary_method,
213
+ column_groupby_multiple_numeric_column,
214
+ summary_columns_option
215
+ } = chart;
216
+ const table = this.getTableById(table_id);
217
+ let tableName = "`".concat(table.name, "`");
218
+ const columnGroupbyColumn = (0, _dtableUtils.getTableColumnByKey)(table, column_groupby_column_key);
219
+ if (!columnGroupbyColumn) return this.oneDimensionStatisticTable2sql(chart, table, tableName, condition);
220
+ const groupbyColumn = (0, _dtableUtils.getTableColumnByKey)(table, groupby_column_key);
221
+ if (!groupbyColumn) return '';
222
+ const {
223
+ name: sqlGroupbyColumnName,
224
+ key: sqlGroupbyColumnKey
225
+ } = this.column2SqlColumn(groupbyColumn, {
226
+ dateGranularity: groupby_date_granularity,
227
+ geolocationGranularity: groupby_geolocation_granularity
228
+ });
229
+ const {
230
+ name: sqlColumnGroupbyColumn,
231
+ key: sqlColumnGroupbyColumnKey
232
+ } = this.column2SqlColumn(columnGroupbyColumn, {
233
+ dateGranularity: column_groupby_date_granularity,
234
+ geolocationGranularity: column_groupby_geolocation_granularity
235
+ });
236
+ let sqlSummaryColumnName;
237
+ let sqlSummaryColumnKey;
238
+ if (summary_type === _constants.SUMMARY_TYPE.COUNT) {
239
+ const {
240
+ name,
241
+ key
242
+ } = this.summaryMethodColumn2SqlColumn('Count', groupbyColumn);
243
+ sqlSummaryColumnName = name;
244
+ sqlSummaryColumnKey = key;
245
+ } else {
246
+ const summaryMethod = summary_method;
247
+ const summaryColumn = (0, _dtableUtils.getTableColumnByKey)(table, summary_column_key) || {};
248
+ const {
249
+ name,
250
+ key
251
+ } = this.summaryMethodColumn2SqlColumn(summaryMethod, summaryColumn);
252
+ sqlSummaryColumnName = name;
253
+ sqlSummaryColumnKey = key;
254
+ if (column_groupby_multiple_numeric_column && column_groupby_column_key) {
255
+ const sqlSummaryMultipleNumericColumnName = Array.isArray(summary_columns_option) ? summary_columns_option.forEach(item => {
256
+ const summaryColumn = (0, _dtableUtils.getTableColumnByKey)(table, item.key) || {};
257
+ const {
258
+ name
259
+ } = this.summaryMethodColumn2SqlColumn(item.method, summaryColumn);
260
+ return name;
261
+ }) : [];
262
+ sqlSummaryColumnName = sqlSummaryMultipleNumericColumnName;
263
+ }
264
+ if (summary_columns_option) {
265
+ let summaryColumnOptions = [];
266
+ summary_columns_option.forEach(option => {
267
+ const {
268
+ key,
269
+ method
270
+ } = option;
271
+ const summaryColumn = (0, _dtableUtils.getTableColumnByKey)(table, key);
272
+ const summaryMethod = method;
273
+ if (summaryColumn && ((0, _dtableUtils.isNumericColumn)(summaryColumn) || (0, _dtableUtils.isDateColumn)(summaryColumn))) {
274
+ const {
275
+ name: sqlSummaryMethodColumnName
276
+ } = this.summaryMethodColumn2SqlColumn(summaryMethod, summaryColumn);
277
+ summaryColumnOptions.push(sqlSummaryMethodColumnName);
278
+ }
279
+ });
280
+ const statisticSummaryColumnsString = summaryColumnOptions.join(', ');
281
+ if (statisticSummaryColumnsString) {
282
+ if (sqlSummaryColumnName) {
283
+ sqlSummaryColumnName += ", ".concat(statisticSummaryColumnsString);
284
+ } else {
285
+ sqlSummaryColumnName = statisticSummaryColumnsString;
286
+ }
287
+ }
288
+ }
289
+ }
290
+ let sql;
291
+ if (sqlSummaryColumnName) {
292
+ sql = "SELECT ".concat(sqlGroupbyColumnName, ", ").concat(sqlColumnGroupbyColumn, ", ").concat(sqlSummaryColumnName, " FROM ").concat(tableName, " ").concat(condition, " GROUP BY ").concat(sqlGroupbyColumnName, ", ").concat(sqlColumnGroupbyColumn, " ORDER BY `").concat(groupbyColumn.name, "` LIMIT 0, 5000");
293
+ } else {
294
+ sql = "SELECT ".concat(sqlGroupbyColumnName, ", ").concat(sqlColumnGroupbyColumn, " FROM ").concat(tableName, " ").concat(condition, " GROUP BY ").concat(sqlGroupbyColumnName, ", ").concat(sqlColumnGroupbyColumn, " ORDER BY `").concat(groupbyColumn.name, "` LIMIT 0, 5000");
295
+ }
296
+ return {
297
+ sql,
298
+ sqlGroupbyColumnKey,
299
+ sqlColumnGroupbyColumnKey,
300
+ sqlSummaryColumnKey
301
+ };
302
+ }
303
+ oneDimensionTableSQLResult2JavaScript(chart, sqlRows, statisticSQLMap, columnMap) {
304
+ const {
305
+ groupbyColumn
306
+ } = columnMap;
307
+ const {
308
+ summary_type,
309
+ groupby_geolocation_granularity,
310
+ groupby_date_granularity,
311
+ groupby_include_empty_cells
312
+ } = chart;
313
+ let pivot_columns = [];
314
+ let pivot_rows = [];
315
+ const isCount = summary_type === _constants.SUMMARY_TYPE.COUNT;
316
+ if (isCount) {
317
+ const {
318
+ sqlGroupbyColumnKey,
319
+ sqlSummaryColumnKey
320
+ } = statisticSQLMap;
321
+ let allTotal = 0;
322
+ sqlRows.forEach(row => {
323
+ const originalLabel = this.getOriginalLabel(groupbyColumn, sqlGroupbyColumnKey, row, groupby_geolocation_granularity, groupby_date_granularity);
324
+ const name = this.getLabel(groupbyColumn, originalLabel);
325
+ const original_name = this.getOriginalName(groupbyColumn, originalLabel);
326
+ if (!groupby_include_empty_cells && !name) {
327
+ return;
328
+ }
329
+ const total = row[sqlSummaryColumnKey] || 0;
330
+ allTotal += total;
331
+ pivot_rows.push({
332
+ name,
333
+ original_name,
334
+ rows: [],
335
+ total: {
336
+ total
337
+ }
338
+ });
339
+ });
340
+ return {
341
+ pivot_columns,
342
+ pivot_rows,
343
+ pivot_columns_total: {
344
+ total: allTotal
345
+ }
346
+ };
347
+ }
348
+ const {
349
+ sqlGroupbyColumnKey,
350
+ summaries
351
+ } = statisticSQLMap;
352
+ let totalTemplate = {};
353
+ summaries.forEach(summary => {
354
+ const {
355
+ summaryColumn,
356
+ summaryMethod
357
+ } = summary;
358
+ const summaryColumnKey = summaryColumn.key;
359
+ totalTemplate[summaryColumnKey + summaryMethod] = this.initTotal(summaryMethod);
360
+ pivot_columns.push({
361
+ key: summaryColumnKey,
362
+ method: summaryMethod
363
+ });
364
+ });
365
+ let allTotal = {
366
+ ...totalTemplate
367
+ };
368
+ sqlRows.forEach(row => {
369
+ let rowTotal = {
370
+ ...totalTemplate
371
+ };
372
+ summaries.forEach(summary => {
373
+ const {
374
+ sqlSummaryMethodColumnKey,
375
+ summaryColumn,
376
+ summaryMethod
377
+ } = summary;
378
+ const summaryColumnKey = summaryColumn.key;
379
+ const totalKey = summaryColumnKey + summaryMethod;
380
+ const value = row[sqlSummaryMethodColumnKey] || this.initTotal(summaryMethod);
381
+ allTotal[totalKey] = this.getSummaryValue({
382
+ summaryColumn,
383
+ summaryMethod
384
+ }, allTotal[totalKey], value);
385
+ if (summaryColumn && (0, _dtableUtils.isDateColumn)(summaryColumn)) {
386
+ rowTotal[totalKey] = value;
387
+ } else if (summaryColumn && (0, _dtableUtils.isNumericColumn)(summaryColumn)) {
388
+ rowTotal[totalKey] = rowTotal[totalKey] + value;
389
+ }
390
+ });
391
+ const originalLabel = this.getOriginalLabel(groupbyColumn, sqlGroupbyColumnKey, row, groupby_geolocation_granularity, groupby_date_granularity);
392
+ const name = this.getLabel(groupbyColumn, originalLabel);
393
+ const original_name = this.getOriginalName(groupbyColumn, originalLabel);
394
+ pivot_rows.push({
395
+ name,
396
+ original_name,
397
+ rows: [row],
398
+ total: rowTotal
399
+ });
400
+ });
401
+ if (pivot_columns.length < 2) {
402
+ const pivot_column = pivot_columns[0];
403
+ const {
404
+ key,
405
+ method
406
+ } = pivot_column;
407
+ pivot_rows.forEach(row => {
408
+ row.total = {
409
+ ...row.total,
410
+ total: row.total[key + method]
411
+ };
412
+ });
413
+ allTotal = {
414
+ ...allTotal,
415
+ total: allTotal[key + method]
416
+ };
417
+ }
418
+ return {
419
+ pivot_columns,
420
+ pivot_rows,
421
+ pivot_columns_total: allTotal
422
+ };
423
+ }
424
+ twoDimensionTableSQLResult2JavaScript(chart, sqlRows, statisticSQLMap, columnMap) {
425
+ const {
426
+ groupbyColumn,
427
+ columnGroupbyColumn,
428
+ summaryColumn
429
+ } = columnMap || {};
430
+ const {
431
+ table_id,
432
+ groupby_include_empty_cells,
433
+ summary_method,
434
+ groupby_date_granularity,
435
+ groupby_geolocation_granularity,
436
+ column_groupby_geolocation_granularity,
437
+ column_groupby_date_granularity,
438
+ summary_columns_option
439
+ } = chart;
440
+ const {
441
+ sqlGroupbyColumnKey,
442
+ sqlColumnGroupbyColumnKey,
443
+ sqlSummaryColumnKey
444
+ } = statisticSQLMap;
445
+ if (!sqlColumnGroupbyColumnKey) return this.oneDimensionTableSQLResult2JavaScript(chart, sqlRows, statisticSQLMap, columnMap);
446
+ const summaryMethod = summary_method ? summary_method.toUpperCase() : '';
447
+ let pivot_columns = [];
448
+ let pivot_rows = [];
449
+ let pivot_columns_total = {};
450
+ const isRowGroupbyColumnDataAsAnArray = !!_constants.MULTIPLE_CELL_VALUE_COLUMN_TYPE_MAP[columnGroupbyColumn.type];
451
+ sqlRows.forEach(row => {
452
+ const groupbyColumnCellValue = row[sqlGroupbyColumnKey];
453
+ const groupbyColumnOriginalLabel = this.getOriginalLabel(groupbyColumn, sqlGroupbyColumnKey, row, groupby_geolocation_granularity, groupby_date_granularity);
454
+ const groupbyColumnCellValueKey = this.getLabel(groupbyColumn, groupbyColumnOriginalLabel);
455
+ const groupbyColumnOriginalCellValueKey = this.getOriginalName(groupbyColumn, groupbyColumnOriginalLabel);
456
+ const columnGroupbyColumnCellValue = row[sqlColumnGroupbyColumnKey];
457
+ const columnGroupbyColumnOriginalLabel = this.getOriginalLabel(columnGroupbyColumn, sqlColumnGroupbyColumnKey, row, column_groupby_geolocation_granularity, column_groupby_date_granularity);
458
+ const columnGroupbyColumnCellValueKey = this.getLabel(columnGroupbyColumn, columnGroupbyColumnOriginalLabel);
459
+ const columnGroupbyColumnOriginalCellValueKey = this.getOriginalName(columnGroupbyColumn, columnGroupbyColumnOriginalLabel);
460
+ const count = row[sqlSummaryColumnKey];
461
+ if (this.isValidCellValue(columnGroupbyColumnCellValue, groupby_include_empty_cells)) {
462
+ this.updateTwoDimensionColumns(pivot_columns, columnGroupbyColumnCellValueKey, columnGroupbyColumnOriginalCellValueKey, {
463
+ isIncludeEmpty: groupby_include_empty_cells,
464
+ isCellValueAsAnArray: isRowGroupbyColumnDataAsAnArray
465
+ });
466
+ }
467
+ if (this.isValidCellValue(groupbyColumnCellValue, groupby_include_empty_cells)) {
468
+ let pivotRowIndex = pivot_rows.findIndex(r => {
469
+ let resName = r.name;
470
+ return resName === null && groupbyColumnCellValueKey === null || resName === undefined && groupbyColumnCellValueKey === undefined || resName === 0 && groupbyColumnCellValueKey === 0 || resName === groupbyColumnCellValueKey;
471
+ });
472
+ this.updateTwoDimensionRows(pivot_rows, pivot_columns, pivotRowIndex, groupbyColumnCellValueKey, groupbyColumnOriginalCellValueKey, count, row, isRowGroupbyColumnDataAsAnArray, columnGroupbyColumnCellValueKey, {
473
+ summaryMethod,
474
+ summaryColumn
475
+ });
476
+ }
477
+ });
478
+ let pivot_table_total = this.getAndUpdateTwoDimensionTotal(pivot_columns_total, pivot_columns, pivot_rows, {
479
+ summaryMethod,
480
+ summaryColumn
481
+ });
482
+ const selectedTable = this.getTableById(table_id);
483
+ let pivot_summary_multiple_columns = [];
484
+ Array.isArray(summary_columns_option) && summary_columns_option.forEach(columnOption => {
485
+ const {
486
+ key,
487
+ method
488
+ } = columnOption;
489
+ const column = (0, _dtableUtils.getTableColumnByKey)(selectedTable, columnOption.key);
490
+ const {
491
+ name
492
+ } = this.summaryMethodColumn2SqlColumn(columnOption.method, column, true);
493
+ if (column && (0, _dtableUtils.isNumericColumn)(column)) {
494
+ pivot_summary_multiple_columns.push({
495
+ key,
496
+ method,
497
+ type: column.type,
498
+ column_name: column.name,
499
+ sqlKey: name
500
+ });
501
+ }
502
+ });
503
+ return {
504
+ pivot_columns,
505
+ pivot_rows,
506
+ pivot_columns_total,
507
+ pivot_table_total,
508
+ pivot_summary_multiple_columns,
509
+ isSqlQuery: true
510
+ };
511
+ }
512
+ column2SqlColumn(column) {
513
+ let {
514
+ dateGranularity,
515
+ geolocationGranularity
516
+ } = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
517
+ const {
518
+ name,
519
+ type,
520
+ key
521
+ } = column;
522
+ const validColumnName = "`".concat(name, "`");
523
+ switch (type) {
524
+ case _dtableUtils.CellType.DATE:
525
+ case _dtableUtils.CellType.MTIME:
526
+ case _dtableUtils.CellType.CTIME:
527
+ {
528
+ const validDateGranularity = dateGranularity && dateGranularity.toUpperCase();
529
+ if (validDateGranularity === 'DAY') {
530
+ const sqlColumnName = "ISODATE(".concat(validColumnName, ")");
531
+ return {
532
+ name: sqlColumnName,
533
+ key: sqlColumnName
534
+ };
535
+ }
536
+ if (validDateGranularity === 'WEEK') {
537
+ const sqlColumnName = "ISODATE(STARTOFWEEK(".concat(validColumnName, ", monday\"))");
538
+ return {
539
+ name: sqlColumnName,
540
+ key: sqlColumnName
541
+ };
542
+ }
543
+ if (validDateGranularity === 'MONTH') {
544
+ const sqlColumnName = "ISOMONTH(".concat(validColumnName, ")");
545
+ return {
546
+ name: sqlColumnName,
547
+ key: sqlColumnName
548
+ };
549
+ }
550
+ if (validDateGranularity === 'QUARTER') {
551
+ const sqlColumnName = "CONCATENATE(year(".concat(validColumnName, "), \"-Q\", quarter(").concat(validColumnName, "))");
552
+ return {
553
+ name: sqlColumnName,
554
+ key: sqlColumnName
555
+ };
556
+ }
557
+ if (validDateGranularity === 'YEAR') {
558
+ const sqlColumnName = "YEAR(".concat(validColumnName, ")");
559
+ return {
560
+ name: sqlColumnName,
561
+ key: sqlColumnName
562
+ };
563
+ }
564
+ if (validDateGranularity === 'MAX' || validDateGranularity === 'MIN') {
565
+ const sqlColumnName = "".concat(validDateGranularity, "(").concat(validColumnName, ")");
566
+ return {
567
+ name: sqlColumnName,
568
+ key: sqlColumnName
569
+ };
570
+ }
571
+ const sqlColumnName = "ISOMONTH(".concat(validColumnName, ")");
572
+ return {
573
+ name: sqlColumnName,
574
+ key: sqlColumnName
575
+ };
576
+ }
577
+ case _dtableUtils.CellType.GEOLOCATION:
578
+ {
579
+ let sqlColumnName;
580
+ if (geolocationGranularity === 'province') {
581
+ sqlColumnName = "PROVINCE(".concat(validColumnName, ")");
582
+ }
583
+ if (geolocationGranularity === 'city') {
584
+ sqlColumnName = "CITY(".concat(validColumnName, ")");
585
+ }
586
+ if (geolocationGranularity === 'district') {
587
+ sqlColumnName = "DISTRICT(".concat(validColumnName, ")");
588
+ }
589
+ return {
590
+ name: sqlColumnName,
591
+ key: sqlColumnName
592
+ };
593
+ }
594
+ default:
595
+ {
596
+ return {
597
+ name: validColumnName,
598
+ key
599
+ };
600
+ }
601
+ }
602
+ }
603
+ summaryMethodColumn2SqlColumn(summaryMethod, column, useSingleQuote) {
604
+ const columnName = column.name;
605
+ const isUseSingleQuote = useSingleQuote ? false : true;
606
+ return {
607
+ name: (0, _commonUtils.getSummaryColumnMethod)(_constants.DTABLE_DB_SUMMARY_METHOD[summaryMethod], columnName, isUseSingleQuote),
608
+ key: (0, _commonUtils.getSummaryColumnMethod)(_constants.DTABLE_DB_SUMMARY_METHOD[summaryMethod], columnName)
609
+ };
610
+ }
611
+ getOriginalLabel(groupColumn, groupName, statRow, groupby_date_granularity, groupby_geolocation_granularity) {
612
+ const isTimeColumn = _constants.TIME_COLUMN_LIST.includes(groupColumn.type);
613
+ if (isTimeColumn || groupColumn.type === _dtableUtils.CellType.GEOLOCATION) {
614
+ return statRow[groupName];
615
+ }
616
+ const currentGroupLabel = statRow[groupColumn.key];
617
+ return _statUtils.default.getGroupLabel(currentGroupLabel, statRow, groupColumn, groupby_date_granularity, groupby_geolocation_granularity, this.value);
618
+ }
619
+ getOriginalName(groupColumn, originalLabel) {
620
+ const isTimeColumn = _constants.TIME_COLUMN_LIST.includes(groupColumn.type);
621
+ if (isTimeColumn || groupColumn.type === _dtableUtils.CellType.GEOLOCATION) {
622
+ return originalLabel;
623
+ }
624
+ let {
625
+ type: columnType
626
+ } = groupColumn;
627
+ if (columnType === _dtableUtils.CellType.MULTIPLE_SELECT || columnType === _dtableUtils.CellType.COLLABORATOR) {
628
+ return Array.isArray(originalLabel) ? originalLabel[0] : null;
629
+ }
630
+ return originalLabel;
631
+ }
632
+ getLabel(groupColumn, originalLabel) {
633
+ const isTimeColumn = _constants.TIME_COLUMN_LIST.includes(groupColumn.type);
634
+ if (isTimeColumn || groupColumn.type === _dtableUtils.CellType.GEOLOCATION) {
635
+ return originalLabel;
636
+ }
637
+ return (0, _rowUtils.getFormattedLabel)(groupColumn, originalLabel, this.value.collaborators);
638
+ }
639
+ initTotal(summaryMethod) {
640
+ if (summaryMethod === 'SUM' || summaryMethod === 'DISTINCT_VALUES') return 0;
641
+ return null;
642
+ }
643
+ getSummaryValue(_ref, currentValue, nextValue) {
644
+ let {
645
+ summaryMethod,
646
+ summaryColumn
647
+ } = _ref;
648
+ if (summaryColumn && (0, _dtableUtils.isDateColumn)(summaryColumn)) {
649
+ if (summaryMethod === _constants.SUMMARY_METHOD_MAP.Max) {
650
+ if (currentValue && nextValue) {
651
+ return (0, _dayjs.default)(currentValue).isBefore(nextValue) ? nextValue : currentValue;
652
+ }
653
+ if (!currentValue && nextValue) {
654
+ return nextValue;
655
+ }
656
+ return currentValue;
657
+ }
658
+ if (summaryMethod === _constants.SUMMARY_METHOD_MAP.Min) {
659
+ if (currentValue && nextValue) {
660
+ return (0, _dayjs.default)(currentValue).isBefore(nextValue) ? currentValue : nextValue;
661
+ }
662
+ if (!currentValue && nextValue) {
663
+ return nextValue;
664
+ }
665
+ return currentValue;
666
+ }
667
+ if (summaryMethod === _constants.SUMMARY_METHOD_MAP.Distinct_values) {
668
+ return (currentValue - 0 || 0) + (nextValue - 0 || 0);
669
+ }
670
+ return currentValue;
671
+ }
672
+ if (summaryMethod === _constants.SUMMARY_METHOD_MAP.Max || _constants.SUMMARY_METHOD_MAP.Min) {
673
+ if (currentValue === null && nextValue === null) return null;
674
+ if (currentValue === null) return nextValue;
675
+ if (nextValue === null) return currentValue;
676
+ }
677
+ return (currentValue - 0 || 0) + (nextValue - 0 || 0);
678
+ }
679
+ isValidCellValue(cellValue, includeEmpty) {
680
+ if (includeEmpty) return true;
681
+ return cellValue || cellValue === 0;
682
+ }
683
+ updateTwoDimensionColumns(pivot_columns, key, original_key, _ref2) {
684
+ let {
685
+ isIncludeEmpty,
686
+ isCellValueAsAnArray
687
+ } = _ref2;
688
+ if (isCellValueAsAnArray && Array.isArray(key)) {
689
+ if (key.length === 0 && isIncludeEmpty) {
690
+ const pivotColumnIndex = pivot_columns.findIndex(r => !r.key);
691
+ if (pivotColumnIndex < 0) {
692
+ pivot_columns.unshift({
693
+ key: null,
694
+ original_key: null
695
+ });
696
+ }
697
+ return;
698
+ }
699
+ key.forEach(k => {
700
+ const pivotColumnIndex = pivot_columns.findIndex(r => r.key === k);
701
+ if (pivotColumnIndex < 0) {
702
+ pivot_columns.push({
703
+ key: k,
704
+ original_key: k
705
+ });
706
+ }
707
+ });
708
+ return;
709
+ }
710
+ const pivotColumnIndex = pivot_columns.findIndex(r => {
711
+ let resKey = r.key;
712
+ return resKey === null && key === null || resKey === undefined && key === undefined || resKey === 0 && key === 0 || resKey === key;
713
+ });
714
+ if (pivotColumnIndex < 0) {
715
+ pivot_columns.push({
716
+ key,
717
+ original_key
718
+ });
719
+ }
720
+ }
721
+ updateTwoDimensionRows(pivot_rows, pivot_columns, index, name, original_name, count, row, isColumnDataAsAnArray, cellValue, _ref3) {
722
+ let {
723
+ summaryMethod,
724
+ summaryColumn
725
+ } = _ref3;
726
+ if (index > -1) {
727
+ let updatedPivotRow = pivot_rows[index];
728
+ let {
729
+ cells,
730
+ total
731
+ } = updatedPivotRow;
732
+ pivot_columns.forEach(c => {
733
+ let {
734
+ key
735
+ } = c;
736
+ if (this.isSameGroup(isColumnDataAsAnArray, cellValue, key)) {
737
+ if (cells[key]) {
738
+ cells[key].rows.push(row);
739
+ cells[key].total = this.getSummaryValue({
740
+ summaryMethod,
741
+ summaryColumn
742
+ }, cells[key].total, count);
743
+ } else {
744
+ cells[key] = {
745
+ rows: [row],
746
+ total: count
747
+ };
748
+ }
749
+ }
750
+ });
751
+ updatedPivotRow.cells = cells;
752
+ updatedPivotRow.total = this.getSummaryValue({
753
+ summaryMethod,
754
+ summaryColumn
755
+ }, total, count);
756
+ pivot_rows[index] = updatedPivotRow;
757
+ } else {
758
+ let cells = {};
759
+ let total = 0;
760
+ pivot_columns.forEach(c => {
761
+ let {
762
+ key
763
+ } = c;
764
+ if (this.isSameGroup(isColumnDataAsAnArray, cellValue, key)) {
765
+ cells[key] = {
766
+ rows: [row],
767
+ total: count
768
+ };
769
+ total = this.getSummaryValue({
770
+ summaryMethod,
771
+ summaryColumn
772
+ }, total, count);
773
+ }
774
+ });
775
+ pivot_rows.push({
776
+ name,
777
+ cells,
778
+ total,
779
+ original_name
780
+ });
781
+ }
782
+ }
783
+ isSameGroup(isColumnDataAsAnArray, source, target) {
784
+ if (isColumnDataAsAnArray) {
785
+ return source.length === 0 && !target || source.includes(target);
786
+ }
787
+ return source === null && target === null || source === undefined && target === undefined || source === target;
788
+ }
789
+ getAndUpdateTwoDimensionTotal(pivot_columns_total, pivot_columns, pivot_rows, _ref4) {
790
+ let {
791
+ summaryMethod,
792
+ summaryColumn
793
+ } = _ref4;
794
+ let pivot_table_total = this.initTotal(summaryMethod);
795
+ pivot_rows.forEach(row => {
796
+ const {
797
+ cells,
798
+ total
799
+ } = row;
800
+ pivot_table_total = this.getSummaryValue({
801
+ summaryMethod,
802
+ summaryColumn
803
+ }, pivot_table_total, total);
804
+ pivot_columns.forEach(column => {
805
+ const {
806
+ key
807
+ } = column;
808
+ const cell = cells[key];
809
+ if (cell) {
810
+ let pivot_column_total = pivot_columns_total && pivot_columns_total[key] ? pivot_columns_total[key] : 0;
811
+ pivot_columns_total[key] = this.getSummaryValue({
812
+ summaryMethod,
813
+ summaryColumn
814
+ }, pivot_column_total, cell.total);
815
+ }
816
+ });
817
+ });
818
+ return pivot_table_total;
819
+ }
820
+ }
821
+ var _default = exports.default = PivotTableCalculator;