|
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 */ |
4 | 2 | // _mergeWith is Lodash mergeWith - /frontend/express/public/javascripts/utils/lodash.mergeWith.js
|
5 | 3 |
|
6 | 4 | (function(countlyVue) {
|
|
42 | 40 | },
|
43 | 41 | computed: {
|
44 | 42 | legendOptions: function() {
|
45 |
| - var options = _merge({}, this.calculatedLegend, this.legend || {}); |
| 43 | + var options = _mergeWith({}, this.calculatedLegend, this.legend || {}); |
46 | 44 |
|
47 | 45 | delete options.data;
|
48 | 46 |
|
|
314 | 312 | this.getGraphNotes(); // when chart updated (date change etc.)
|
315 | 313 | }
|
316 | 314 | }, 0);
|
317 |
| - return _merge({}, this.internalUpdateOptions, this.updateOptions || {}); |
| 315 | + return _mergeWith({}, this.internalUpdateOptions, this.updateOptions || {}); |
318 | 316 | }
|
319 | 317 | }
|
320 | 318 | };
|
|
391 | 389 | h: this.chartHeight
|
392 | 390 | });
|
393 | 391 | if (xAxisOverflowPatch) {
|
394 |
| - opt = _merge(opt, xAxisOverflowPatch); |
| 392 | + opt = _mergeWith(opt, xAxisOverflowPatch); |
395 | 393 | }
|
396 | 394 | return opt;
|
397 | 395 | },
|
|
796 | 794 | return false;
|
797 | 795 | }
|
798 | 796 | var isEmpty = true;
|
799 |
| - var options = _merge({}, this.option); |
| 797 | + var options = _mergeWith({}, this.option); |
800 | 798 |
|
801 | 799 | if (options.series) {
|
802 | 800 | for (var i = 0; i < options.series.length; i++) {
|
|
930 | 928 | var opt = _mergeWith({}, this.baseOptions, this.mixinOptions, this.option, mergeWithCustomizer);
|
931 | 929 | var series = opt.series || [];
|
932 | 930 | 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]); |
934 | 932 | }
|
935 | 933 | this.setCalculatedLegendData(opt, series);
|
936 | 934 |
|
|
1358 | 1356 | },
|
1359 | 1357 | computed: {
|
1360 | 1358 | mergedOptions: function() {
|
1361 |
| - var opt = _merge({}, this.baseOptions, this.mixinOptions, this.option); |
| 1359 | + var opt = _mergeWith({}, this.baseOptions, this.mixinOptions, this.option); |
1362 | 1360 | var series = opt.series || [];
|
1363 | 1361 |
|
1364 | 1362 | 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]); |
1366 | 1364 | }
|
1367 | 1365 |
|
1368 | 1366 | this.setCalculatedLegendData(opt, series);
|
|
1455 | 1453 | return true;
|
1456 | 1454 | },
|
1457 | 1455 | mergedOptions: function() {
|
1458 |
| - var opt = _merge({}, this.baseOptions, this.mixinOptions, this.option); |
| 1456 | + var opt = _mergeWith({}, this.baseOptions, this.mixinOptions, this.option); |
1459 | 1457 | var series = opt.series || [];
|
1460 | 1458 |
|
1461 | 1459 | var sumOfOthers;
|
|
1465 | 1463 | seriesArr = [];
|
1466 | 1464 | sumOfOthers = 0;
|
1467 | 1465 |
|
1468 |
| - series[i] = _merge({}, this.baseSeriesOptions, this.seriesOptions, series[i]); |
| 1466 | + series[i] = _mergeWith({}, this.baseSeriesOptions, this.seriesOptions, series[i]); |
1469 | 1467 |
|
1470 | 1468 | series[i].data = series[i].data.filter(function(el) {
|
1471 | 1469 | return el.value > 0;
|
|
2203 | 2201 | },
|
2204 | 2202 | computed: {
|
2205 | 2203 | chartOptions: function() {
|
2206 |
| - var opt = _merge({}, this.baseOptions, this.option); |
| 2204 | + var opt = _mergeWith({}, this.baseOptions, this.option); |
2207 | 2205 | opt = this.patchChart(opt);
|
2208 | 2206 | return opt;
|
2209 | 2207 | }
|
|
2268 | 2266 | },
|
2269 | 2267 | computed: {
|
2270 | 2268 | chartOptions: function() {
|
2271 |
| - var ops = _merge({}, this.baseOptions, this.option); |
| 2269 | + var ops = _mergeWith({}, this.baseOptions, this.option); |
2272 | 2270 | delete ops.grid;
|
2273 | 2271 | delete ops.xAxis;
|
2274 | 2272 | delete ops.yAxis; //remove not needed to don;t get grey line at bottom
|
|
2335 | 2333 | delete this.mergedOptions.series[index].markPoint;
|
2336 | 2334 | }
|
2337 | 2335 | }
|
2338 |
| - var opt = _merge({}, this.mergedOptions); |
| 2336 | + var opt = _mergeWith({}, this.mergedOptions); |
2339 | 2337 |
|
2340 | 2338 | opt = this.patchChart(opt);
|
2341 | 2339 | opt = this.patchOptionsForXAxis(opt);
|
|
2438 | 2436 | delete this.mergedOptions.series[index].markPoint;
|
2439 | 2437 | }
|
2440 | 2438 | }
|
2441 |
| - var opt = _merge({}, this.mergedOptions); |
| 2439 | + var opt = _mergeWith({}, this.mergedOptions); |
2442 | 2440 |
|
2443 | 2441 | var xAxisData = [];
|
2444 | 2442 | if (!opt.xAxis.data) {
|
|
2563 | 2561 | },
|
2564 | 2562 | computed: {
|
2565 | 2563 | chartOptions: function() {
|
2566 |
| - var opt = _merge({}, this.mergedOptions); |
| 2564 | + var opt = _mergeWith({}, this.mergedOptions); |
2567 | 2565 | opt = this.patchChart(opt);
|
2568 | 2566 | opt = this.patchOptionsForXAxis(opt);
|
2569 | 2567 | return opt;
|
|
2614 | 2612 | },
|
2615 | 2613 | computed: {
|
2616 | 2614 | chartOptions: function() {
|
2617 |
| - var opt = _merge({}, this.mergedOptions); |
| 2615 | + var opt = _mergeWith({}, this.mergedOptions); |
2618 | 2616 | opt = this.patchChart(opt);
|
2619 | 2617 | return opt;
|
2620 | 2618 | },
|
|
2633 | 2631 | return classes;
|
2634 | 2632 | },
|
2635 | 2633 | pieLegendOptions: function() {
|
2636 |
| - var opt = _merge({}, this.legendOptions); |
| 2634 | + var opt = _mergeWith({}, this.legendOptions); |
2637 | 2635 | opt.type = "secondary";
|
2638 | 2636 |
|
2639 | 2637 | if (opt.position === "bottom") {
|
|
0 commit comments