12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- /**
- * @fileoverview defs
- * @author dengfuping_develop@163.com
- */
- import { uniqueId } from '@antv/util';
- import Gradient from './gradient';
- import Shadow from './shadow';
- import Arrow from './arrow';
- import Clip from './clip';
- import Pattern from './pattern';
- import { createSVGElement } from '../util/dom';
- var Defs = /** @class */ (function () {
- function Defs(canvas) {
- var el = createSVGElement('defs');
- var id = uniqueId('defs_');
- el.id = id;
- canvas.appendChild(el);
- this.children = [];
- this.defaultArrow = {};
- this.el = el;
- this.canvas = canvas;
- }
- Defs.prototype.find = function (type, attr) {
- var children = this.children;
- var result = null;
- for (var i = 0; i < children.length; i++) {
- if (children[i].match(type, attr)) {
- result = children[i].id;
- break;
- }
- }
- return result;
- };
- Defs.prototype.findById = function (id) {
- var children = this.children;
- var flag = null;
- for (var i = 0; i < children.length; i++) {
- if (children[i].id === id) {
- flag = children[i];
- break;
- }
- }
- return flag;
- };
- Defs.prototype.add = function (item) {
- this.children.push(item);
- item.canvas = this.canvas;
- item.parent = this;
- };
- Defs.prototype.getDefaultArrow = function (attrs, name) {
- var stroke = attrs.stroke || attrs.strokeStyle;
- if (this.defaultArrow[stroke]) {
- return this.defaultArrow[stroke].id;
- }
- var arrow = new Arrow(attrs, name);
- this.defaultArrow[stroke] = arrow;
- this.el.appendChild(arrow.el);
- this.add(arrow);
- return arrow.id;
- };
- Defs.prototype.addGradient = function (cfg) {
- var gradient = new Gradient(cfg);
- this.el.appendChild(gradient.el);
- this.add(gradient);
- return gradient.id;
- };
- Defs.prototype.addArrow = function (attrs, name) {
- var arrow = new Arrow(attrs, name);
- this.el.appendChild(arrow.el);
- this.add(arrow);
- return arrow.id;
- };
- Defs.prototype.addShadow = function (cfg) {
- var shadow = new Shadow(cfg);
- this.el.appendChild(shadow.el);
- this.add(shadow);
- return shadow.id;
- };
- Defs.prototype.addPattern = function (cfg) {
- var pattern = new Pattern(cfg);
- this.el.appendChild(pattern.el);
- this.add(pattern);
- return pattern.id;
- };
- Defs.prototype.addClip = function (cfg) {
- var clip = new Clip(cfg);
- this.el.appendChild(clip.el);
- this.add(clip);
- return clip.id;
- };
- return Defs;
- }());
- export default Defs;
- //# sourceMappingURL=index.js.map
|