Files
lan-manager/web/node_modules/@antv/g-svg/lib/defs/pattern.js
openclaw 0a5f6a8047 Initial commit: Lan-manager project code
- Go backend (server/)
- Frontend (web/, server/static/)
- Database and deployment files
- Scripts and docs

Co-Authored-By: 狸花猫/Claude-Qwen3.6-Plus 🐾
2026-04-20 00:52:58 +08:00

50 lines
1.5 KiB
JavaScript

"use strict";
/**
* @fileoverview pattern
* @author dengfuping_develop@163.com
*/
Object.defineProperty(exports, "__esModule", { value: true });
var util_1 = require("@antv/util");
var dom_1 = require("../util/dom");
var regexPR = /^p\s*\(\s*([axyn])\s*\)\s*(.*)/i;
var Pattern = /** @class */ (function () {
function Pattern(cfg) {
this.cfg = {};
var el = dom_1.createSVGElement('pattern');
el.setAttribute('patternUnits', 'userSpaceOnUse');
var child = dom_1.createSVGElement('image');
el.appendChild(child);
var id = util_1.uniqueId('pattern_');
el.id = id;
this.el = el;
this.id = id;
this.cfg = cfg;
var arr = regexPR.exec(cfg);
var source = arr[2];
child.setAttribute('href', source);
var img = new Image();
if (!source.match(/^data:/i)) {
img.crossOrigin = 'Anonymous';
}
img.src = source;
function onload() {
el.setAttribute('width', "" + img.width);
el.setAttribute('height', "" + img.height);
}
if (img.complete) {
onload();
}
else {
img.onload = onload;
// Fix onload() bug in IE9
img.src = img.src;
}
return this;
}
Pattern.prototype.match = function (type, attr) {
return this.cfg === attr;
};
return Pattern;
}());
exports.default = Pattern;
//# sourceMappingURL=pattern.js.map