| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716 |
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- /**
- * AUTO-GENERATED FILE. DO NOT MODIFY.
- */
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- import * as pathTool from 'zrender/lib/tool/path.js';
- import * as matrix from 'zrender/lib/core/matrix.js';
- import * as vector from 'zrender/lib/core/vector.js';
- import Path from 'zrender/lib/graphic/Path.js';
- import Transformable from 'zrender/lib/core/Transformable.js';
- import ZRImage from 'zrender/lib/graphic/Image.js';
- import Group from 'zrender/lib/graphic/Group.js';
- import ZRText from 'zrender/lib/graphic/Text.js';
- import Circle from 'zrender/lib/graphic/shape/Circle.js';
- import Ellipse from 'zrender/lib/graphic/shape/Ellipse.js';
- import Sector from 'zrender/lib/graphic/shape/Sector.js';
- import Ring from 'zrender/lib/graphic/shape/Ring.js';
- import Polygon from 'zrender/lib/graphic/shape/Polygon.js';
- import Polyline from 'zrender/lib/graphic/shape/Polyline.js';
- import Rect from 'zrender/lib/graphic/shape/Rect.js';
- import Line from 'zrender/lib/graphic/shape/Line.js';
- import BezierCurve from 'zrender/lib/graphic/shape/BezierCurve.js';
- import Arc from 'zrender/lib/graphic/shape/Arc.js';
- import CompoundPath from 'zrender/lib/graphic/CompoundPath.js';
- import LinearGradient from 'zrender/lib/graphic/LinearGradient.js';
- import RadialGradient from 'zrender/lib/graphic/RadialGradient.js';
- import BoundingRect from 'zrender/lib/core/BoundingRect.js';
- import OrientedBoundingRect from 'zrender/lib/core/OrientedBoundingRect.js';
- import Point from 'zrender/lib/core/Point.js';
- import IncrementalDisplayable from 'zrender/lib/graphic/IncrementalDisplayable.js';
- import * as subPixelOptimizeUtil from 'zrender/lib/graphic/helper/subPixelOptimize.js';
- import { extend, isArrayLike, map, defaults, isString, keys, each, hasOwn, isArray, isNumber, clone, assert } from 'zrender/lib/core/util.js';
- import { getECData } from './innerStore.js';
- import { updateProps, initProps, removeElement, removeElementWithFadeOut, isElementRemoved } from '../animation/basicTransition.js';
- import { mathMin, mathMax, mathAbs } from './number.js';
- /**
- * @deprecated export for compatitable reason
- */
- export { updateProps, initProps, removeElement, removeElementWithFadeOut, isElementRemoved };
- var _customShapeMap = {};
- export var XY = ['x', 'y'];
- export var WH = ['width', 'height'];
- /**
- * Extend shape with parameters
- */
- export function extendShape(opts) {
- return Path.extend(opts);
- }
- var extendPathFromString = pathTool.extendFromString;
- /**
- * Extend path
- */
- export function extendPath(pathData, opts) {
- return extendPathFromString(pathData, opts);
- }
- /**
- * Register a user defined shape.
- * The shape class can be fetched by `getShapeClass`
- * This method will overwrite the registered shapes, including
- * the registered built-in shapes, if using the same `name`.
- * The shape can be used in `custom series` and
- * `graphic component` by declaring `{type: name}`.
- *
- * @param name
- * @param ShapeClass Can be generated by `extendShape`.
- */
- export function registerShape(name, ShapeClass) {
- _customShapeMap[name] = ShapeClass;
- }
- /**
- * Find shape class registered by `registerShape`. Usually used in
- * fetching user defined shape.
- *
- * [Caution]:
- * (1) This method **MUST NOT be used inside echarts !!!**, unless it is prepared
- * to use user registered shapes.
- * Because the built-in shape (see `getBuiltInShape`) will be registered by
- * `registerShape` by default. That enables users to get both built-in
- * shapes as well as the shapes belonging to themsleves. But users can overwrite
- * the built-in shapes by using names like 'circle', 'rect' via calling
- * `registerShape`. So the echarts inner featrues should not fetch shapes from here
- * in case that it is overwritten by users, except that some features, like
- * `custom series`, `graphic component`, do it deliberately.
- *
- * (2) In the features like `custom series`, `graphic component`, the user input
- * `{tpye: 'xxx'}` does not only specify shapes but also specify other graphic
- * elements like `'group'`, `'text'`, `'image'` or event `'path'`. Those names
- * are reserved names, that is, if some user registers a shape named `'image'`,
- * the shape will not be used. If we intending to add some more reserved names
- * in feature, that might bring break changes (disable some existing user shape
- * names). But that case probably rarely happens. So we don't make more mechanism
- * to resolve this issue here.
- *
- * @param name
- * @return The shape class. If not found, return nothing.
- */
- export function getShapeClass(name) {
- if (_customShapeMap.hasOwnProperty(name)) {
- return _customShapeMap[name];
- }
- }
- /**
- * Create a path element from path data string
- * @param pathData
- * @param opts
- * @param rect
- * @param layout 'center' or 'cover' default to be cover
- */
- export function makePath(pathData, opts, rect, layout) {
- var path = pathTool.createFromString(pathData, opts);
- if (rect) {
- if (layout === 'center') {
- rect = centerGraphic(rect, path.getBoundingRect());
- }
- resizePath(path, rect);
- }
- return path;
- }
- /**
- * Create a image element from image url
- * @param imageUrl image url
- * @param opts options
- * @param rect constrain rect
- * @param layout 'center' or 'cover'. Default to be 'cover'
- */
- export function makeImage(imageUrl, rect, layout) {
- var zrImg = new ZRImage({
- style: {
- image: imageUrl,
- x: rect.x,
- y: rect.y,
- width: rect.width,
- height: rect.height
- },
- onload: function (img) {
- if (layout === 'center') {
- var boundingRect = {
- width: img.width,
- height: img.height
- };
- zrImg.setStyle(centerGraphic(rect, boundingRect));
- }
- }
- });
- return zrImg;
- }
- /**
- * Get position of centered element in bounding box.
- *
- * @param rect element local bounding box
- * @param boundingRect constraint bounding box
- * @return element position containing x, y, width, and height
- */
- function centerGraphic(rect, boundingRect) {
- // Set rect to center, keep width / height ratio.
- var aspect = boundingRect.width / boundingRect.height;
- var width = rect.height * aspect;
- var height;
- if (width <= rect.width) {
- height = rect.height;
- } else {
- width = rect.width;
- height = width / aspect;
- }
- var cx = rect.x + rect.width / 2;
- var cy = rect.y + rect.height / 2;
- return {
- x: cx - width / 2,
- y: cy - height / 2,
- width: width,
- height: height
- };
- }
- export var mergePath = pathTool.mergePath;
- /**
- * Resize a path to fit the rect
- * @param path
- * @param rect
- */
- export function resizePath(path, rect) {
- if (!path.applyTransform) {
- return;
- }
- var pathRect = path.getBoundingRect();
- var m = pathRect.calculateTransform(rect);
- path.applyTransform(m);
- }
- /**
- * Sub pixel optimize line for canvas
- */
- export function subPixelOptimizeLine(shape, lineWidth) {
- subPixelOptimizeUtil.subPixelOptimizeLine(shape, shape, {
- lineWidth: lineWidth
- });
- return shape;
- }
- /**
- * Sub pixel optimize rect for canvas
- */
- export function subPixelOptimizeRect(shape, style) {
- subPixelOptimizeUtil.subPixelOptimizeRect(shape, shape, style);
- return shape;
- }
- /**
- * Sub pixel optimize for canvas
- *
- * @param position Coordinate, such as x, y
- * @param lineWidth Should be nonnegative integer.
- * @param positiveOrNegative Default false (negative).
- * @return Optimized position.
- */
- export var subPixelOptimize = subPixelOptimizeUtil.subPixelOptimize;
- /**
- * Get transform matrix of target (param target),
- * in coordinate of its ancestor (param ancestor)
- *
- * @param target
- * @param [ancestor]
- */
- export function getTransform(target, ancestor) {
- var mat = matrix.identity([]);
- while (target && target !== ancestor) {
- matrix.mul(mat, target.getLocalTransform(), mat);
- target = target.parent;
- }
- return mat;
- }
- /**
- * Apply transform to an vertex.
- * @param target [x, y]
- * @param transform Can be:
- * + Transform matrix: like [1, 0, 0, 1, 0, 0]
- * + {position, rotation, scale}, the same as `zrender/Transformable`.
- * @param invert Whether use invert matrix.
- * @return [x, y]
- */
- export function applyTransform(target, transform, invert) {
- if (transform && !isArrayLike(transform)) {
- transform = Transformable.getLocalTransform(transform);
- }
- if (invert) {
- transform = matrix.invert([], transform);
- }
- return vector.applyTransform([], target, transform);
- }
- /**
- * @param direction 'left' 'right' 'top' 'bottom'
- * @param transform Transform matrix: like [1, 0, 0, 1, 0, 0]
- * @param invert Whether use invert matrix.
- * @return Transformed direction. 'left' 'right' 'top' 'bottom'
- */
- export function transformDirection(direction, transform, invert) {
- // Pick a base, ensure that transform result will not be (0, 0).
- var hBase = transform[4] === 0 || transform[5] === 0 || transform[0] === 0 ? 1 : mathAbs(2 * transform[4] / transform[0]);
- var vBase = transform[4] === 0 || transform[5] === 0 || transform[2] === 0 ? 1 : mathAbs(2 * transform[4] / transform[2]);
- var vertex = [direction === 'left' ? -hBase : direction === 'right' ? hBase : 0, direction === 'top' ? -vBase : direction === 'bottom' ? vBase : 0];
- vertex = applyTransform(vertex, transform, invert);
- return mathAbs(vertex[0]) > mathAbs(vertex[1]) ? vertex[0] > 0 ? 'right' : 'left' : vertex[1] > 0 ? 'bottom' : 'top';
- }
- function isNotGroup(el) {
- return !el.isGroup;
- }
- function isPath(el) {
- return el.shape != null;
- }
- /**
- * Apply group transition animation from g1 to g2.
- * If no animatableModel, no animation.
- */
- export function groupTransition(g1, g2, animatableModel) {
- if (!g1 || !g2) {
- return;
- }
- function getElMap(g) {
- var elMap = {};
- g.traverse(function (el) {
- if (isNotGroup(el) && el.anid) {
- elMap[el.anid] = el;
- }
- });
- return elMap;
- }
- function getAnimatableProps(el) {
- var obj = {
- x: el.x,
- y: el.y,
- rotation: el.rotation
- };
- if (isPath(el)) {
- obj.shape = clone(el.shape);
- }
- return obj;
- }
- var elMap1 = getElMap(g1);
- g2.traverse(function (el) {
- if (isNotGroup(el) && el.anid) {
- var oldEl = elMap1[el.anid];
- if (oldEl) {
- var newProp = getAnimatableProps(el);
- el.attr(getAnimatableProps(oldEl));
- updateProps(el, newProp, animatableModel, getECData(el).dataIndex);
- }
- }
- });
- }
- export function clipPointsByRect(points, rect) {
- // FIXME: This way might be incorrect when graphic clipped by a corner
- // and when element has a border.
- return map(points, function (point) {
- var x = point[0];
- x = mathMax(x, rect.x);
- x = mathMin(x, rect.x + rect.width);
- var y = point[1];
- y = mathMax(y, rect.y);
- y = mathMin(y, rect.y + rect.height);
- return [x, y];
- });
- }
- /**
- * Return a new clipped rect. If rect size are negative, return undefined.
- */
- export function clipRectByRect(targetRect, rect) {
- var x = mathMax(targetRect.x, rect.x);
- var x2 = mathMin(targetRect.x + targetRect.width, rect.x + rect.width);
- var y = mathMax(targetRect.y, rect.y);
- var y2 = mathMin(targetRect.y + targetRect.height, rect.y + rect.height);
- // If the total rect is cliped, nothing, including the border,
- // should be painted. So return undefined.
- if (x2 >= x && y2 >= y) {
- return {
- x: x,
- y: y,
- width: x2 - x,
- height: y2 - y
- };
- }
- }
- export function createIcon(iconStr,
- // Support 'image://' or 'path://' or direct svg path.
- opt, rect) {
- var innerOpts = extend({
- rectHover: true
- }, opt);
- var style = innerOpts.style = {
- strokeNoScale: true
- };
- rect = rect || {
- x: -1,
- y: -1,
- width: 2,
- height: 2
- };
- if (iconStr) {
- return iconStr.indexOf('image://') === 0 ? (style.image = iconStr.slice(8), defaults(style, rect), new ZRImage(innerOpts)) : makePath(iconStr.replace('path://', ''), innerOpts, rect, 'center');
- }
- }
- /**
- * Return `true` if the given line (line `a`) and the given polygon
- * are intersect.
- * Note that we do not count colinear as intersect here because no
- * requirement for that. We could do that if required in future.
- */
- export function linePolygonIntersect(a1x, a1y, a2x, a2y, points) {
- for (var i = 0, p2 = points[points.length - 1]; i < points.length; i++) {
- var p = points[i];
- if (lineLineIntersect(a1x, a1y, a2x, a2y, p[0], p[1], p2[0], p2[1])) {
- return true;
- }
- p2 = p;
- }
- }
- /**
- * Return `true` if the given two lines (line `a` and line `b`)
- * are intersect.
- * Note that we do not count colinear as intersect here because no
- * requirement for that. We could do that if required in future.
- */
- export function lineLineIntersect(a1x, a1y, a2x, a2y, b1x, b1y, b2x, b2y) {
- // let `vec_m` to be `vec_a2 - vec_a1` and `vec_n` to be `vec_b2 - vec_b1`.
- var mx = a2x - a1x;
- var my = a2y - a1y;
- var nx = b2x - b1x;
- var ny = b2y - b1y;
- // `vec_m` and `vec_n` are parallel iff
- // existing `k` such that `vec_m = k · vec_n`, equivalent to `vec_m X vec_n = 0`.
- var nmCrossProduct = crossProduct2d(nx, ny, mx, my);
- if (nearZero(nmCrossProduct)) {
- return false;
- }
- // `vec_m` and `vec_n` are intersect iff
- // existing `p` and `q` in [0, 1] such that `vec_a1 + p * vec_m = vec_b1 + q * vec_n`,
- // such that `q = ((vec_a1 - vec_b1) X vec_m) / (vec_n X vec_m)`
- // and `p = ((vec_a1 - vec_b1) X vec_n) / (vec_n X vec_m)`.
- var b1a1x = a1x - b1x;
- var b1a1y = a1y - b1y;
- var q = crossProduct2d(b1a1x, b1a1y, mx, my) / nmCrossProduct;
- if (q < 0 || q > 1) {
- return false;
- }
- var p = crossProduct2d(b1a1x, b1a1y, nx, ny) / nmCrossProduct;
- if (p < 0 || p > 1) {
- return false;
- }
- return true;
- }
- /**
- * Cross product of 2-dimension vector.
- */
- function crossProduct2d(x1, y1, x2, y2) {
- return x1 * y2 - x2 * y1;
- }
- function nearZero(val) {
- return val <= 1e-6 && val >= -1e-6;
- }
- /**
- * NOTE:
- * A negative-width/height rect (due to negative margins) is not supported;
- * it will be clampped to zero width/height.
- * Although negative-width/height rects can be defined reasonably following the
- * similar sense in CSS, but they are rarely used, hard to understand and complicated.
- *
- * @param rect Assume its width/height >= 0 if existing.
- * x/y/width/height is allowed to be NaN,
- * for the case that only x/width or y/height is intended to be computed.
- * @param delta
- * If be `number[]`, should be `[top, right, bottom, left]`,
- * which can be used in padding or margin case.
- * @see `normalizeCssArray` in `util/format.ts`
- * If be `number`, it means [delta, delta, delta, delta],
- * which can be used in lineWidth (borderWith) case,
- * [NOTICE]: commonly pass lineWidth / 2, following the convention that border is
- * half inside half outside of the rect.
- * @param shrinkOrExpand
- * `true` - shrink if `delta[i]` is positive, commmonly used in `padding` case.
- * `false` - expand if `delta[i]` is positive, commmonly used in `margin` case. (default)
- * @param noNegative
- * `true` - negative `delta[i]` will be clampped to 0.
- * `false` - No clamp to `delta`. (default).
- * @return The input `rect`.
- */
- export function expandOrShrinkRect(rect, delta, shrinkOrExpand, noNegative, minSize // by default [0, 0].
- ) {
- if (delta == null) {
- return rect;
- } else if (isNumber(delta)) {
- _tmpExpandRectDelta[0] = _tmpExpandRectDelta[1] = _tmpExpandRectDelta[2] = _tmpExpandRectDelta[3] = delta;
- } else {
- if (process.env.NODE_ENV !== 'production') {
- assert(delta.length === 4);
- }
- _tmpExpandRectDelta[0] = delta[0];
- _tmpExpandRectDelta[1] = delta[1];
- _tmpExpandRectDelta[2] = delta[2];
- _tmpExpandRectDelta[3] = delta[3];
- }
- if (noNegative) {
- _tmpExpandRectDelta[0] = mathMax(0, _tmpExpandRectDelta[0]);
- _tmpExpandRectDelta[1] = mathMax(0, _tmpExpandRectDelta[1]);
- _tmpExpandRectDelta[2] = mathMax(0, _tmpExpandRectDelta[2]);
- _tmpExpandRectDelta[3] = mathMax(0, _tmpExpandRectDelta[3]);
- }
- if (shrinkOrExpand) {
- _tmpExpandRectDelta[0] = -_tmpExpandRectDelta[0];
- _tmpExpandRectDelta[1] = -_tmpExpandRectDelta[1];
- _tmpExpandRectDelta[2] = -_tmpExpandRectDelta[2];
- _tmpExpandRectDelta[3] = -_tmpExpandRectDelta[3];
- }
- expandRectOnOneDimension(rect, _tmpExpandRectDelta, 'x', 'width', 3, 1, minSize && minSize[0] || 0);
- expandRectOnOneDimension(rect, _tmpExpandRectDelta, 'y', 'height', 0, 2, minSize && minSize[1] || 0);
- return rect;
- }
- var _tmpExpandRectDelta = [0, 0, 0, 0];
- function expandRectOnOneDimension(rect, delta, xy, wh, ltIdx, rbIdx, minSize) {
- var deltaSum = delta[rbIdx] + delta[ltIdx];
- var oldSize = rect[wh];
- rect[wh] += deltaSum;
- minSize = mathMax(0, mathMin(minSize, oldSize));
- if (rect[wh] < minSize) {
- rect[wh] = minSize;
- // Try to make the position of the zero rect reasonable in most visual cases.
- rect[xy] += delta[ltIdx] >= 0 ? -delta[ltIdx] : delta[rbIdx] >= 0 ? oldSize + delta[rbIdx] : mathAbs(deltaSum) > 1e-8 ? (oldSize - minSize) * delta[ltIdx] / deltaSum : 0;
- } else {
- rect[xy] -= delta[ltIdx];
- }
- }
- export function setTooltipConfig(opt) {
- var itemTooltipOption = opt.itemTooltipOption;
- var componentModel = opt.componentModel;
- var itemName = opt.itemName;
- var itemTooltipOptionObj = isString(itemTooltipOption) ? {
- formatter: itemTooltipOption
- } : itemTooltipOption;
- var mainType = componentModel.mainType;
- var componentIndex = componentModel.componentIndex;
- var formatterParams = {
- componentType: mainType,
- name: itemName,
- $vars: ['name']
- };
- formatterParams[mainType + 'Index'] = componentIndex;
- var formatterParamsExtra = opt.formatterParamsExtra;
- if (formatterParamsExtra) {
- each(keys(formatterParamsExtra), function (key) {
- if (!hasOwn(formatterParams, key)) {
- formatterParams[key] = formatterParamsExtra[key];
- formatterParams.$vars.push(key);
- }
- });
- }
- var ecData = getECData(opt.el);
- ecData.componentMainType = mainType;
- ecData.componentIndex = componentIndex;
- ecData.tooltipConfig = {
- name: itemName,
- option: defaults({
- content: itemName,
- encodeHTMLContent: true,
- formatterParams: formatterParams
- }, itemTooltipOptionObj)
- };
- }
- function traverseElement(el, cb) {
- var stopped;
- // TODO
- // Polyfill for fixing zrender group traverse don't visit it's root issue.
- if (el.isGroup) {
- stopped = cb(el);
- }
- if (!stopped) {
- el.traverse(cb);
- }
- }
- export function traverseElements(els, cb) {
- if (els) {
- if (isArray(els)) {
- for (var i = 0; i < els.length; i++) {
- traverseElement(els[i], cb);
- }
- } else {
- traverseElement(els, cb);
- }
- }
- }
- /**
- * After a boundingRect applying a `transform`, whether to be still parallel screen X and Y.
- */
- export function isBoundingRectAxisAligned(transform) {
- return !transform || mathAbs(transform[1]) < AXIS_ALIGN_EPSILON && mathAbs(transform[2]) < AXIS_ALIGN_EPSILON || mathAbs(transform[0]) < AXIS_ALIGN_EPSILON && mathAbs(transform[3]) < AXIS_ALIGN_EPSILON;
- }
- var AXIS_ALIGN_EPSILON = 1e-5;
- /**
- * Create or copy to the existing bounding rect to avoid modifying `source`.
- *
- * @usage
- * out.rect = ensureCopyRect(out.rect, sourceRect);
- */
- export function ensureCopyRect(target, source) {
- return target ? BoundingRect.copy(target, source) : source.clone();
- }
- /**
- * Create or copy to the existing transform to avoid modifying `source`.
- *
- * [CAUTION]: transform is `NullUndefined` if no transform, following convention of zrender,
- * and enable to bypass some unnecessary calculation, since in most cases there is no transform.
- *
- * @usage
- * out.transform = ensureCopyTransform(out.transform, sourceTransform);
- */
- export function ensureCopyTransform(target, source) {
- return source ? matrix.copy(target || matrix.create(), source) : undefined;
- }
- export function retrieveZInfo(model) {
- return {
- z: model.get('z') || 0,
- zlevel: model.get('zlevel') || 0
- };
- }
- /**
- * Assume all of the elements has the same `z` and `zlevel`.
- */
- export function calcZ2Range(el) {
- var max = -Infinity;
- var min = Infinity;
- traverseElement(el, function (el) {
- visitEl(el);
- visitEl(el.getTextContent());
- visitEl(el.getTextGuideLine());
- });
- function visitEl(el) {
- if (!el || el.isGroup) {
- return;
- }
- var currentStates = el.currentStates;
- if (currentStates.length) {
- for (var idx = 0; idx < currentStates.length; idx++) {
- calcZ2(el.states[currentStates[idx]]);
- }
- }
- calcZ2(el);
- }
- function calcZ2(entity) {
- if (entity) {
- var z2 = entity.z2;
- // Consider z2 may be NullUndefined
- if (z2 > max) {
- max = z2;
- }
- if (z2 < min) {
- min = z2;
- }
- }
- }
- if (min > max) {
- min = max = 0;
- }
- return {
- min: min,
- max: max
- };
- }
- export function traverseUpdateZ(el, z, zlevel) {
- doUpdateZ(el, z, zlevel, -Infinity);
- }
- function doUpdateZ(el, z, zlevel,
- // FIXME: Ideally all the labels should be above all the glyphs by default,
- // e.g. in graph, edge labels should be above node elements.
- // Currently impl does not guarantee that.
- maxZ2) {
- // `ignoreModelZ` is used to intentionally lift elements to cover other elements,
- // where maxZ2 (for label.z2) should also not be counted for its parents.
- if (el.ignoreModelZ) {
- return maxZ2;
- }
- // Group may also have textContent
- var label = el.getTextContent();
- var labelLine = el.getTextGuideLine();
- var isGroup = el.isGroup;
- if (isGroup) {
- // set z & zlevel of children elements of Group
- var children = el.childrenRef();
- for (var i = 0; i < children.length; i++) {
- maxZ2 = mathMax(doUpdateZ(children[i], z, zlevel, maxZ2), maxZ2);
- }
- } else {
- // not Group
- el.z = z;
- el.zlevel = zlevel;
- maxZ2 = mathMax(el.z2 || 0, maxZ2);
- }
- // always set z and zlevel if label/labelLine exists
- if (label) {
- label.z = z;
- label.zlevel = zlevel;
- // lift z2 of text content
- // TODO if el.emphasis.z2 is spcefied, what about textContent.
- isFinite(maxZ2) && (label.z2 = maxZ2 + 2);
- }
- if (labelLine) {
- var textGuideLineConfig = el.textGuideLineConfig;
- labelLine.z = z;
- labelLine.zlevel = zlevel;
- isFinite(maxZ2) && (labelLine.z2 = maxZ2 + (textGuideLineConfig && textGuideLineConfig.showAbove ? 1 : -1));
- }
- return maxZ2;
- }
- // Register built-in shapes. These shapes might be overwritten
- // by users, although we do not recommend that.
- registerShape('circle', Circle);
- registerShape('ellipse', Ellipse);
- registerShape('sector', Sector);
- registerShape('ring', Ring);
- registerShape('polygon', Polygon);
- registerShape('polyline', Polyline);
- registerShape('rect', Rect);
- registerShape('line', Line);
- registerShape('bezierCurve', BezierCurve);
- registerShape('arc', Arc);
- export { Group, ZRImage as Image, ZRText as Text, Circle, Ellipse, Sector, Ring, Polygon, Polyline, Rect, Line, BezierCurve, Arc, IncrementalDisplayable, CompoundPath, LinearGradient, RadialGradient, BoundingRect, OrientedBoundingRect, Point, Path };
|