echarts.js 16.5 KB
Newer Older
L
lang 已提交
1
/**
L
lang 已提交
2
 * TODO setTheme
3
 *      axis position 统一处理
L
lang 已提交
4
 *      规范 Symbol 配置和绘制, customPath
L
lang 已提交
5 6
 *
 *      每次 update 只刷新 model 变化的那些 component(需要做依赖收集)
L
lang 已提交
7
 */
L
lang 已提交
8 9
define(function (require) {

L
lang 已提交
10
    var GlobalModel = require('./model/Global');
L
lang 已提交
11
    var ExtensionAPI = require('./ExtensionAPI');
L
lang 已提交
12
    var CoordinateSystemManager = require('./CoordinateSystem');
L
lang 已提交
13

L
Update  
lang 已提交
14 15 16 17 18 19
    var ComponentModel = require('./model/Component');
    var SeriesModel = require('./model/Series');

    var ComponentView = require('./view/Component');
    var ChartView = require('./view/Chart');

L
lang 已提交
20
    var zrender = require('zrender');
L
lang 已提交
21
    var zrUtil = require('zrender/core/util');
L
lang 已提交
22

23 24
    var VISUAL_CODING_STAGES = ['echarts', 'chart', 'component'];

L
lang 已提交
25 26
    var PROCESSOR_STAGES = ['transform', 'filter', 'statistic'];

L
lang 已提交
27 28 29
    /**
     * @module echarts~ECharts
     */
L
lang 已提交
30 31
    var ECharts = function (dom, theme, opts) {
        opts = opts || {};
L
lang 已提交
32

L
lang 已提交
33 34 35 36 37
        /**
         * @type {HTMLDomElement}
         * @private
         */
        this._dom = dom;
L
lang 已提交
38 39 40 41
        /**
         * @type {module:zrender/ZRender}
         * @private
         */
L
lang 已提交
42 43 44
        this._zr = zrender.init(dom, {
            renderer: opts.renderer || 'canvas'
        });
L
lang 已提交
45

L
lang 已提交
46 47 48 49
        /**
         * @type {Object}
         * @private
         */
L
lang 已提交
50
        this._theme = zrUtil.clone(theme);
L
lang 已提交
51

L
lang 已提交
52 53 54 55
        /**
         * @type {Array.<module:echarts/view/Chart>}
         * @private
         */
L
lang 已提交
56
        this._chartsList = [];
L
lang 已提交
57 58 59 60 61

        /**
         * @type {Object.<string, module:echarts/view/Chart>}
         * @private
         */
L
lang 已提交
62 63
        this._chartsMap = {};

L
lang 已提交
64 65 66 67
        /**
         * @type {Array.<module:echarts/view/Component>}
         * @private
         */
L
lang 已提交
68
        this._componentsList = [];
L
lang 已提交
69 70 71 72 73

        /**
         * @type {Object.<string, module:echarts/view/Component>}
         * @private
         */
L
lang 已提交
74 75
        this._componentsMap = {};

L
lang 已提交
76
        /**
L
lang 已提交
77
         * @type {module:echarts/ExtensionAPI}
L
lang 已提交
78 79
         * @private
         */
L
lang 已提交
80
        this._extensionAPI = new ExtensionAPI(this);
L
lang 已提交
81

L
lang 已提交
82 83 84 85
        /**
         * @type {module:echarts/CoordinateSystem}
         * @private
         */
L
lang 已提交
86
        this._coordinateSystem = new CoordinateSystemManager();
L
lang 已提交
87

L
lang 已提交
88 89 90 91 92
        /**
         * Layout instances
         * @type {Array}
         * @private
         */
L
lang 已提交
93 94 95
        this._layouts = zrUtil.map(layoutClasses, function (Layout) {
            return new Layout();
        });
L
lang 已提交
96 97 98 99 100 101 102 103 104 105 106 107

        /**
         * @type {boolean}
         * @private
         */
        this._needsUpdate = false;

        this._zr.animation.on('frame', function () {
            if (this._needsUpdate) {
                this.updateImmediately();
            }
        }, this);
L
lang 已提交
108 109 110 111
    };

    ECharts.prototype = {

L
lang 已提交
112 113 114 115
        getDom: function () {
            return this._dom;
        },

L
lang 已提交
116 117 118 119
        getZr: function () {
            return this._zr;
        },

L
lang 已提交
120
        setOption: function (option, notMerge) {
L
lang 已提交
121
            // PENDING
L
lang 已提交
122
            option = zrUtil.clone(option, true);
L
lang 已提交
123

L
lang 已提交
124
            var ecModel = this._model;
L
lang 已提交
125
            if (!ecModel || notMerge) {
P
pah100 已提交
126 127 128
                ecModel = new GlobalModel(
                    option, null, this._theme, this._extensionAPI
                );
L
lang 已提交
129 130 131
                this._model = ecModel;
            }
            else {
P
pah100 已提交
132
                ecModel.restoreData();
L
lang 已提交
133 134
                ecModel.mergeOption(option);
            }
L
lang 已提交
135

L
lang 已提交
136
            this._prepareComponents(ecModel);
L
lang 已提交
137

L
lang 已提交
138
            this._prepareCharts(ecModel);
L
lang 已提交
139 140

            this.updateImmediately();
L
lang 已提交
141 142
        },

L
lang 已提交
143 144 145 146 147 148 149
        setTheme: function (theme) {

        },

        /**
         * @return {number}
         */
L
lang 已提交
150 151 152
        getWidth: function () {
            return this._zr.getWidth();
        },
L
lang 已提交
153

L
lang 已提交
154 155 156
        /**
         * @return {number}
         */
L
lang 已提交
157 158 159 160 161
        getHeight: function () {
            return this._zr.getHeight();
        },

        update: function () {
L
lang 已提交
162
            this._needsUpdate = true;
L
lang 已提交
163 164
        },

P
pah100 已提交
165
        updateImmediately: function (event) {
L
lang 已提交
166
            console.time('update');
167

L
lang 已提交
168 169
            var ecModel = this._model;

P
pah100 已提交
170
            ecModel.restoreData();
L
lang 已提交
171

P
pah100 已提交
172 173 174 175
            // TODO
            // Save total ecModel here for undo/redo (after restoring data and before processing data).
            // Undo (restoration of total ecModel) can be carried out in 'action' or outside API call.

L
lang 已提交
176
            this._processData(ecModel);
L
lang 已提交
177

L
lang 已提交
178 179
            this._stackSeriesData(ecModel);

L
lang 已提交
180
            this._coordinateSystem.update(ecModel, this._extensionAPI);
L
lang 已提交
181

P
pah100 已提交
182
            this._doLayout(ecModel, event);
L
lang 已提交
183

184 185
            this._doVisualCoding(ecModel);

P
pah100 已提交
186
            this._doRender(ecModel, event);
L
lang 已提交
187 188

            this._needsUpdate = false;
189

L
lang 已提交
190
            console.timeEnd('update');
L
lang 已提交
191 192
        },

L
lang 已提交
193
        resize: function () {
L
lang 已提交
194
            // var ecModel = this._model;
L
lang 已提交
195

L
lang 已提交
196
            // this._coordinateSystem.resize(ecModel, this._extensionAPI);
L
lang 已提交
197

L
lang 已提交
198
            // this._doVisualCoding(ecModel);
L
lang 已提交
199

L
lang 已提交
200 201 202 203 204
            // this._doLayout(ecModel);

            // this._doRender(ecModel);

            this.updateImmediately();
L
lang 已提交
205 206
        },

P
pah100 已提交
207 208 209 210 211 212 213 214 215 216 217 218 219 220
        /**
         * @pubilc
         * @param {Object} event
         * @param {string} [event.type] Event type
         * @param {number} [event.from] From uid
         */
        dispatch: function (event) {
            var action = actions[event.type];
            if (action) {
                action(event, this._model);
                this.updateImmediately(event);
            }
        },

L
lang 已提交
221
        _prepareCharts: function (ecModel) {
L
lang 已提交
222

L
lang 已提交
223 224
            var chartsList = this._chartsList;
            var chartsMap = this._chartsMap;
L
lang 已提交
225
            var zr = this._zr;
L
lang 已提交
226 227 228 229 230 231

            for (var i = 0; i < chartsList.length; i++) {
                chartsList[i].__keepAlive = false;
            }

            ecModel.eachSeries(function (seriesModel, idx) {
P
pah100 已提交
232
                var id = seriesModel.uid;
L
lang 已提交
233 234

                var chart = chartsMap[id];
235 236
                if (!chart) {
                    var Clazz = ChartView.getClass(
237 238
                        ComponentModel.parseComponentType(seriesModel.type).sub
                    );
239 240
                    if (Clazz) {
                        chart = new Clazz();
L
lang 已提交
241
                        chart.init(ecModel, this._extensionAPI);
L
lang 已提交
242 243
                        chartsMap[id] = chart;
                        chartsList.push(chart);
L
lang 已提交
244
                        zr.add(chart.group);
L
lang 已提交
245 246 247 248 249 250
                    }
                    else {
                        // Error
                    }
                }

L
lang 已提交
251 252
                chart.__keepAlive = true;
                chart.__id = id;
L
lang 已提交
253 254
            }, this);

L
lang 已提交
255 256
            for (var i = 0; i < chartsList.length;) {
                var chart = chartsList[i];
L
lang 已提交
257
                if (!chart.__keepAlive) {
L
lang 已提交
258
                    zr.remove(chart.group);
L
lang 已提交
259
                    chart.dispose(this._extensionAPI);
L
lang 已提交
260 261
                    chartsList.splice(i, 1);
                    delete chartsMap[chart.__id];
L
lang 已提交
262 263 264 265
                }
                else {
                    i++;
                }
266
            }
L
lang 已提交
267 268
        },

L
lang 已提交
269
        _prepareComponents: function (ecModel) {
L
lang 已提交
270 271 272 273 274 275 276 277

            var componentsMap = this._componentsMap;
            var componentsList = this._componentsList;

            for (var i = 0; i < componentsList.length; i++) {
                componentsList[i].__keepAlive = true;
            }

P
pah100 已提交
278
            ecModel.eachComponent(function (componentType, componentModel) {
279 280 281 282
                if (componentType === 'series') {
                    return;
                }

P
pah100 已提交
283
                var id = componentModel.uid;
284 285 286
                var component = componentsMap[id];
                if (!component) {
                    // Create and add component
P
pah100 已提交
287 288 289
                    var Clazz = ComponentView.getClass(
                        componentType, componentModel.option.type
                    );
L
lang 已提交
290

291 292
                    if (Clazz) {
                        component = new Clazz();
L
lang 已提交
293
                        component.init(ecModel, this._extensionAPI);
L
lang 已提交
294
                        componentsMap[id] = component;
L
lang 已提交
295
                        componentsList.push(component);
L
lang 已提交
296 297

                        this._zr.add(component.group);
L
lang 已提交
298
                    }
299 300 301 302 303
                }
                component.__id = id;
                component.__keepAlive = true;
                // Used in rendering
                component.__model = componentModel;
L
lang 已提交
304 305 306 307 308 309
            }, this);

            for (var i = 0; i < componentsList.length;) {
                var component = componentsList[i];
                if (! component.__keepAlive) {
                    this._zr.remove(component.group);
L
lang 已提交
310
                    component.dispose(this._extensionAPI);
L
lang 已提交
311 312
                    componentsList.splice(i, 1);
                    delete componentsMap[component.__id];
L
lang 已提交
313 314
                }
                else {
L
lang 已提交
315
                    i++;
L
lang 已提交
316
                }
317
            }
L
lang 已提交
318 319
        },

L
lang 已提交
320 321 322 323 324 325
        /**
         * Processor data in each series
         *
         * @param {module:echarts/model/Global} ecModel
         * @private
         */
L
lang 已提交
326
        _processData: function (ecModel) {
L
lang 已提交
327 328 329 330
            zrUtil.each(PROCESSOR_STAGES, function (stage) {
                zrUtil.each(dataProcessorFuncs[stage] || [], function (process) {
                    process(ecModel);
                });
L
lang 已提交
331
            });
L
lang 已提交
332 333
        },

L
lang 已提交
334 335 336 337 338 339 340 341
        /**
         * @private
         */
        _stackSeriesData: function (ecModel) {
            var stackedDataMap = {};
            ecModel.eachSeries(function (series) {
                var stack = series.get('stack');
                var data = series.getData();
L
lang 已提交
342
                if (stack && data.type === 'list') {
L
lang 已提交
343 344
                    var previousStack = stackedDataMap[stack];
                    if (previousStack) {
L
lang 已提交
345
                        data.stackedOn = previousStack;
L
lang 已提交
346 347 348 349 350 351
                    }
                    stackedDataMap[stack] = data;
                }
            });
        },

L
lang 已提交
352 353 354 355 356 357
        /**
         * Layout before each chart render there series after visual coding and data processing
         *
         * @param {module:echarts/model/Global} ecModel
         * @private
         */
P
pah100 已提交
358
        _doLayout: function (ecModel, event) {
L
Add pie  
lang 已提交
359
            var api = this._extensionAPI;
L
lang 已提交
360
            zrUtil.each(this._layouts, function (layout) {
L
Add pie  
lang 已提交
361
                layout.update(ecModel, api, event);
362 363
            });
            zrUtil.each(layoutFuncs, function (layout) {
L
Add pie  
lang 已提交
364
                layout(ecModel, api, event);
L
lang 已提交
365 366 367 368 369 370 371 372 373 374
            });
        },

        /**
         * Code visual infomation from data after data processing
         *
         * @param {module:echarts/model/Global} ecModel
         * @private
         */
        _doVisualCoding: function (ecModel) {
375 376 377 378
            zrUtil.each(VISUAL_CODING_STAGES, function (stage) {
                zrUtil.each(visualCodingFuncs[stage] || [], function (visualCoding) {
                    visualCoding(ecModel);
                });
L
lang 已提交
379 380 381 382 383 384
            });
        },

        /**
         * Render each chart and component
         */
P
pah100 已提交
385
        _doRender: function (ecModel, event) {
L
lang 已提交
386
            var api = this._extensionAPI;
L
lang 已提交
387
            // Render all components
L
lang 已提交
388
            zrUtil.each(this._componentsList, function (component) {
L
lang 已提交
389 390 391 392 393 394 395
                var componentModel = component.__model;
                component.render(componentModel, ecModel, api, event);

                var z = componentModel.get('z');
                var zlevel = componentModel.get('zlevel');
                // Set z and zlevel
                component.group.traverse(function (el) {
L
lang 已提交
396 397
                    z != null && (el.z = z);
                    zlevel != null && (el.zlevel = zlevel);
L
lang 已提交
398
                });
L
lang 已提交
399
            }, this);
P
pah100 已提交
400

L
lang 已提交
401
            zrUtil.each(this._chartsList, function (chart) {
402
                chart.__keepAlive = false;
L
lang 已提交
403
            }, this);
P
pah100 已提交
404

L
lang 已提交
405
            // Render all charts
L
lang 已提交
406
            ecModel.eachSeries(function (seriesModel, idx) {
P
pah100 已提交
407
                var id = seriesModel.uid;
L
lang 已提交
408
                var chart = this._chartsMap[id];
409
                chart.__keepAlive = true;
P
pah100 已提交
410
                chart.render(seriesModel, ecModel, api, event);
L
lang 已提交
411 412 413 414 415

                var z = seriesModel.get('z');
                var zlevel = seriesModel.get('zlevel');
                // Set z and zlevel
                chart.group.traverse(function (el) {
L
lang 已提交
416 417
                    z != null && (el.z = z);
                    zlevel != null && (el.zlevel = zlevel);
L
lang 已提交
418
                });
L
lang 已提交
419
            }, this);
P
pah100 已提交
420

421 422 423 424 425 426
            // Remove groups of charts
            zrUtil.each(this._chartsList, function (chart) {
                if (!chart.__keepAlive) {
                    chart.remove();
                }
            }, this);
L
lang 已提交
427 428 429 430 431 432 433 434 435 436 437 438 439 440 441
        },

        dispose: function () {
            zrUtil.each(this._components, function (component) {
                component.dispose();
            });
            zrUtil.each(this._charts, function (chart) {
                chart.dispose();
            });

            this.zr.dispose();
        }
    };


L
lang 已提交
442 443 444 445
    /**
     * @type {Array.<Function>}
     * @inner
     */
P
pah100 已提交
446 447
    var actions = [];

L
lang 已提交
448 449 450 451
    /**
     * @type {Array.<Function>}
     * @inner
     */
L
lang 已提交
452 453
    var layoutClasses = [];

L
lang 已提交
454 455 456 457
    /**
     * @type {Array.<Function>}
     * @inner
     */
458 459
    var layoutFuncs = [];

L
lang 已提交
460 461 462 463 464 465 466 467 468 469 470 471
    /**
     * Data processor functions of each stage
     * @type {Array.<Object.<string, Function>>}
     * @inner
     */
    var dataProcessorFuncs = {};

    /**
     * Visual coding functions of each stage
     * @type {Array.<Object.<string, Function>>}
     * @inner
     */
472
    var visualCodingFuncs = {};
L
lang 已提交
473

L
lang 已提交
474 475 476 477 478
    /**
     * @module echarts
     */
    var echarts = {

L
lang 已提交
479 480 481 482 483
        /**
         * @param {HTMLDomElement} dom
         * @param {Object} [theme]
         * @param {Object} opts
         */
L
lang 已提交
484 485
        init: function (dom, theme, opts) {
            return new ECharts(dom, theme, opts);
L
lang 已提交
486 487
        },

L
lang 已提交
488
        /**
L
lang 已提交
489 490
         * @param {string} stage
         * @param {Function} processorFunc
L
lang 已提交
491
         */
L
lang 已提交
492 493 494
        registerProcessor: function (stage, processorFunc) {
            if (zrUtil.indexOf(PROCESSOR_STAGES, stage) < 0) {
                throw new Error('stage should be one of ' + PROCESSOR_STAGES);
L
lang 已提交
495
            }
L
lang 已提交
496 497
            var funcs = dataProcessorFuncs[stage] || (dataProcessorFuncs[stage] = []);
            funcs.push(processorFunc);
L
lang 已提交
498 499
        },

P
pah100 已提交
500
        /**
501 502 503 504 505 506 507
         * Usage:
         * registerAction('someAction', 'someEvent', function () { ... });
         * registerAction('someAction', function () { ... });
         *
         * @param {string} actionName
         * @param {string=} eventName Can be ignored
         * @param {Function=} action
P
pah100 已提交
508
         */
509 510 511 512 513
        registerAction: function (actionName, eventName, action) {
            if (typeof eventName === 'function') {
                action = eventName;
                eventName = null;
            }
P
pah100 已提交
514 515 516
            if (!actions[actionName]) {
                actions[actionName] = action;
            }
517 518
            // TODO
            // event
P
pah100 已提交
519 520
        },

L
lang 已提交
521 522 523 524
        /**
         * @param {string} type
         * @param {*} CoordinateSystem
         */
L
lang 已提交
525
        registerCoordinateSystem: function (type, CoordinateSystem) {
L
lang 已提交
526 527 528
            CoordinateSystemManager.register(type, CoordinateSystem);
        },

L
lang 已提交
529 530 531
        /**
         * @param {*} layout
         */
532
        registerLayout: function (layout, isFactory) {
L
tweak  
lang 已提交
533
            // PENDING All functions ?
534 535 536 537 538 539 540 541 542
            if (isFactory) {
                if (zrUtil.indexOf(layoutClasses, layout) < 0) {
                    layoutClasses.push(layout);
                }
            }
            else {
                if (zrUtil.indexOf(layoutFuncs, layout) < 0) {
                    layoutFuncs.push(layout);
                }
L
lang 已提交
543 544 545
            }
        },

L
lang 已提交
546 547 548 549
        /**
         * @param {string} stage
         * @param {Function} visualCodingFunc
         */
550 551 552 553 554 555
        registerVisualCoding: function (stage, visualCodingFunc) {
            if (zrUtil.indexOf(VISUAL_CODING_STAGES, stage) < 0) {
                throw new Error('stage should be one of ' + VISUAL_CODING_STAGES);
            }
            var funcs = visualCodingFuncs[stage] || (visualCodingFuncs[stage] = []);
            funcs.push(visualCodingFunc);
L
Update  
lang 已提交
556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571
        },

        /**
         * @param {Object} opts
         */
        extendChartView: function (opts) {
            return ChartView.extend(opts);
        },

        /**
         * @param {Object} opts
         */
        extendComponentModel: function (opts) {
            return ComponentModel.extend(opts);
        },

P
pah100 已提交
572 573 574 575 576 577 578
        /**
         * @param {Object} opts
         */
        extendSeriesModel: function (opts) {
            return SeriesModel.extend(opts);
        },

L
Update  
lang 已提交
579 580 581 582 583
        /**
         * @param {Object} opts
         */
        extendComponentView: function (opts) {
            return ComponentView.extend(opts);
L
lang 已提交
584
        }
L
lang 已提交
585 586
    };

587
    echarts.registerVisualCoding('echarts', require('./visual/defaultColor'));
L
lang 已提交
588

L
lang 已提交
589 590
    return echarts;
});