| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223 |
- var echarts = require("../../echarts");
- var zrUtil = require("zrender/lib/core/util");
- var textContain = require("zrender/lib/contain/text");
- var featureManager = require("./featureManager");
- var graphic = require("../../util/graphic");
- var Model = require("../../model/Model");
- var DataDiffer = require("../../data/DataDiffer");
- var listComponentHelper = require("../helper/listComponent");
- var _default = echarts.extendComponentView({
- type: 'toolbox',
- render: function (toolboxModel, ecModel, api, payload) {
- var group = this.group;
- group.removeAll();
- if (!toolboxModel.get('show')) {
- return;
- }
- var itemSize = +toolboxModel.get('itemSize');
- var featureOpts = toolboxModel.get('feature') || {};
- var features = this._features || (this._features = {});
- var featureNames = [];
- zrUtil.each(featureOpts, function (opt, name) {
- featureNames.push(name);
- });
- new DataDiffer(this._featureNames || [], featureNames).add(processFeature).update(processFeature).remove(zrUtil.curry(processFeature, null)).execute(); // Keep for diff.
- this._featureNames = featureNames;
- function processFeature(newIndex, oldIndex) {
- var featureName = featureNames[newIndex];
- var oldName = featureNames[oldIndex];
- var featureOpt = featureOpts[featureName];
- var featureModel = new Model(featureOpt, toolboxModel, toolboxModel.ecModel);
- var feature;
- if (featureName && !oldName) {
- // Create
- if (isUserFeatureName(featureName)) {
- feature = {
- model: featureModel,
- onclick: featureModel.option.onclick,
- featureName: featureName
- };
- } else {
- var Feature = featureManager.get(featureName);
- if (!Feature) {
- return;
- }
- feature = new Feature(featureModel, ecModel, api);
- }
- features[featureName] = feature;
- } else {
- feature = features[oldName]; // If feature does not exsit.
- if (!feature) {
- return;
- }
- feature.model = featureModel;
- feature.ecModel = ecModel;
- feature.api = api;
- }
- if (!featureName && oldName) {
- feature.dispose && feature.dispose(ecModel, api);
- return;
- }
- if (!featureModel.get('show') || feature.unusable) {
- feature.remove && feature.remove(ecModel, api);
- return;
- }
- createIconPaths(featureModel, feature, featureName);
- featureModel.setIconStatus = function (iconName, status) {
- var option = this.option;
- var iconPaths = this.iconPaths;
- option.iconStatus = option.iconStatus || {};
- option.iconStatus[iconName] = status; // FIXME
- iconPaths[iconName] && iconPaths[iconName].trigger(status);
- };
- if (feature.render) {
- feature.render(featureModel, ecModel, api, payload);
- }
- }
- function createIconPaths(featureModel, feature, featureName) {
- var iconStyleModel = featureModel.getModel('iconStyle'); // If one feature has mutiple icon. they are orginaized as
- // {
- // icon: {
- // foo: '',
- // bar: ''
- // },
- // title: {
- // foo: '',
- // bar: ''
- // }
- // }
- var icons = feature.getIcons ? feature.getIcons() : featureModel.get('icon');
- var titles = featureModel.get('title') || {};
- if (typeof icons === 'string') {
- var icon = icons;
- var title = titles;
- icons = {};
- titles = {};
- icons[featureName] = icon;
- titles[featureName] = title;
- }
- var iconPaths = featureModel.iconPaths = {};
- zrUtil.each(icons, function (iconStr, iconName) {
- var path = graphic.createIcon(iconStr, {}, {
- x: -itemSize / 2,
- y: -itemSize / 2,
- width: itemSize,
- height: itemSize
- });
- path.setStyle(iconStyleModel.getModel('normal').getItemStyle());
- path.hoverStyle = iconStyleModel.getModel('emphasis').getItemStyle();
- graphic.setHoverStyle(path);
- if (toolboxModel.get('showTitle')) {
- path.__title = titles[iconName];
- path.on('mouseover', function () {
- // Should not reuse above hoverStyle, which might be modified.
- var hoverStyle = iconStyleModel.getModel('emphasis').getItemStyle();
- path.setStyle({
- text: titles[iconName],
- textPosition: hoverStyle.textPosition || 'bottom',
- textFill: hoverStyle.fill || hoverStyle.stroke || '#000',
- textAlign: hoverStyle.textAlign || 'center'
- });
- }).on('mouseout', function () {
- path.setStyle({
- textFill: null
- });
- });
- }
- path.trigger(featureModel.get('iconStatus.' + iconName) || 'normal');
- group.add(path);
- path.on('click', zrUtil.bind(feature.onclick, feature, ecModel, api, iconName));
- iconPaths[iconName] = path;
- });
- }
- listComponentHelper.layout(group, toolboxModel, api); // Render background after group is layout
- // FIXME
- group.add(listComponentHelper.makeBackground(group.getBoundingRect(), toolboxModel)); // Adjust icon title positions to avoid them out of screen
- group.eachChild(function (icon) {
- var titleText = icon.__title;
- var hoverStyle = icon.hoverStyle; // May be background element
- if (hoverStyle && titleText) {
- var rect = textContain.getBoundingRect(titleText, textContain.makeFont(hoverStyle));
- var offsetX = icon.position[0] + group.position[0];
- var offsetY = icon.position[1] + group.position[1] + itemSize;
- var needPutOnTop = false;
- if (offsetY + rect.height > api.getHeight()) {
- hoverStyle.textPosition = 'top';
- needPutOnTop = true;
- }
- var topOffset = needPutOnTop ? -5 - rect.height : itemSize + 8;
- if (offsetX + rect.width / 2 > api.getWidth()) {
- hoverStyle.textPosition = ['100%', topOffset];
- hoverStyle.textAlign = 'right';
- } else if (offsetX - rect.width / 2 < 0) {
- hoverStyle.textPosition = [0, topOffset];
- hoverStyle.textAlign = 'left';
- }
- }
- });
- },
- updateView: function (toolboxModel, ecModel, api, payload) {
- zrUtil.each(this._features, function (feature) {
- feature.updateView && feature.updateView(feature.model, ecModel, api, payload);
- });
- },
- updateLayout: function (toolboxModel, ecModel, api, payload) {
- zrUtil.each(this._features, function (feature) {
- feature.updateLayout && feature.updateLayout(feature.model, ecModel, api, payload);
- });
- },
- remove: function (ecModel, api) {
- zrUtil.each(this._features, function (feature) {
- feature.remove && feature.remove(ecModel, api);
- });
- this.group.removeAll();
- },
- dispose: function (ecModel, api) {
- zrUtil.each(this._features, function (feature) {
- feature.dispose && feature.dispose(ecModel, api);
- });
- }
- });
- function isUserFeatureName(featureName) {
- return featureName.indexOf('my') === 0;
- }
- module.exports = _default;
|