Skip to content

Commit 73284ee

Browse files
committed
replaces merge with mergeWith for every chart
1 parent 33d4d5d commit 73284ee

File tree

1 file changed

+17
-19
lines changed
  • frontend/express/public/javascripts/countly/vue/components

1 file changed

+17
-19
lines changed

frontend/express/public/javascripts/countly/vue/components/vis.js

+17-19
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
/* global Vue, countlyCommon, countlyLocation, _merge, _mergeWith, CommonConstructor, countlyGlobal, Vue2Leaflet, CV, moment, L, countlyGraphNotesCommon */
2-
3-
// _merge is Lodash merge - /frontend/express/public/javascripts/utils/lodash.merge.js
1+
/* global Vue, countlyCommon, countlyLocation, _mergeWith, CommonConstructor, countlyGlobal, Vue2Leaflet, CV, moment, L, countlyGraphNotesCommon */
42
// _mergeWith is Lodash mergeWith - /frontend/express/public/javascripts/utils/lodash.mergeWith.js
53

64
(function(countlyVue) {
@@ -42,7 +40,7 @@
4240
},
4341
computed: {
4442
legendOptions: function() {
45-
var options = _merge({}, this.calculatedLegend, this.legend || {});
43+
var options = _mergeWith({}, this.calculatedLegend, this.legend || {});
4644

4745
delete options.data;
4846

@@ -314,7 +312,7 @@
314312
this.getGraphNotes(); // when chart updated (date change etc.)
315313
}
316314
}, 0);
317-
return _merge({}, this.internalUpdateOptions, this.updateOptions || {});
315+
return _mergeWith({}, this.internalUpdateOptions, this.updateOptions || {});
318316
}
319317
}
320318
};
@@ -391,7 +389,7 @@
391389
h: this.chartHeight
392390
});
393391
if (xAxisOverflowPatch) {
394-
opt = _merge(opt, xAxisOverflowPatch);
392+
opt = _mergeWith(opt, xAxisOverflowPatch);
395393
}
396394
return opt;
397395
},
@@ -796,7 +794,7 @@
796794
return false;
797795
}
798796
var isEmpty = true;
799-
var options = _merge({}, this.option);
797+
var options = _mergeWith({}, this.option);
800798

801799
if (options.series) {
802800
for (var i = 0; i < options.series.length; i++) {
@@ -930,7 +928,7 @@
930928
var opt = _mergeWith({}, this.baseOptions, this.mixinOptions, this.option, mergeWithCustomizer);
931929
var series = opt.series || [];
932930
for (var i = 0; i < series.length; i++) {
933-
series[i] = _merge({}, this.baseSeriesOptions, this.seriesOptions, series[i]);
931+
series[i] = _mergeWith({}, this.baseSeriesOptions, this.seriesOptions, series[i]);
934932
}
935933
this.setCalculatedLegendData(opt, series);
936934

@@ -1358,11 +1356,11 @@
13581356
},
13591357
computed: {
13601358
mergedOptions: function() {
1361-
var opt = _merge({}, this.baseOptions, this.mixinOptions, this.option);
1359+
var opt = _mergeWith({}, this.baseOptions, this.mixinOptions, this.option);
13621360
var series = opt.series || [];
13631361

13641362
for (var i = 0; i < series.length; i++) {
1365-
series[i] = _merge({}, this.baseSeriesOptions, this.seriesOptions, series[i]);
1363+
series[i] = _mergeWith({}, this.baseSeriesOptions, this.seriesOptions, series[i]);
13661364
}
13671365

13681366
this.setCalculatedLegendData(opt, series);
@@ -1455,7 +1453,7 @@
14551453
return true;
14561454
},
14571455
mergedOptions: function() {
1458-
var opt = _merge({}, this.baseOptions, this.mixinOptions, this.option);
1456+
var opt = _mergeWith({}, this.baseOptions, this.mixinOptions, this.option);
14591457
var series = opt.series || [];
14601458

14611459
var sumOfOthers;
@@ -1465,7 +1463,7 @@
14651463
seriesArr = [];
14661464
sumOfOthers = 0;
14671465

1468-
series[i] = _merge({}, this.baseSeriesOptions, this.seriesOptions, series[i]);
1466+
series[i] = _mergeWith({}, this.baseSeriesOptions, this.seriesOptions, series[i]);
14691467

14701468
series[i].data = series[i].data.filter(function(el) {
14711469
return el.value > 0;
@@ -2203,7 +2201,7 @@
22032201
},
22042202
computed: {
22052203
chartOptions: function() {
2206-
var opt = _merge({}, this.baseOptions, this.option);
2204+
var opt = _mergeWith({}, this.baseOptions, this.option);
22072205
opt = this.patchChart(opt);
22082206
return opt;
22092207
}
@@ -2268,7 +2266,7 @@
22682266
},
22692267
computed: {
22702268
chartOptions: function() {
2271-
var ops = _merge({}, this.baseOptions, this.option);
2269+
var ops = _mergeWith({}, this.baseOptions, this.option);
22722270
delete ops.grid;
22732271
delete ops.xAxis;
22742272
delete ops.yAxis; //remove not needed to don;t get grey line at bottom
@@ -2335,7 +2333,7 @@
23352333
delete this.mergedOptions.series[index].markPoint;
23362334
}
23372335
}
2338-
var opt = _merge({}, this.mergedOptions);
2336+
var opt = _mergeWith({}, this.mergedOptions);
23392337

23402338
opt = this.patchChart(opt);
23412339
opt = this.patchOptionsForXAxis(opt);
@@ -2438,7 +2436,7 @@
24382436
delete this.mergedOptions.series[index].markPoint;
24392437
}
24402438
}
2441-
var opt = _merge({}, this.mergedOptions);
2439+
var opt = _mergeWith({}, this.mergedOptions);
24422440

24432441
var xAxisData = [];
24442442
if (!opt.xAxis.data) {
@@ -2563,7 +2561,7 @@
25632561
},
25642562
computed: {
25652563
chartOptions: function() {
2566-
var opt = _merge({}, this.mergedOptions);
2564+
var opt = _mergeWith({}, this.mergedOptions);
25672565
opt = this.patchChart(opt);
25682566
opt = this.patchOptionsForXAxis(opt);
25692567
return opt;
@@ -2614,7 +2612,7 @@
26142612
},
26152613
computed: {
26162614
chartOptions: function() {
2617-
var opt = _merge({}, this.mergedOptions);
2615+
var opt = _mergeWith({}, this.mergedOptions);
26182616
opt = this.patchChart(opt);
26192617
return opt;
26202618
},
@@ -2633,7 +2631,7 @@
26332631
return classes;
26342632
},
26352633
pieLegendOptions: function() {
2636-
var opt = _merge({}, this.legendOptions);
2634+
var opt = _mergeWith({}, this.legendOptions);
26372635
opt.type = "secondary";
26382636

26392637
if (opt.position === "bottom") {

0 commit comments

Comments
 (0)