@leafer-ui/node 1.11.2 → 1.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/node.cjs +24 -15
- package/dist/node.esm.js +24 -15
- package/dist/node.esm.min.js +1 -1
- package/dist/node.esm.min.js.map +1 -1
- package/dist/node.min.cjs +1 -1
- package/dist/node.min.cjs.map +1 -1
- package/package.json +12 -12
package/dist/node.cjs
CHANGED
|
@@ -155,7 +155,7 @@ class Watcher {
|
|
|
155
155
|
return this.hasAdd || this.hasRemove || this.hasVisible;
|
|
156
156
|
}
|
|
157
157
|
get updatedList() {
|
|
158
|
-
if (this.hasRemove) {
|
|
158
|
+
if (this.hasRemove && this.config.usePartLayout) {
|
|
159
159
|
const updatedList = new core.LeafList;
|
|
160
160
|
this.__updatedList.list.forEach(item => {
|
|
161
161
|
if (item.leafer) updatedList.add(item);
|
|
@@ -190,16 +190,18 @@ class Watcher {
|
|
|
190
190
|
if (this.running) this.target.emit(core.RenderEvent.REQUEST);
|
|
191
191
|
}
|
|
192
192
|
__onAttrChange(event) {
|
|
193
|
-
this.__updatedList.add(event.target);
|
|
193
|
+
if (this.config.usePartLayout) this.__updatedList.add(event.target);
|
|
194
194
|
this.update();
|
|
195
195
|
}
|
|
196
196
|
__onChildEvent(event) {
|
|
197
|
-
if (
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
197
|
+
if (this.config.usePartLayout) {
|
|
198
|
+
if (event.type === core.ChildEvent.ADD) {
|
|
199
|
+
this.hasAdd = true;
|
|
200
|
+
this.__pushChild(event.child);
|
|
201
|
+
} else {
|
|
202
|
+
this.hasRemove = true;
|
|
203
|
+
this.__updatedList.add(event.parent);
|
|
204
|
+
}
|
|
203
205
|
}
|
|
204
206
|
this.update();
|
|
205
207
|
}
|
|
@@ -316,7 +318,9 @@ const debug$2 = core.Debug.get("Layouter");
|
|
|
316
318
|
class Layouter {
|
|
317
319
|
constructor(target, userConfig) {
|
|
318
320
|
this.totalTimes = 0;
|
|
319
|
-
this.config = {
|
|
321
|
+
this.config = {
|
|
322
|
+
usePartLayout: true
|
|
323
|
+
};
|
|
320
324
|
this.__levelList = new core.LeafLevelList;
|
|
321
325
|
this.target = target;
|
|
322
326
|
if (userConfig) this.config = core.DataHelper.default(userConfig, this.config);
|
|
@@ -361,7 +365,7 @@ class Layouter {
|
|
|
361
365
|
this.totalTimes++;
|
|
362
366
|
this.layouting = true;
|
|
363
367
|
this.target.emit(core.WatchEvent.REQUEST);
|
|
364
|
-
if (this.totalTimes > 1) {
|
|
368
|
+
if (this.totalTimes > 1 && this.config.usePartLayout) {
|
|
365
369
|
this.partLayout();
|
|
366
370
|
} else {
|
|
367
371
|
this.fullLayout();
|
|
@@ -478,7 +482,7 @@ class Renderer {
|
|
|
478
482
|
}
|
|
479
483
|
update(change = true) {
|
|
480
484
|
if (!this.changed) this.changed = change;
|
|
481
|
-
this.__requestRender();
|
|
485
|
+
if (!this.requestTime) this.__requestRender();
|
|
482
486
|
}
|
|
483
487
|
requestLayout() {
|
|
484
488
|
this.target.emit(core.LayoutEvent.REQUEST);
|
|
@@ -585,7 +589,7 @@ class Renderer {
|
|
|
585
589
|
core.Run.end(t);
|
|
586
590
|
}
|
|
587
591
|
__render(bounds, realBounds) {
|
|
588
|
-
const {canvas: canvas} = this, includes = bounds.includes(
|
|
592
|
+
const {canvas: canvas, target: target} = this, includes = bounds.includes(target.__world), options = includes ? {
|
|
589
593
|
includes: includes
|
|
590
594
|
} : {
|
|
591
595
|
bounds: bounds,
|
|
@@ -593,12 +597,16 @@ class Renderer {
|
|
|
593
597
|
};
|
|
594
598
|
if (this.needFill) canvas.fillWorld(bounds, this.config.fill);
|
|
595
599
|
if (core.Debug.showRepaint) core.Debug.drawRepaint(canvas, bounds);
|
|
596
|
-
|
|
600
|
+
if (this.config.useCellRender) options.cellList = this.getCellList();
|
|
601
|
+
core.Platform.render(target, canvas, options);
|
|
597
602
|
this.renderBounds = realBounds = realBounds || bounds;
|
|
598
603
|
this.renderOptions = options;
|
|
599
604
|
this.totalBounds.isEmpty() ? this.totalBounds = realBounds : this.totalBounds.add(realBounds);
|
|
600
605
|
canvas.updateRender(realBounds);
|
|
601
606
|
}
|
|
607
|
+
getCellList() {
|
|
608
|
+
return undefined;
|
|
609
|
+
}
|
|
602
610
|
addBlock(block) {
|
|
603
611
|
if (!this.updateBlocks) this.updateBlocks = [];
|
|
604
612
|
this.updateBlocks.push(block);
|
|
@@ -1194,6 +1202,7 @@ function getLeafPaint(attrName, paint, ui) {
|
|
|
1194
1202
|
const {boxBounds: boxBounds} = ui.__layout;
|
|
1195
1203
|
switch (paint.type) {
|
|
1196
1204
|
case "image":
|
|
1205
|
+
if (!paint.url) return undefined;
|
|
1197
1206
|
leafPaint = draw.PaintImage.image(ui, attrName, paint, boxBounds, !recycleMap || !recycleMap[paint.url]);
|
|
1198
1207
|
break;
|
|
1199
1208
|
|
|
@@ -1598,7 +1607,7 @@ function checkImage(paint, drawImage, ui, canvas, renderOptions) {
|
|
|
1598
1607
|
if (data.repeat) {
|
|
1599
1608
|
drawImage = false;
|
|
1600
1609
|
} else if (!(originPaint.changeful || core.Platform.name === "miniapp" && core.ResizeEvent.isResizing(ui) || exporting)) {
|
|
1601
|
-
drawImage = core.Platform.image.isLarge(image, scaleX, scaleY);
|
|
1610
|
+
drawImage = core.Platform.image.isLarge(image, scaleX, scaleY) || image.width * scaleX > 8096 || image.height * scaleY > 8096;
|
|
1602
1611
|
}
|
|
1603
1612
|
}
|
|
1604
1613
|
if (drawImage) {
|
|
@@ -1657,7 +1666,7 @@ function recycleImage(attrName, data) {
|
|
|
1657
1666
|
if (url) {
|
|
1658
1667
|
if (!recycleMap) recycleMap = {};
|
|
1659
1668
|
recycleMap[url] = true;
|
|
1660
|
-
core.ImageManager.
|
|
1669
|
+
core.ImageManager.recyclePaint(paint);
|
|
1661
1670
|
if (image.loading) {
|
|
1662
1671
|
if (!input) {
|
|
1663
1672
|
input = data.__input && data.__input[attrName] || [];
|
package/dist/node.esm.js
CHANGED
|
@@ -159,7 +159,7 @@ class Watcher {
|
|
|
159
159
|
return this.hasAdd || this.hasRemove || this.hasVisible;
|
|
160
160
|
}
|
|
161
161
|
get updatedList() {
|
|
162
|
-
if (this.hasRemove) {
|
|
162
|
+
if (this.hasRemove && this.config.usePartLayout) {
|
|
163
163
|
const updatedList = new LeafList;
|
|
164
164
|
this.__updatedList.list.forEach(item => {
|
|
165
165
|
if (item.leafer) updatedList.add(item);
|
|
@@ -194,16 +194,18 @@ class Watcher {
|
|
|
194
194
|
if (this.running) this.target.emit(RenderEvent.REQUEST);
|
|
195
195
|
}
|
|
196
196
|
__onAttrChange(event) {
|
|
197
|
-
this.__updatedList.add(event.target);
|
|
197
|
+
if (this.config.usePartLayout) this.__updatedList.add(event.target);
|
|
198
198
|
this.update();
|
|
199
199
|
}
|
|
200
200
|
__onChildEvent(event) {
|
|
201
|
-
if (
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
201
|
+
if (this.config.usePartLayout) {
|
|
202
|
+
if (event.type === ChildEvent.ADD) {
|
|
203
|
+
this.hasAdd = true;
|
|
204
|
+
this.__pushChild(event.child);
|
|
205
|
+
} else {
|
|
206
|
+
this.hasRemove = true;
|
|
207
|
+
this.__updatedList.add(event.parent);
|
|
208
|
+
}
|
|
207
209
|
}
|
|
208
210
|
this.update();
|
|
209
211
|
}
|
|
@@ -320,7 +322,9 @@ const debug$2 = Debug.get("Layouter");
|
|
|
320
322
|
class Layouter {
|
|
321
323
|
constructor(target, userConfig) {
|
|
322
324
|
this.totalTimes = 0;
|
|
323
|
-
this.config = {
|
|
325
|
+
this.config = {
|
|
326
|
+
usePartLayout: true
|
|
327
|
+
};
|
|
324
328
|
this.__levelList = new LeafLevelList;
|
|
325
329
|
this.target = target;
|
|
326
330
|
if (userConfig) this.config = DataHelper.default(userConfig, this.config);
|
|
@@ -365,7 +369,7 @@ class Layouter {
|
|
|
365
369
|
this.totalTimes++;
|
|
366
370
|
this.layouting = true;
|
|
367
371
|
this.target.emit(WatchEvent.REQUEST);
|
|
368
|
-
if (this.totalTimes > 1) {
|
|
372
|
+
if (this.totalTimes > 1 && this.config.usePartLayout) {
|
|
369
373
|
this.partLayout();
|
|
370
374
|
} else {
|
|
371
375
|
this.fullLayout();
|
|
@@ -482,7 +486,7 @@ class Renderer {
|
|
|
482
486
|
}
|
|
483
487
|
update(change = true) {
|
|
484
488
|
if (!this.changed) this.changed = change;
|
|
485
|
-
this.__requestRender();
|
|
489
|
+
if (!this.requestTime) this.__requestRender();
|
|
486
490
|
}
|
|
487
491
|
requestLayout() {
|
|
488
492
|
this.target.emit(LayoutEvent.REQUEST);
|
|
@@ -589,7 +593,7 @@ class Renderer {
|
|
|
589
593
|
Run.end(t);
|
|
590
594
|
}
|
|
591
595
|
__render(bounds, realBounds) {
|
|
592
|
-
const {canvas: canvas} = this, includes = bounds.includes(
|
|
596
|
+
const {canvas: canvas, target: target} = this, includes = bounds.includes(target.__world), options = includes ? {
|
|
593
597
|
includes: includes
|
|
594
598
|
} : {
|
|
595
599
|
bounds: bounds,
|
|
@@ -597,12 +601,16 @@ class Renderer {
|
|
|
597
601
|
};
|
|
598
602
|
if (this.needFill) canvas.fillWorld(bounds, this.config.fill);
|
|
599
603
|
if (Debug.showRepaint) Debug.drawRepaint(canvas, bounds);
|
|
600
|
-
|
|
604
|
+
if (this.config.useCellRender) options.cellList = this.getCellList();
|
|
605
|
+
Platform.render(target, canvas, options);
|
|
601
606
|
this.renderBounds = realBounds = realBounds || bounds;
|
|
602
607
|
this.renderOptions = options;
|
|
603
608
|
this.totalBounds.isEmpty() ? this.totalBounds = realBounds : this.totalBounds.add(realBounds);
|
|
604
609
|
canvas.updateRender(realBounds);
|
|
605
610
|
}
|
|
611
|
+
getCellList() {
|
|
612
|
+
return undefined;
|
|
613
|
+
}
|
|
606
614
|
addBlock(block) {
|
|
607
615
|
if (!this.updateBlocks) this.updateBlocks = [];
|
|
608
616
|
this.updateBlocks.push(block);
|
|
@@ -1198,6 +1206,7 @@ function getLeafPaint(attrName, paint, ui) {
|
|
|
1198
1206
|
const {boxBounds: boxBounds} = ui.__layout;
|
|
1199
1207
|
switch (paint.type) {
|
|
1200
1208
|
case "image":
|
|
1209
|
+
if (!paint.url) return undefined;
|
|
1201
1210
|
leafPaint = PaintImage.image(ui, attrName, paint, boxBounds, !recycleMap || !recycleMap[paint.url]);
|
|
1202
1211
|
break;
|
|
1203
1212
|
|
|
@@ -1602,7 +1611,7 @@ function checkImage(paint, drawImage, ui, canvas, renderOptions) {
|
|
|
1602
1611
|
if (data.repeat) {
|
|
1603
1612
|
drawImage = false;
|
|
1604
1613
|
} else if (!(originPaint.changeful || Platform.name === "miniapp" && ResizeEvent.isResizing(ui) || exporting)) {
|
|
1605
|
-
drawImage = Platform.image.isLarge(image, scaleX, scaleY);
|
|
1614
|
+
drawImage = Platform.image.isLarge(image, scaleX, scaleY) || image.width * scaleX > 8096 || image.height * scaleY > 8096;
|
|
1606
1615
|
}
|
|
1607
1616
|
}
|
|
1608
1617
|
if (drawImage) {
|
|
@@ -1661,7 +1670,7 @@ function recycleImage(attrName, data) {
|
|
|
1661
1670
|
if (url) {
|
|
1662
1671
|
if (!recycleMap) recycleMap = {};
|
|
1663
1672
|
recycleMap[url] = true;
|
|
1664
|
-
ImageManager.
|
|
1673
|
+
ImageManager.recyclePaint(paint);
|
|
1665
1674
|
if (image.loading) {
|
|
1666
1675
|
if (!input) {
|
|
1667
1676
|
input = data.__input && data.__input[attrName] || [];
|
package/dist/node.esm.min.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import{LeaferCanvasBase as t,Platform as e,canvasPatch as i,FileHelper as s,Creator as n,LeaferImage as a,defineKey as r,LeafList as o,DataHelper as l,RenderEvent as d,ChildEvent as c,WatchEvent as h,PropertyEvent as u,LeafHelper as f,BranchHelper as g,LeafBoundsHelper as p,Bounds as _,isArray as w,Debug as y,LeafLevelList as m,LayoutEvent as v,Run as x,ImageManager as b,ResizeEvent as S,BoundsHelper as k,Plugin as B,isObject as R,FourNumberHelper as E,Matrix as L,isUndefined as T,isString as A,ImageEvent as P,MatrixHelper as C,MathHelper as O,AlignHelper as M,PointHelper as W,getMatrixData as D,AroundHelper as F,Direction4 as I,isNumber as Y}from"@leafer/core";export*from"@leafer/core";export{LeaferImage}from"@leafer/core";import{writeFileSync as X}from"fs";import{HitCanvasManager as U,InteractionBase as N}from"@leafer-ui/core";export*from"@leafer-ui/core";import{Paint as j,PaintImage as q,ColorConvert as z,PaintGradient as G,Effect as H,Group as V,TextConvert as Q,TwoPointBoundsHelper as J,Bounds as Z,Export as $,FileHelper as K,Platform as tt,isUndefined as et,Matrix as it,MathHelper as st,Creator as nt,TaskProcessor as at,Resource as rt,LeaferCanvasBase as ot,Debug as lt,Plugin as dt,UI as ct}from"@leafer-ui/draw";var ht;function ut(t,e,i,s){return new(i||(i=Promise))(function(n,a){function r(t){try{l(s.next(t))}catch(t){a(t)}}function o(t){try{l(s.throw(t))}catch(t){a(t)}}function l(t){var e;t.done?n(t.value):(e=t.value,e instanceof i?e:new i(function(t){t(e)})).then(r,o)}l((s=s.apply(t,e||[])).next())})}!function(t){t[t.none=1]="none",t[t.free=2]="free",t[t.mirrorAngle=3]="mirrorAngle",t[t.mirror=4]="mirror"}(ht||(ht={})),"function"==typeof SuppressedError&&SuppressedError;class ft extends t{get allowBackgroundColor(){return!0}init(){this.__createView(),this.__createContext(),this.resize(this.config),e.roundRectPatch&&(this.context.__proto__.roundRect=null,i(this.context.__proto__))}__createView(){this.view=e.origin.createCanvas(1,1)}updateViewSize(){const{width:t,height:e,pixelRatio:i}=this;this.view.width=Math.ceil(t*i),this.view.height=Math.ceil(e*i),this.clientBounds=this.bounds}}const{mineType:gt,fileType:pt}=s;function _t(t,i){if(e.canvasType=t,!e.origin){if("skia"===t){const{Canvas:t,loadImage:s}=i;e.origin={createCanvas:(e,i,s)=>new t(e,i,s),canvasToDataURL:(t,e,i)=>t.toDataURLSync(e,{quality:i}),canvasToBolb:(t,e,i)=>t.toBuffer(e,{quality:i}),canvasSaveAs:(t,e,i)=>t.saveAs(e,{quality:i}),download(t,e){},loadImage:t=>s(e.image.getRealURL(t))},e.roundRectPatch=!0}else if("napi"===t){const{Canvas:t,loadImage:s}=i;e.origin={createCanvas:(e,i,s)=>new t(e,i,s),canvasToDataURL:(t,e,i)=>t.toDataURL(gt(e),i),canvasToBolb:(t,e,i)=>ut(this,void 0,void 0,function*(){return t.toBuffer(gt(e),i)}),canvasSaveAs:(t,e,i)=>ut(this,void 0,void 0,function*(){return X(e,t.toBuffer(gt(pt(e)),i))}),download(t,e){},loadImage:t=>s(e.image.getRealURL(t))}}e.ellipseToCurve=!0,e.event={stopDefault(t){},stopNow(t){},stop(t){}},e.canvas=n.canvas()}}Object.assign(n,{canvas:(t,e)=>new ft(t,e),image:t=>new a(t)}),e.name="node",e.backgrounder=!0,e.requestRender=function(t){setTimeout(t,16)},r(e,"devicePixelRatio",{get:()=>1}),e.conicGradientSupport=!0;class wt{get childrenChanged(){return this.hasAdd||this.hasRemove||this.hasVisible}get updatedList(){if(this.hasRemove){const t=new o;return this.__updatedList.list.forEach(e=>{e.leafer&&t.add(e)}),t}return this.__updatedList}constructor(t,e){this.totalTimes=0,this.config={},this.__updatedList=new o,this.target=t,e&&(this.config=l.default(e,this.config)),this.__listenEvents()}start(){this.disabled||(this.running=!0)}stop(){this.running=!1}disable(){this.stop(),this.__removeListenEvents(),this.disabled=!0}update(){this.changed=!0,this.running&&this.target.emit(d.REQUEST)}__onAttrChange(t){this.__updatedList.add(t.target),this.update()}__onChildEvent(t){t.type===c.ADD?(this.hasAdd=!0,this.__pushChild(t.child)):(this.hasRemove=!0,this.__updatedList.add(t.parent)),this.update()}__pushChild(t){this.__updatedList.add(t),t.isBranch&&this.__loopChildren(t)}__loopChildren(t){const{children:e}=t;for(let t=0,i=e.length;t<i;t++)this.__pushChild(e[t])}__onRquestData(){this.target.emitEvent(new h(h.DATA,{updatedList:this.updatedList})),this.__updatedList=new o,this.totalTimes++,this.changed=this.hasVisible=this.hasRemove=this.hasAdd=!1}__listenEvents(){this.__eventIds=[this.target.on_([[u.CHANGE,this.__onAttrChange,this],[[c.ADD,c.REMOVE],this.__onChildEvent,this],[h.REQUEST,this.__onRquestData,this]])]}__removeListenEvents(){this.target.off_(this.__eventIds)}destroy(){this.target&&(this.stop(),this.__removeListenEvents(),this.target=this.__updatedList=null)}}const{updateAllMatrix:yt,updateBounds:mt,updateChange:vt}=f,{pushAllChildBranch:xt,pushAllParent:bt}=g;const{worldBounds:St}=p;class kt{constructor(t){this.updatedBounds=new _,this.beforeBounds=new _,this.afterBounds=new _,w(t)&&(t=new o(t)),this.updatedList=t}setBefore(){this.beforeBounds.setListWithFn(this.updatedList.list,St)}setAfter(){this.afterBounds.setListWithFn(this.updatedList.list,St),this.updatedBounds.setList([this.beforeBounds,this.afterBounds])}merge(t){this.updatedList.addList(t.updatedList.list),this.beforeBounds.add(t.beforeBounds),this.afterBounds.add(t.afterBounds),this.updatedBounds.add(t.updatedBounds)}destroy(){this.updatedList=null}}const{updateAllMatrix:Bt,updateAllChange:Rt}=f,Et=y.get("Layouter");class Lt{constructor(t,e){this.totalTimes=0,this.config={},this.__levelList=new m,this.target=t,e&&(this.config=l.default(e,this.config)),this.__listenEvents()}start(){this.disabled||(this.running=!0)}stop(){this.running=!1}disable(){this.stop(),this.__removeListenEvents(),this.disabled=!0}layout(){if(this.layouting||!this.running)return;const{target:t}=this;this.times=0;try{t.emit(v.START),this.layoutOnce(),t.emitEvent(new v(v.END,this.layoutedBlocks,this.times))}catch(t){Et.error(t)}this.layoutedBlocks=null}layoutAgain(){this.layouting?this.waitAgain=!0:this.layoutOnce()}layoutOnce(){return this.layouting?Et.warn("layouting"):this.times>3?Et.warn("layout max times"):(this.times++,this.totalTimes++,this.layouting=!0,this.target.emit(h.REQUEST),this.totalTimes>1?this.partLayout():this.fullLayout(),this.layouting=!1,void(this.waitAgain&&(this.waitAgain=!1,this.layoutOnce())))}partLayout(){var t;if(!(null===(t=this.__updatedList)||void 0===t?void 0:t.length))return;const e=x.start("PartLayout"),{target:i,__updatedList:s}=this,{BEFORE:n,LAYOUT:a,AFTER:r}=v,o=this.getBlocks(s);o.forEach(t=>t.setBefore()),i.emitEvent(new v(n,o,this.times)),this.extraBlock=null,s.sort(),function(t,e){let i;t.list.forEach(t=>{i=t.__layout,e.without(t)&&!i.proxyZoom&&(i.matrixChanged?(yt(t,!0),e.add(t),t.isBranch&&xt(t,e),bt(t,e)):i.boundsChanged&&(e.add(t),t.isBranch&&(t.__tempNumber=0),bt(t,e)))})}(s,this.__levelList),function(t){let e,i,s;t.sort(!0),t.levels.forEach(n=>{e=t.levelMap[n];for(let t=0,n=e.length;t<n;t++){if(i=e[t],i.isBranch&&i.__tempNumber){s=i.children;for(let t=0,e=s.length;t<e;t++)s[t].isBranch||mt(s[t])}mt(i)}})}(this.__levelList),function(t){t.list.forEach(vt)}(s),this.extraBlock&&o.push(this.extraBlock),o.forEach(t=>t.setAfter()),i.emitEvent(new v(a,o,this.times)),i.emitEvent(new v(r,o,this.times)),this.addBlocks(o),this.__levelList.reset(),this.__updatedList=null,x.end(e)}fullLayout(){const t=x.start("FullLayout"),{target:e}=this,{BEFORE:i,LAYOUT:s,AFTER:n}=v,a=this.getBlocks(new o(e));e.emitEvent(new v(i,a,this.times)),Lt.fullLayout(e),a.forEach(t=>{t.setAfter()}),e.emitEvent(new v(s,a,this.times)),e.emitEvent(new v(n,a,this.times)),this.addBlocks(a),x.end(t)}static fullLayout(t){Bt(t,!0),t.isBranch?g.updateBounds(t):f.updateBounds(t),Rt(t)}addExtra(t){if(!this.__updatedList.has(t)){const{updatedList:e,beforeBounds:i}=this.extraBlock||(this.extraBlock=new kt([]));e.length?i.add(t.__world):i.set(t.__world),e.add(t)}}createBlock(t){return new kt(t)}getBlocks(t){return[this.createBlock(t)]}addBlocks(t){this.layoutedBlocks?this.layoutedBlocks.push(...t):this.layoutedBlocks=t}__onReceiveWatchData(t){this.__updatedList=t.data.updatedList}__listenEvents(){this.__eventIds=[this.target.on_([[v.REQUEST,this.layout,this],[v.AGAIN,this.layoutAgain,this],[h.DATA,this.__onReceiveWatchData,this]])]}__removeListenEvents(){this.target.off_(this.__eventIds)}destroy(){this.target&&(this.stop(),this.__removeListenEvents(),this.target=this.config=null)}}const Tt=y.get("Renderer");class At{get needFill(){return!(this.canvas.allowBackgroundColor||!this.config.fill)}constructor(t,e,i){this.FPS=60,this.totalTimes=0,this.times=0,this.config={usePartRender:!0,maxFPS:120},this.frames=[],this.target=t,this.canvas=e,i&&(this.config=l.default(i,this.config)),this.__listenEvents()}start(){this.running=!0,this.update(!1)}stop(){this.running=!1}update(t=!0){this.changed||(this.changed=t),this.__requestRender()}requestLayout(){this.target.emit(v.REQUEST)}checkRender(){if(this.running){const{target:t}=this;t.isApp&&(t.emit(d.CHILD_START,t),t.children.forEach(t=>{t.renderer.FPS=this.FPS,t.renderer.checkRender()}),t.emit(d.CHILD_END,t)),this.changed&&this.canvas.view&&this.render(),this.target.emit(d.NEXT)}}render(t){if(!this.running||!this.canvas.view)return this.update();const{target:e}=this;this.times=0,this.totalBounds=new _,Tt.log(e.innerName,"---\x3e");try{this.emitRender(d.START),this.renderOnce(t),this.emitRender(d.END,this.totalBounds),b.clearRecycled()}catch(t){this.rendering=!1,Tt.error(t)}Tt.log("-------------|")}renderAgain(){this.rendering?this.waitAgain=!0:this.renderOnce()}renderOnce(t){if(this.rendering)return Tt.warn("rendering");if(this.times>3)return Tt.warn("render max times");if(this.times++,this.totalTimes++,this.rendering=!0,this.changed=!1,this.renderBounds=new _,this.renderOptions={},t)this.emitRender(d.BEFORE),t();else{if(this.requestLayout(),this.ignore)return void(this.ignore=this.rendering=!1);this.emitRender(d.BEFORE),this.config.usePartRender&&this.totalTimes>1?this.partRender():this.fullRender()}this.emitRender(d.RENDER,this.renderBounds,this.renderOptions),this.emitRender(d.AFTER,this.renderBounds,this.renderOptions),this.updateBlocks=null,this.rendering=!1,this.waitAgain&&(this.waitAgain=!1,this.renderOnce())}partRender(){const{canvas:t,updateBlocks:e}=this;e&&(this.mergeBlocks(),e.forEach(e=>{t.bounds.hit(e)&&!e.isEmpty()&&this.clipRender(e)}))}clipRender(t){const e=x.start("PartRender"),{canvas:i}=this,s=t.getIntersect(i.bounds),n=new _(s);i.save(),s.spread(At.clipSpread).ceil(),i.clearWorld(s),i.clipWorld(s),this.__render(s,n),i.restore(),x.end(e)}fullRender(){const t=x.start("FullRender"),{canvas:e}=this;e.save(),e.clear(),this.__render(e.bounds),e.restore(),x.end(t)}__render(t,i){const{canvas:s}=this,n=t.includes(this.target.__world),a=n?{includes:n}:{bounds:t,includes:n};this.needFill&&s.fillWorld(t,this.config.fill),y.showRepaint&&y.drawRepaint(s,t),e.render(this.target,s,a),this.renderBounds=i=i||t,this.renderOptions=a,this.totalBounds.isEmpty()?this.totalBounds=i:this.totalBounds.add(i),s.updateRender(i)}addBlock(t){this.updateBlocks||(this.updateBlocks=[]),this.updateBlocks.push(t)}mergeBlocks(){const{updateBlocks:t}=this;if(t){const e=new _;e.setList(t),t.length=0,t.push(e)}}__requestRender(){const t=this.target;if(this.requestTime||!t)return;if(t.parentApp)return t.parentApp.requestRender(!1);this.requestTime=this.frameTime||Date.now();const i=()=>{const t=1e3/((this.frameTime=Date.now())-this.requestTime),{maxFPS:s}=this.config;if(s&&t>s)return e.requestRender(i);const{frames:n}=this;n.length>30&&n.shift(),n.push(t),this.FPS=Math.round(n.reduce((t,e)=>t+e,0)/n.length),this.requestTime=0,this.checkRender()};e.requestRender(i)}__onResize(t){if(!this.canvas.unreal){if(t.bigger||!t.samePixelRatio){const{width:e,height:i}=t.old;if(!new _(0,0,e,i).includes(this.target.__world)||this.needFill||!t.samePixelRatio)return this.addBlock(this.canvas.bounds),void this.target.forceUpdate("surface")}this.addBlock(new _(0,0,1,1)),this.update()}}__onLayoutEnd(t){t.data&&t.data.map(t=>{let e;t.updatedList&&t.updatedList.list.some(t=>(e=!t.__world.width||!t.__world.height,e&&(t.isLeafer||Tt.tip(t.innerName,": empty"),e=!t.isBranch||t.isBranchLeaf),e)),this.addBlock(e?this.canvas.bounds:t.updatedBounds)})}emitRender(t,e,i){this.target.emitEvent(new d(t,this.times,e,i))}__listenEvents(){this.__eventIds=[this.target.on_([[d.REQUEST,this.update,this],[v.END,this.__onLayoutEnd,this],[d.AGAIN,this.renderAgain,this],[S.RESIZE,this.__onResize,this]])]}__removeListenEvents(){this.target.off_(this.__eventIds)}destroy(){this.target&&(this.stop(),this.__removeListenEvents(),this.config={},this.target=this.canvas=null)}}At.clipSpread=10;const{hitRadiusPoint:Pt}=k;class Ct{constructor(t,e){this.target=t,this.selector=e}getByPoint(t,e,i){e||(e=0),i||(i={});const s=i.through||!1,n=i.ignoreHittable||!1,a=i.target||this.target;this.exclude=i.exclude||null,this.point={x:t.x,y:t.y,radiusX:e,radiusY:e},this.findList=new o(i.findList),i.findList||this.hitBranch(a.isBranchLeaf?{children:[a]}:a);const{list:r}=this.findList,l=this.getBestMatchLeaf(r,i.bottomList,n,!!i.findList),d=n?this.getPath(l):this.getHitablePath(l);return this.clear(),s?{path:d,target:l,throughPath:r.length?this.getThroughPath(r):d}:{path:d,target:l}}hitPoint(t,e,i){return!!this.getByPoint(t,e,i).target}getBestMatchLeaf(t,e,i,s){const n=this.findList=new o;if(t.length){let e;const{x:s,y:a}=this.point,r={x:s,y:a,radiusX:0,radiusY:0};for(let s=0,a=t.length;s<a;s++)if(e=t[s],(i||f.worldHittable(e))&&(this.hitChild(e,r),n.length)){if(e.isBranchLeaf&&t.some(t=>t!==e&&f.hasParent(t,e))){n.reset();break}return n.list[0]}}if(e)for(let t=0,i=e.length;t<i;t++)if(this.hitChild(e[t].target,this.point,e[t].proxy),n.length)return n.list[0];return s?null:i?t[0]:t.find(t=>f.worldHittable(t))}getPath(t){const e=new o,i=[],{target:s}=this;for(;t&&(t.syncEventer&&i.push(t.syncEventer),e.add(t),(t=t.parent)!==s););return i.length&&i.forEach(t=>{for(;t&&(t.__.hittable&&e.add(t),(t=t.parent)!==s););}),s&&e.add(s),e}getHitablePath(t){const e=this.getPath(t&&t.hittable?t:null);let i,s=new o;for(let t=e.list.length-1;t>-1&&(i=e.list[t],i.__.hittable)&&(s.addAt(i,0),i.__.hitChildren&&(!i.isLeafer||"draw"!==i.mode));t--);return s}getThroughPath(t){const e=new o,i=[];for(let e=t.length-1;e>-1;e--)i.push(this.getPath(t[e]));let s,n,a;for(let t=0,r=i.length;t<r;t++){s=i[t],n=i[t+1];for(let t=0,i=s.length;t<i&&(a=s.list[t],!n||!n.has(a));t++)e.add(a)}return e}hitBranch(t){this.eachFind(t.children,t.__onlyHitMask)}eachFind(t,e){let i,s;const{point:n}=this;for(let a=t.length-1;a>-1;a--)if(i=t[a],i.__.visible&&(!e||i.__.mask))if(s=!!i.__.hitRadius||Pt(i.__world,n),i.isBranch){if(s||i.__ignoreHitWorld){if(i.isBranchLeaf&&i.__.__clipAfterFill&&!i.__hitWorld(n))continue;i.topChildren&&this.eachFind(i.topChildren,!1),this.eachFind(i.children,i.__onlyHitMask),i.isBranchLeaf&&this.hitChild(i,n)}}else s&&this.hitChild(i,n)}hitChild(t,e,i){if((!this.exclude||!this.exclude.has(t))&&t.__hitWorld(e)){const{parent:s}=t;if(s&&s.__hasMask&&!t.__.mask){let i,n=[];const{children:a}=s;for(let s=0,r=a.length;s<r;s++)if(i=a[s],i.__.mask&&n.push(i),i===t){if(n&&!n.every(t=>t.__hitWorld(e)))return;break}}this.findList.add(i||t)}}clear(){this.point=null,this.findList=null,this.exclude=null}destroy(){this.clear()}}class Ot{constructor(t,e){this.config={},e&&(this.config=l.default(e,this.config)),this.picker=new Ct(this.target=t,this),this.finder=n.finder&&n.finder()}getByPoint(t,i,s){const{target:n,picker:a}=this;return e.backgrounder&&n&&n.updateLayout(),a.getByPoint(t,i,s)}hitPoint(t,e,i){return this.picker.hitPoint(t,e,i)}getBy(t,e,i,s){return this.finder?this.finder.getBy(t,e,i,s):B.need("find")}destroy(){this.picker.destroy(),this.finder&&this.finder.destroy()}}function Mt(t,e,i){t.__.__font?j.fillText(t,e,i):t.__.windingRule?e.fill(t.__.windingRule):e.fill()}function Wt(t,e,i,s,n){const a=i.__;R(t)?j.drawStrokesStyle(t,e,!1,i,s,n):(s.setStroke(t,a.__strokeWidth*e,a),s.stroke()),a.__useArrow&&j.strokeArrow(t,i,s,n)}function Dt(t,e,i,s,n){const a=i.__;R(t)?j.drawStrokesStyle(t,e,!0,i,s,n):(s.setStroke(t,a.__strokeWidth*e,a),j.drawTextStroke(i,s,n))}function Ft(t,e,i,s,n){const a=s.getSameCanvas(!0,!0);a.font=i.__.__font,Dt(t,2,i,a,n),a.blendMode="outside"===e?"destination-out":"destination-in",j.fillText(i,a,n),a.blendMode="normal",f.copyCanvasByWorld(i,s,a),a.recycle(i.__nowWorld)}Object.assign(n,{watcher:(t,e)=>new wt(t,e),layouter:(t,e)=>new Lt(t,e),renderer:(t,e,i)=>new At(t,e,i),selector:(t,e)=>new Ot(t,e)}),e.layout=Lt.fullLayout,e.render=function(t,e,i){const s=Object.assign(Object.assign({},i),{topRendering:!0});i.topList=new o,t.__render(e,i),i.topList.length&&i.topList.forEach(t=>t.__render(e,s))};const{getSpread:It,copyAndSpread:Yt,toOuterOf:Xt,getOuterOf:Ut,getByMove:Nt,move:jt,getIntersectData:qt}=k,zt={};let Gt;const{stintSet:Ht}=l,{hasTransparent:Vt}=z;function Qt(t,e,i){if(!R(e)||!1===e.visible||0===e.opacity)return;let s;const{boxBounds:n}=i.__layout;switch(e.type){case"image":s=q.image(i,t,e,n,!Gt||!Gt[e.url]);break;case"linear":s=G.linearGradient(e,n);break;case"radial":s=G.radialGradient(e,n);break;case"angular":s=G.conicGradient(e,n);break;case"solid":const{type:a,color:r,opacity:o}=e;s={type:a,style:z.string(r,o)};break;default:T(e.r)||(s={type:"solid",style:z.string(e)})}if(s&&(s.originPaint=e,A(s.style)&&Vt(s.style)&&(s.isTransparent=!0),e.style)){if(0===e.style.strokeWidth)return;s.strokeStyle=e.style}return s}const Jt={compute:function(t,e){const i=e.__,s=[];let n,a,r,o=i.__input[t];w(o)||(o=[o]),Gt=q.recycleImage(t,i);for(let i,n=0,a=o.length;n<a;n++)(i=Qt(t,o[n],e))&&(s.push(i),i.strokeStyle&&(r||(r=1),i.strokeStyle.strokeWidth&&(r=Math.max(r,i.strokeStyle.strokeWidth))));i["_"+t]=s.length?s:void 0,s.length?(s.every(t=>t.isTransparent)&&(s.some(t=>t.image)&&(n=!0),a=!0),"fill"===t?(Ht(i,"__isAlphaPixelFill",n),Ht(i,"__isTransparentFill",a)):(Ht(i,"__isAlphaPixelStroke",n),Ht(i,"__isTransparentStroke",a),Ht(i,"__hasMultiStrokeStyle",r))):i.__removePaint(t,!1)},fill:function(t,e,i,s){i.fillStyle=t,Mt(e,i,s)},fills:function(t,e,i,s){let n,a,r;for(let o=0,l=t.length;o<l;o++){if(n=t[o],a=n.originPaint,n.image){if(r?r++:r=1,q.checkImage(n,!e.__.__font,e,i,s))continue;if(!n.style){1===r&&n.image.isPlacehold&&e.drawImagePlaceholder(n,i,s);continue}}if(i.fillStyle=n.style,n.transform||a.scaleFixed){if(i.save(),n.transform&&i.transform(n.transform),a.scaleFixed){const{scaleX:t,scaleY:s}=e.getRenderScaleData(!0);(!0===a.scaleFixed||"zoom-in"===a.scaleFixed&&t>1&&s>1)&&i.scale(1/t,1/s)}a.blendMode&&(i.blendMode=a.blendMode),Mt(e,i,s),i.restore()}else a.blendMode?(i.saveBlendMode(a.blendMode),Mt(e,i,s),i.restoreBlendMode()):Mt(e,i,s)}},fillPathOrText:Mt,fillText:function(t,e,i){const s=t.__,{rows:n,decorationY:a}=s.__textDrawData;let r;s.__isPlacehold&&s.placeholderColor&&(e.fillStyle=s.placeholderColor);for(let t=0,i=n.length;t<i;t++)r=n[t],r.text?e.fillText(r.text,r.x,r.y):r.data&&r.data.forEach(t=>{e.fillText(t.char,t.x,r.y)});if(a){const{decorationColor:t,decorationHeight:i}=s.__textDrawData;t&&(e.fillStyle=t),n.forEach(t=>a.forEach(s=>e.fillRect(t.x,t.y+s,t.width,i)))}},stroke:function(t,e,i,s){const n=e.__;if(n.__strokeWidth)if(n.__font)j.strokeText(t,e,i,s);else switch(n.strokeAlign){case"center":Wt(t,1,e,i,s);break;case"inside":!function(t,e,i,s){i.save(),i.clipUI(e),Wt(t,2,e,i,s),i.restore()}(t,e,i,s);break;case"outside":!function(t,e,i,s){const n=e.__;if(n.__fillAfterStroke)Wt(t,2,e,i,s);else{const{renderBounds:a}=e.__layout,r=i.getSameCanvas(!0,!0);e.__drawRenderPath(r),Wt(t,2,e,r,s),r.clipUI(n),r.clearWorld(a),f.copyCanvasByWorld(e,i,r),r.recycle(e.__nowWorld)}}(t,e,i,s)}},strokes:function(t,e,i,s){j.stroke(t,e,i,s)},strokeText:function(t,e,i,s){switch(e.__.strokeAlign){case"center":Dt(t,1,e,i,s);break;case"inside":Ft(t,"inside",e,i,s);break;case"outside":e.__.__fillAfterStroke?Dt(t,2,e,i,s):Ft(t,"outside",e,i,s)}},drawTextStroke:function(t,e,i){let s,n=t.__.__textDrawData;const{rows:a,decorationY:r}=n;for(let t=0,i=a.length;t<i;t++)s=a[t],s.text?e.strokeText(s.text,s.x,s.y):s.data&&s.data.forEach(t=>{e.strokeText(t.char,t.x,s.y)});if(r){const{decorationHeight:t}=n;a.forEach(i=>r.forEach(s=>e.strokeRect(i.x,i.y+s,i.width,t)))}},drawStrokesStyle:function(t,e,i,s,n,a){let r;const o=s.__,{__hasMultiStrokeStyle:l}=o;l||n.setStroke(void 0,o.__strokeWidth*e,o);for(let d=0,c=t.length;d<c;d++)if(r=t[d],(!r.image||!q.checkImage(r,!1,s,n,a))&&r.style){if(l){const{strokeStyle:t}=r;t?n.setStroke(r.style,o.__getRealStrokeWidth(t)*e,o,t):n.setStroke(r.style,o.__strokeWidth*e,o)}else n.strokeStyle=r.style;r.originPaint.blendMode?(n.saveBlendMode(r.originPaint.blendMode),i?j.drawTextStroke(s,n,a):n.stroke(),n.restoreBlendMode()):i?j.drawTextStroke(s,n,a):n.stroke()}},shape:function(t,i,s){const n=i.getSameCanvas(),a=i.bounds,r=t.__nowWorld,o=t.__layout,l=t.__nowWorldShapeBounds||(t.__nowWorldShapeBounds={});let d,c,h,u,f,g;Xt(o.strokeSpread?(Yt(zt,o.boxBounds,o.strokeSpread),zt):o.boxBounds,r,l);let{scaleX:p,scaleY:_}=t.getRenderScaleData(!0);if(a.includes(l))g=n,d=f=l,c=r;else{let n;if(e.fullImageShadow)n=l;else{const t=o.renderShapeSpread?It(a,E.swapAndScale(o.renderShapeSpread,p,_)):a;n=qt(t,l)}u=a.getFitMatrix(n);let{a:w,d:y}=u;u.a<1&&(g=i.getSameCanvas(),t.__renderShape(g,s),p*=w,_*=y),f=Ut(l,u),d=Nt(f,-u.e,-u.f),c=Ut(r,u),jt(c,-u.e,-u.f);const m=s.matrix;m?(h=new L(u),h.multiply(m),w*=m.scaleX,y*=m.scaleY):h=u,h.withScale(w,y),s=Object.assign(Object.assign({},s),{matrix:h})}return t.__renderShape(n,s),{canvas:n,matrix:h,fitMatrix:u,bounds:d,renderBounds:c,worldCanvas:g,shapeBounds:f,scaleX:p,scaleY:_}}};let Zt,$t=new _;const{isSame:Kt}=k;function te(t,e,i,s,n,a){if("fill"===e&&!t.__.__naturalWidth){const e=t.__;if(e.__naturalWidth=s.width/e.pixelRatio,e.__naturalHeight=s.height/e.pixelRatio,e.__autoSide)return t.forceUpdate("width"),t.__proxyData&&(t.setProxyAttr("width",e.width),t.setProxyAttr("height",e.height)),!1}return n.data||q.createData(n,s,i,a),!0}function ee(t,e){ne(t,P.LOAD,e)}function ie(t,e){ne(t,P.LOADED,e)}function se(t,e,i){e.error=i,t.forceUpdate("surface"),ne(t,P.ERROR,e)}function ne(t,e,i){t.hasEvent(e)&&t.emitEvent(new P(e,i))}function ae(t,e){const{leafer:i}=t;i&&i.viewReady&&(i.renderer.ignore=e)}const{get:re,translate:oe}=C,le=new _,de={},ce={};function he(t,e,i,s){const n=A(t)||s?(s?i-s*e:i%e)/((s||Math.floor(i/e))-1):t;return"auto"===t&&n<0?0:n}let ue={},fe=D();const{get:ge,set:pe,rotateOfOuter:_e,translate:we,scaleOfOuter:ye,multiplyParent:me,scale:ve,rotate:xe,skew:be}=C;function Se(t,e,i,s,n,a,r,o){r&&xe(t,r),o&&be(t,o.x,o.y),n&&ve(t,n,a),we(t,e.x+i,e.y+s)}const{get:ke,scale:Be,copy:Re}=C,{getFloorScale:Ee}=O,{abs:Le}=Math;const Te={image:function(t,e,i,s,n){let a,r;const o=b.get(i);return Zt&&i===Zt.paint&&Kt(s,Zt.boxBounds)?a=Zt.leafPaint:(a={type:i.type,image:o},o.hasAlphaPixel&&(a.isTransparent=!0),Zt=o.use>1?{leafPaint:a,paint:i,boxBounds:$t.set(s)}:null),(n||o.loading)&&(r={image:o,attrName:e,attrValue:i}),o.ready?(te(t,e,i,o,a,s),n&&(ee(t,r),ie(t,r))):o.error?n&&se(t,r,o.error):(n&&(ae(t,!0),ee(t,r)),a.loadId=o.load(()=>{ae(t,!1),t.destroyed||(te(t,e,i,o,a,s)&&(o.hasAlphaPixel&&(t.__layout.hitCanvasChanged=!0),t.forceUpdate("surface")),ie(t,r)),a.loadId=void 0},e=>{ae(t,!1),se(t,r,e),a.loadId=void 0}),t.placeholderColor&&(t.placeholderDelay?setTimeout(()=>{o.ready||(o.isPlacehold=!0,t.forceUpdate("surface"))},t.placeholderDelay):o.isPlacehold=!0)),a},checkImage:function(t,i,s,n,a){const{scaleX:r,scaleY:o}=q.getImageRenderScaleData(t,s,n,a),{image:l,data:d,originPaint:c}=t,{exporting:h}=a;return!(!d||t.patternId===r+"-"+o&&!h)&&(i&&(d.repeat?i=!1:c.changeful||"miniapp"===e.name&&S.isResizing(s)||h||(i=e.image.isLarge(l,r,o))),i?(s.__.__isFastShadow&&(n.fillStyle=t.style||"#000",n.fill()),q.drawImage(t,r,o,s,n,a),!0):(!t.style||c.sync||h?q.createPattern(t,s,n,a):q.createPatternTask(t,s,n,a),!1))},drawImage:function(t,e,i,s,n,a){const{data:r,image:o}=t,{blendMode:l}=t.originPaint,{opacity:d,transform:c}=r,h=o.getFull(r.filters),u=s.__;let f,{width:g,height:p}=o;(f=c&&!c.onlyScale||u.path||u.cornerRadius)||d||l?(n.save(),f&&n.clipUI(s),l&&(n.blendMode=l),d&&(n.opacity*=d),c&&n.transform(c),n.drawImage(h,0,0,g,p),n.restore()):(r.scaleX&&(g*=r.scaleX,p*=r.scaleY),n.drawImage(h,0,0,g,p))},getImageRenderScaleData:function(t,e,i,s){const n=e.getRenderScaleData(!0,t.originPaint.scaleFixed),{data:a}=t;if(i){const{pixelRatio:t}=i;n.scaleX*=t,n.scaleY*=t}return a&&a.scaleX&&(n.scaleX*=Math.abs(a.scaleX),n.scaleY*=Math.abs(a.scaleY)),n},recycleImage:function(t,e){const i=e["_"+t];if(w(i)){let s,n,a,r,o;for(let l=0,d=i.length;l<d;l++)s=i[l],n=s.image,o=n&&n.url,o&&(a||(a={}),a[o]=!0,b.recycle(n),n.loading&&(r||(r=e.__input&&e.__input[t]||[],w(r)||(r=[r])),n.unload(i[l].loadId,!r.some(t=>t.url===o))));return a}return null},createPatternTask:function(t,e,i,s){t.patternTask||(t.patternTask=b.patternTasker.add(()=>ut(this,void 0,void 0,function*(){t.patternTask=null,i.bounds.hit(e.__nowWorld)&&q.createPattern(t,e,i,s),e.forceUpdate("surface")}),300))},createPattern:function(t,i,s,n){let{scaleX:a,scaleY:r}=q.getImageRenderScaleData(t,i,s,n),o=a+"-"+r;if(t.patternId!==o&&!i.destroyed&&(!e.image.isLarge(t.image,a,r)||t.data.repeat)){const{image:s,data:n}=t,{transform:l,gap:d}=n,c=q.getPatternFixScale(t,a,r);let h,u,f,{width:g,height:p}=s;c&&(a*=c,r*=c),g*=a,p*=r,d&&(u=d.x*a/Le(n.scaleX||1),f=d.y*r/Le(n.scaleY||1)),(l||1!==a||1!==r)&&(a*=Ee(g+(u||0)),r*=Ee(p+(f||0)),h=ke(),l&&Re(h,l),Be(h,1/a,1/r));const _=s.getCanvas(g,p,n.opacity,n.filters,u,f,i.leafer&&i.leafer.config.smooth),w=s.getPattern(_,n.repeat||e.origin.noRepeat||"no-repeat",h,t);t.style=w,t.patternId=o}},getPatternFixScale:function(t,i,s){const{image:n}=t;let a,r=e.image.maxPatternSize,o=n.width*n.height;return n.isSVG?i>1&&(a=Math.ceil(i)/i):r>o&&(r=o),(o*=i*s)>r&&(a=Math.sqrt(r/o)),a},createData:function(t,e,i,s){t.data=q.getPatternData(i,s,e)},getPatternData:function(t,e,i){t.padding&&(e=le.set(e).shrink(t.padding)),"strench"===t.mode&&(t.mode="stretch");const{width:s,height:n}=i,{opacity:a,mode:r,align:o,offset:l,scale:d,size:c,rotation:h,skew:u,clipSize:f,repeat:g,gap:p,filters:_}=t,w=e.width===s&&e.height===n,y={mode:r},m="center"!==o&&(h||0)%180==90;let v,x;switch(k.set(ce,0,0,m?n:s,m?s:n),r&&"cover"!==r&&"fit"!==r?((d||c)&&(O.getScaleData(d,c,i,de),v=de.scaleX,x=de.scaleY),(o||p||g)&&(v&&k.scale(ce,v,x,!0),o&&M.toPoint(o,ce,e,ce,!0,!0))):w&&!h||(v=x=k.getFitScale(e,ce,"fit"!==r),k.put(e,i,o,v,!1,ce),k.scale(ce,v,x,!0)),l&&W.move(ce,l),r){case"stretch":w?v&&(v=x=void 0):(v=e.width/s,x=e.height/n,q.stretchMode(y,e,v,x));break;case"normal":case"clip":if(ce.x||ce.y||v||f||h||u){let t,i;f&&(t=e.width/f.width,i=e.height/f.height),q.clipMode(y,e,ce.x,ce.y,v,x,h,u,t,i),t&&(v=v?v*t:t,x=x?x*i:i)}break;case"repeat":(!w||v||h||u)&&q.repeatMode(y,e,s,n,ce.x,ce.y,v,x,h,u,o,t.freeTransform),g||(y.repeat="repeat");const i=R(g);(p||i)&&(y.gap=function(t,e,i,s,n){let a,r;R(t)?(a=t.x,r=t.y):a=r=t;return{x:he(a,i,n.width,e&&e.x),y:he(r,s,n.height,e&&e.y)}}(p,i&&g,ce.width,ce.height,e));break;default:v&&q.fillOrFitMode(y,e,ce.x,ce.y,v,x,h)}return y.transform||(e.x||e.y)&&oe(y.transform=re(),e.x,e.y),v&&(y.scaleX=v,y.scaleY=x),a&&a<1&&(y.opacity=a),_&&(y.filters=_),g&&(y.repeat=A(g)?"x"===g?"repeat-x":"repeat-y":"repeat"),y},stretchMode:function(t,e,i,s){const n=ge(),{x:a,y:r}=e;a||r?we(n,a,r):n.onlyScale=!0,ve(n,i,s),t.transform=n},fillOrFitMode:function(t,e,i,s,n,a,r){const o=ge();we(o,e.x+i,e.y+s),ve(o,n,a),r&&_e(o,{x:e.x+e.width/2,y:e.y+e.height/2},r),t.transform=o},clipMode:function(t,e,i,s,n,a,r,o,l,d){const c=ge();Se(c,e,i,s,n,a,r,o),l&&(r||o?(pe(fe),ye(fe,e,l,d),me(c,fe)):ye(c,e,l,d)),t.transform=c},repeatMode:function(t,e,i,s,n,a,r,o,l,d,c,h){const u=ge();if(h)Se(u,e,n,a,r,o,l,d);else{if(l)if("center"===c)_e(u,{x:i/2,y:s/2},l);else switch(xe(u,l),l){case 90:we(u,s,0);break;case 180:we(u,i,s);break;case 270:we(u,0,i)}ue.x=e.x+n,ue.y=e.y+a,we(u,ue.x,ue.y),r&&ye(u,ue,r,o)}t.transform=u}},{toPoint:Ae}=F,{hasTransparent:Pe}=z,Ce={},Oe={};function Me(t,e,i,s){if(i){let n,a,r,o;for(let t=0,l=i.length;t<l;t++)n=i[t],A(n)?(r=t/(l-1),a=z.string(n,s)):(r=n.offset,a=z.string(n.color,s)),e.addColorStop(r,a),!o&&Pe(a)&&(o=!0);o&&(t.isTransparent=!0)}}const{getAngle:We,getDistance:De}=W,{get:Fe,rotateOfOuter:Ie,scaleOfOuter:Ye}=C,{toPoint:Xe}=F,Ue={},Ne={};function je(t,e,i,s,n){let a;const{width:r,height:o}=t;if(r!==o||s){const t=We(e,i);a=Fe(),n?(Ye(a,e,r/o*(s||1),1),Ie(a,e,t+90)):(Ye(a,e,1,r/o*(s||1)),Ie(a,e,t))}return a}const{getDistance:qe}=W,{toPoint:ze}=F,Ge={},He={};const Ve={linearGradient:function(t,i){let{from:s,to:n,type:a,opacity:r}=t;Ae(s||"top",i,Ce),Ae(n||"bottom",i,Oe);const o=e.canvas.createLinearGradient(Ce.x,Ce.y,Oe.x,Oe.y),l={type:a,style:o};return Me(l,o,t.stops,r),l},radialGradient:function(t,i){let{from:s,to:n,type:a,opacity:r,stretch:o}=t;Xe(s||"center",i,Ue),Xe(n||"bottom",i,Ne);const l=e.canvas.createRadialGradient(Ue.x,Ue.y,0,Ue.x,Ue.y,De(Ue,Ne)),d={type:a,style:l};Me(d,l,t.stops,r);const c=je(i,Ue,Ne,o,!0);return c&&(d.transform=c),d},conicGradient:function(t,i){let{from:s,to:n,type:a,opacity:r,stretch:o}=t;ze(s||"center",i,Ge),ze(n||"bottom",i,He);const l=e.conicGradientSupport?e.canvas.createConicGradient(0,Ge.x,Ge.y):e.canvas.createRadialGradient(Ge.x,Ge.y,0,Ge.x,Ge.y,qe(Ge,He)),d={type:a,style:l};Me(d,l,t.stops,r);const c=je(i,Ge,He,o||1,e.conicGradientRotate90);return c&&(d.transform=c),d},getTransform:je},{copy:Qe,move:Je,toOffsetOutBounds:Ze}=k,{max:$e,abs:Ke}=Math,ti={},ei=new L,ii={};function si(t,e){let i,s,n,a,r=0,o=0,l=0,d=0;return e.forEach(t=>{i=t.x||0,s=t.y||0,a=1.5*(t.blur||0),n=Ke(t.spread||0),r=$e(r,n+a-s),o=$e(o,n+a+i),l=$e(l,n+a+s),d=$e(d,n+a-i)}),r===o&&o===l&&l===d?r:[r,o,l,d]}function ni(t,i,s){const{shapeBounds:n}=s;let a,r;e.fullImageShadow?(Qe(ti,t.bounds),Je(ti,i.x-n.x,i.y-n.y),a=t.bounds,r=ti):(a=n,r=i),t.copyWorld(s.canvas,a,r)}const{toOffsetOutBounds:ai}=k,ri={};const oi=si;const li={shadow:function(t,e,i){let s,n;const{__nowWorld:a}=t,{shadow:r}=t.__,{worldCanvas:o,bounds:l,renderBounds:d,shapeBounds:c,scaleX:h,scaleY:u}=i,g=e.getSameCanvas(),p=r.length-1;Ze(l,ii,d),r.forEach((r,_)=>{let w=1;if(r.scaleFixed){const t=Math.abs(a.scaleX);t>1&&(w=1/t)}g.setWorldShadow(ii.offsetX+(r.x||0)*h*w,ii.offsetY+(r.y||0)*u*w,(r.blur||0)*h*w,z.string(r.color)),n=H.getShadowTransform(t,g,i,r,ii,w),n&&g.setTransform(n),ni(g,ii,i),n&&g.resetTransform(),s=d,r.box&&(g.restore(),g.save(),o&&(g.copyWorld(g,d,a,"copy"),s=a),o?g.copyWorld(o,a,a,"destination-out"):g.copyWorld(i.canvas,c,l,"destination-out")),f.copyCanvasByWorld(t,e,g,s,r.blendMode),p&&_<p&&g.clearWorld(s)}),g.recycle(s)},innerShadow:function(t,e,i){let s,n;const{__nowWorld:a}=t,{innerShadow:r}=t.__,{worldCanvas:o,bounds:l,renderBounds:d,shapeBounds:c,scaleX:h,scaleY:u}=i,g=e.getSameCanvas(),p=r.length-1;ai(l,ri,d),r.forEach((r,_)=>{let w=1;if(r.scaleFixed){const t=Math.abs(a.scaleX);t>1&&(w=1/t)}g.save(),g.setWorldShadow(ri.offsetX+(r.x||0)*h*w,ri.offsetY+(r.y||0)*u*w,(r.blur||0)*h*w),n=H.getShadowTransform(t,g,i,r,ri,w,!0),n&&g.setTransform(n),ni(g,ri,i),g.restore(),o?(g.copyWorld(g,d,a,"copy"),g.copyWorld(o,a,a,"source-out"),s=a):(g.copyWorld(i.canvas,c,l,"source-out"),s=d),g.fillWorld(s,z.string(r.color),"source-in"),f.copyCanvasByWorld(t,e,g,s,r.blendMode),p&&_<p&&g.clearWorld(s)}),g.recycle(s)},blur:function(t,e,i){const{blur:s}=t.__;i.setWorldBlur(s*t.__nowWorld.a),i.copyWorldToInner(e,t.__nowWorld,t.__layout.renderBounds),i.filter="none"},backgroundBlur:function(t,e,i){},getShadowRenderSpread:si,getShadowTransform:function(t,e,i,s,n,a,r){if(s.spread){const i=2*s.spread*a*(r?-1:1),{width:o,height:l}=t.__layout.strokeBounds;return ei.set().scaleOfOuter({x:(n.x+n.width/2)*e.pixelRatio,y:(n.y+n.height/2)*e.pixelRatio},1+i/o,1+i/l),ei}},isTransformShadow(t){},getInnerShadowSpread:oi},{excludeRenderBounds:di}=p;let ci;function hi(t,e,i,s,n,a,r,o){switch(e){case"grayscale":ci||(ci=!0,n.useGrayscaleAlpha(t.__nowWorld));case"alpha":!function(t,e,i,s,n,a){const r=t.__nowWorld;i.resetTransform(),i.opacity=1,i.useMask(s,r),a&&s.recycle(r);fi(t,e,i,1,n,a)}(t,i,s,n,r,o);break;case"opacity-path":fi(t,i,s,a,r,o);break;case"path":o&&i.restore()}}function ui(t){return t.getSameCanvas(!1,!0)}function fi(t,e,i,s,n,a){const r=t.__nowWorld;e.resetTransform(),e.opacity=s,e.copyWorld(i,r,void 0,n),a?i.recycle(r):i.clearWorld(r)}V.prototype.__renderMask=function(t,e){let i,s,n,a,r,o;const{children:l}=this;for(let d=0,c=l.length;d<c;d++){if(i=l[d],o=i.__.mask,o){r&&(hi(this,r,t,n,s,a,void 0,!0),s=n=null),"clipping"!==o&&"clipping-path"!==o||di(i,e)||i.__render(t,e),a=i.__.opacity,ci=!1,"path"===o||"clipping-path"===o?(a<1?(r="opacity-path",n||(n=ui(t))):(r="path",t.save()),i.__clip(n||t,e)):(r="grayscale"===o?"grayscale":"alpha",s||(s=ui(t)),n||(n=ui(t)),i.__render(s,e));continue}const c=1===a&&i.__.__blendMode;c&&hi(this,r,t,n,s,a,void 0,!1),di(i,e)||i.__render(n||t,e),c&&hi(this,r,t,n,s,a,c,!1)}hi(this,r,t,n,s,a,void 0,!0)};const gi=">)]}%!?,.:;'\"》)」〉』〗】〕}┐>’”!?,、。:;‰",pi=gi+"_#~&*+\\=|≮≯≈≠=…",_i=new RegExp([[19968,40959],[13312,19903],[131072,173791],[173824,177983],[177984,178207],[178208,183983],[183984,191471],[196608,201551],[201552,205743],[11904,12031],[12032,12255],[12272,12287],[12288,12351],[12736,12783],[12800,13055],[13056,13311],[63744,64255],[65072,65103],[127488,127743],[194560,195103]].map(([t,e])=>`[\\u${t.toString(16)}-\\u${e.toString(16)}]`).join("|"));function wi(t){const e={};return t.split("").forEach(t=>e[t]=!0),e}const yi=wi("ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyz"),mi=wi("{[(<'\"《(「〈『〖【〔{┌<‘“=¥¥$€££¢¢"),vi=wi(gi),xi=wi(pi),bi=wi("- —/~|┆·");var Si;!function(t){t[t.Letter=0]="Letter",t[t.Single=1]="Single",t[t.Before=2]="Before",t[t.After=3]="After",t[t.Symbol=4]="Symbol",t[t.Break=5]="Break"}(Si||(Si={}));const{Letter:ki,Single:Bi,Before:Ri,After:Ei,Symbol:Li,Break:Ti}=Si;function Ai(t){return yi[t]?ki:bi[t]?Ti:mi[t]?Ri:vi[t]?Ei:xi[t]?Li:_i.test(t)?Bi:ki}const Pi={trimRight(t){const{words:e}=t;let i,s=0,n=e.length;for(let a=n-1;a>-1&&(i=e[a].data[0]," "===i.char);a--)s++,t.width-=i.width;s&&e.splice(n-s,s)}};function Ci(t,e,i){switch(e){case"title":return i?t.toUpperCase():t;case"upper":return t.toUpperCase();case"lower":return t.toLowerCase();default:return t}}const{trimRight:Oi}=Pi,{Letter:Mi,Single:Wi,Before:Di,After:Fi,Symbol:Ii,Break:Yi}=Si;let Xi,Ui,Ni,ji,qi,zi,Gi,Hi,Vi,Qi,Ji,Zi,$i,Ki,ts,es,is,ss=[];function ns(t,e){Vi&&!Hi&&(Hi=Vi),Xi.data.push({char:t,width:e}),Ni+=e}function as(){ji+=Ni,Xi.width=Ni,Ui.words.push(Xi),Xi={data:[]},Ni=0}function rs(){Ki&&(ts.paraNumber++,Ui.paraStart=!0,Ki=!1),Vi&&(Ui.startCharSize=Hi,Ui.endCharSize=Vi,Hi=0),Ui.width=ji,es.width?Oi(Ui):is&&os(),ss.push(Ui),Ui={words:[]},ji=0}function os(){ji>(ts.maxWidth||0)&&(ts.maxWidth=ji)}const{top:ls,right:ds,bottom:cs,left:hs}=I;function us(t,e,i){const{bounds:s,rows:n}=t;s[e]+=i;for(let t=0;t<n.length;t++)n[t][e]+=i}const fs={getDrawData:function(t,i){A(t)||(t=String(t));let s=0,n=0,a=i.__getInput("width")||0,r=i.__getInput("height")||0;const{__padding:o}=i;o&&(a?(s=o[hs],a-=o[ds]+o[hs],!a&&(a=.01)):i.autoSizeAlign||(s=o[hs]),r?(n=o[ls],r-=o[ls]+o[cs],!r&&(r=.01)):i.autoSizeAlign||(n=o[ls]));const l={bounds:{x:s,y:n,width:a,height:r},rows:[],paraNumber:0,font:e.canvas.font=i.__font};return function(t,i,s){ts=t,ss=t.rows,es=t.bounds,is=!es.width&&!s.autoSizeAlign;const{__letterSpacing:n,paraIndent:a,textCase:r}=s,{canvas:o}=e,{width:l}=es;if(s.__isCharMode){const t="none"!==s.textWrap,e="break"===s.textWrap;Ki=!0,Ji=null,Hi=Gi=Vi=Ni=ji=0,Xi={data:[]},Ui={words:[]},n&&(i=[...i]);for(let s=0,d=i.length;s<d;s++)zi=i[s],"\n"===zi?(Ni&&as(),Ui.paraEnd=!0,rs(),Ki=!0):(Qi=Ai(zi),Qi===Mi&&"none"!==r&&(zi=Ci(zi,r,!Ni)),Gi=o.measureText(zi).width,n&&(n<0&&(Vi=Gi),Gi+=n),Zi=Qi===Wi&&(Ji===Wi||Ji===Mi)||Ji===Wi&&Qi!==Fi,$i=!(Qi!==Di&&Qi!==Wi||Ji!==Ii&&Ji!==Fi),qi=Ki&&a?l-a:l,t&&l&&ji+Ni+Gi>qi&&(e?(Ni&&as(),ji&&rs()):($i||($i=Qi===Mi&&Ji==Fi),Zi||$i||Qi===Yi||Qi===Di||Qi===Wi||Ni+Gi>qi?(Ni&&as(),ji&&rs()):ji&&rs()))," "===zi&&!0!==Ki&&ji+Ni===0||(Qi===Yi?(" "===zi&&Ni&&as(),ns(zi,Gi),as()):Zi||$i?(Ni&&as(),ns(zi,Gi)):ns(zi,Gi)),Ji=Qi);Ni&&as(),ji&&rs(),ss.length>0&&(ss[ss.length-1].paraEnd=!0)}else i.split("\n").forEach(t=>{ts.paraNumber++,ji=o.measureText(t).width,ss.push({x:a||0,text:t,width:ji,paraStart:!0}),is&&os()})}(l,t,i),o&&function(t,e,i,s,n){if(!s&&i.autoSizeAlign)switch(i.textAlign){case"left":us(e,"x",t[hs]);break;case"right":us(e,"x",-t[ds])}if(!n&&i.autoSizeAlign)switch(i.verticalAlign){case"top":us(e,"y",t[ls]);break;case"bottom":us(e,"y",-t[cs])}}(o,l,i,a,r),function(t,e){const{rows:i,bounds:s}=t,n=i.length,{__lineHeight:a,__baseLine:r,__letterSpacing:o,__clipText:l,textAlign:d,verticalAlign:c,paraSpacing:h,autoSizeAlign:u}=e;let{x:f,y:g,width:p,height:_}=s,w=a*n+(h?h*(t.paraNumber-1):0),y=r;if(l&&w>_)w=Math.max(_,a),n>1&&(t.overflow=n);else if(_||u)switch(c){case"middle":g+=(_-w)/2;break;case"bottom":g+=_-w}y+=g;let m,v,x,b=p||u?p:t.maxWidth;for(let r=0,c=n;r<c;r++){if(m=i[r],m.x=f,m.width<p||m.width>p&&!l)switch(d){case"center":m.x+=(b-m.width)/2;break;case"right":m.x+=b-m.width}m.paraStart&&h&&r>0&&(y+=h),m.y=y,y+=a,t.overflow>r&&y>w&&(m.isOverflow=!0,t.overflow=r+1),v=m.x,x=m.width,o<0&&(m.width<0?(x=-m.width+e.fontSize+o,v-=x,x+=e.fontSize):x-=o),v<s.x&&(s.x=v),x>s.width&&(s.width=x),l&&p&&p<x&&(m.isOverflow=!0,t.overflow||(t.overflow=i.length))}s.y=g,s.height=w}(l,i),i.__isCharMode&&function(t,e,i){const{rows:s}=t,{textAlign:n,paraIndent:a,letterSpacing:r}=e,o=i&&n.includes("both"),l=o||i&&n.includes("justify"),d=l&&n.includes("letter");let c,h,u,f,g,p,_,w,y,m;s.forEach(t=>{t.words&&(g=a&&t.paraStart?a:0,w=t.words.length,l&&(m=!t.paraEnd||o,h=i-t.width-g,d?f=h/(t.words.reduce((t,e)=>t+e.data.length,0)-1):u=w>1?h/(w-1):0),p=r||t.isOverflow||d?0:u?1:2,t.isOverflow&&!r&&(t.textMode=!0),2===p?(t.x+=g,function(t){t.text="",t.words.forEach(e=>{e.data.forEach(e=>{t.text+=e.char})})}(t)):(t.x+=g,c=t.x,t.data=[],t.words.forEach((e,i)=>{1===p?(_={char:"",x:c},c=function(t,e,i){return t.forEach(t=>{i.char+=t.char,e+=t.width}),e}(e.data,c,_),(t.isOverflow||" "!==_.char)&&t.data.push(_)):c=function(t,e,i,s,n){return t.forEach(t=>{(s||" "!==t.char)&&(t.x=e,i.push(t)),e+=t.width,n&&(e+=n)}),e}(e.data,c,t.data,t.isOverflow,m&&f),m&&(y=i===w-1,u?y||(c+=u,t.width+=u):f&&(t.width+=f*(e.data.length-(y?1:0))))})),t.words=null)})}(l,i,a),l.overflow&&function(t,i,s,n){if(!n)return;const{rows:a,overflow:r}=t;let{textOverflow:o}=i;if(a.splice(r),o&&"show"!==o){let t,l;"hide"===o?o="":"ellipsis"===o&&(o="...");const d=o?e.canvas.measureText(o).width:0,c=s+n-d;("none"===i.textWrap?a:[a[r-1]]).forEach(e=>{if(e.isOverflow&&e.data){let i=e.data.length-1;for(let s=i;s>-1&&(t=e.data[s],l=t.x+t.width,!(s===i&&l<c));s--){if(l<c&&" "!==t.char||!s){e.data.splice(s+1),e.width-=t.width;break}e.width-=t.width}e.width+=d,e.data.push({char:o,x:l}),e.textMode&&function(t){t.text="",t.data.forEach(e=>{t.text+=e.char}),t.data=null}(e)}})}}(l,i,s,a),"none"!==i.textDecoration&&function(t,e){let i,s=0;const{fontSize:n,textDecoration:a}=e;switch(t.decorationHeight=n/11,R(a)?(i=a.type,a.color&&(t.decorationColor=z.string(a.color)),a.offset&&(s=Math.min(.3*n,Math.max(a.offset,.15*-n)))):i=a,i){case"under":t.decorationY=[.15*n+s];break;case"delete":t.decorationY=[.35*-n];break;case"under-delete":t.decorationY=[.15*n+s,.35*-n]}}(l,i),l}};const gs={string:function(t,e){if(!t)return"#000";const i=Y(e)&&e<1;if(A(t)){if(!i||!z.object)return t;t=z.object(t)}let s=T(t.a)?1:t.a;i&&(s*=e);const n=t.r+","+t.g+","+t.b;return 1===s?"rgb("+n+")":"rgba("+n+","+s+")"}};Object.assign(Q,fs),Object.assign(z,gs),Object.assign(j,Jt),Object.assign(q,Te),Object.assign(G,Ve),Object.assign(H,li);const{setPoint:ps,addPoint:_s,toBounds:ws}=J;const ys={syncExport(t,e,i){let s;$.running=!0;try{const n=K.fileType(e),a=e.includes(".");i=K.getExportOptions(i);const{toURL:r}=tt,{download:o}=tt.origin;if("json"===n)a&&o(r(JSON.stringify(t.toJSON(i.json)),"text"),e),s={data:!!a||t.toJSON(i.json)};else if("svg"===n)a&&o(r(t.toSVG(),"svg"),e),s={data:!!a||t.toSVG()};else{let n,a,r=1,o=1;const{worldTransform:l,isLeafer:d,leafer:c,isFrame:h}=t,{slice:u,clip:f,trim:g,screenshot:p,padding:_,onCanvas:w}=i,y=et(i.smooth)?!c||c.config.smooth:i.smooth,m=i.contextSettings||(c?c.config.contextSettings:void 0),v=d&&p&&et(i.fill)?t.fill:i.fill,x=K.isOpaqueImage(e)||v,b=new it;if(p)n=!0===p?d?c.canvas.bounds:t.worldRenderBounds:p;else{let e=i.relative||(d?"inner":"local");switch(r=l.scaleX,o=l.scaleY,e){case"inner":b.set(l);break;case"local":b.set(l).divide(t.localTransform),r/=t.scaleX,o/=t.scaleY;break;case"world":r=1,o=1;break;case"page":e=c||t;default:b.set(l).divide(t.getTransform(e));const i=e.worldTransform;r/=r/i.scaleX,o/=o/i.scaleY}n=t.getBounds("render",e)}const S={scaleX:1,scaleY:1};st.getScaleData(i.scale,i.size,n,S);let k=i.pixelRatio||1,{x:B,y:R,width:E,height:L}=new Z(n).scale(S.scaleX,S.scaleY);f&&(B+=f.x,R+=f.y,E=f.width,L=f.height);const T={exporting:!0,matrix:b.scale(1/S.scaleX,1/S.scaleY).invert().translate(-B,-R).withScale(1/r*S.scaleX,1/o*S.scaleY)};let A,P=nt.canvas({width:Math.floor(E),height:Math.floor(L),pixelRatio:k,smooth:y,contextSettings:m});u&&(A=t,A.__worldOpacity=0,t=c||t,T.bounds=P.bounds),P.save();const C=h&&!et(v),O=t.get("fill");if(C&&(t.fill=""),tt.render(t,P,T),C&&(t.fill=O),P.restore(),A&&A.__updateWorldOpacity(),g){a=function(t){const{width:e,height:i}=t.view,{data:s}=t.context.getImageData(0,0,e,i);let n,a,r,o=0;for(let t=0;t<s.length;t+=4)0!==s[t+3]&&(n=o%e,a=(o-n)/e,r?_s(r,n,a):ps(r={},n,a)),o++;const l=new Z;return r&&(ws(r,l),l.scale(1/t.pixelRatio).ceil()),l}(P);const t=P,{width:e,height:i}=a,s={x:0,y:0,width:e,height:i,pixelRatio:k};P=nt.canvas(s),P.copyWorld(t,a,s),t.destroy()}if(_){const[t,e,i,s]=st.fourNumber(_),n=P,{width:a,height:r}=n;P=nt.canvas({width:a+s+e,height:r+t+i,pixelRatio:k}),P.copyWorld(n,n.bounds,{x:s,y:t,width:a,height:r}),n.destroy()}x&&P.fillWorld(P.bounds,v||"#FFFFFF","destination-over"),w&&w(P);s={data:"canvas"===e?P:P.export(e,i),width:P.pixelWidth,height:P.pixelHeight,renderBounds:n,trimBounds:a};const M=c&&c.app;M&&M.canvasManager&&M.canvasManager.clearRecycled()}}catch(t){s={data:"",error:t}}return $.running=!1,s},export(t,e,i){return $.running=!0,function(t){ms||(ms=new at);return new Promise(e=>{ms.add(()=>ut(this,void 0,void 0,function*(){return yield t(e)}),{parallel:!1})})}(s=>new Promise(n=>{const a=()=>ut(this,void 0,void 0,function*(){if(!rt.isComplete)return tt.requestRender(a);const r=$.syncExport(t,e,i);r.data instanceof Promise&&(r.data=yield r.data),s(r),n()});t.updateLayout(),vs(t);const{leafer:r}=t;r?r.waitViewCompleted(a):a()}))}};let ms;function vs(t){t.__.__needComputePaint&&t.__.__computePaint(),t.isBranch&&t.children.forEach(t=>vs(t))}const xs=ot.prototype,bs=lt.get("@leafer-in/export");xs.export=function(t,e){const{quality:i,blob:s}=K.getExportOptions(e);return t.includes(".")?this.saveAs(t,i):s?this.toBlob(t,i):this.toDataURL(t,i)},xs.toBlob=function(t,e){return new Promise(i=>{tt.origin.canvasToBolb(this.view,t,e).then(t=>{i(t)}).catch(t=>{bs.error(t),i(null)})})},xs.toDataURL=function(t,e){return tt.origin.canvasToDataURL(this.view,t,e)},xs.saveAs=function(t,e){return new Promise(i=>{tt.origin.canvasSaveAs(this.view,t,e).then(()=>{i(!0)}).catch(t=>{bs.error(t),i(!1)})})},dt.add("export"),Object.assign($,ys),ct.prototype.export=function(t,e){return $.export(this,t,e)},ct.prototype.syncExport=function(t,e){return $.syncExport(this,t,e)},Object.assign(n,{interaction:(t,e,i,s)=>new N(t,e,i,s),hitCanvas:(t,e)=>new ft(t,e),hitCanvasManager:()=>new U});export{Lt as Layouter,ft as LeaferCanvas,ht as PathNodeHandleType,Ct as Picker,At as Renderer,Ot as Selector,wt as Watcher,_t as useCanvas};
|
|
1
|
+
import{LeaferCanvasBase as t,Platform as e,canvasPatch as i,FileHelper as s,Creator as a,LeaferImage as n,defineKey as r,LeafList as o,DataHelper as l,RenderEvent as d,ChildEvent as c,WatchEvent as h,PropertyEvent as u,LeafHelper as f,BranchHelper as g,LeafBoundsHelper as p,Bounds as _,isArray as w,Debug as y,LeafLevelList as m,LayoutEvent as v,Run as x,ImageManager as b,ResizeEvent as S,BoundsHelper as k,Plugin as B,isObject as R,FourNumberHelper as L,Matrix as E,isUndefined as T,isString as P,ImageEvent as A,MatrixHelper as C,MathHelper as O,AlignHelper as M,PointHelper as W,getMatrixData as D,AroundHelper as F,Direction4 as I,isNumber as Y}from"@leafer/core";export*from"@leafer/core";export{LeaferImage}from"@leafer/core";import{writeFileSync as X}from"fs";import{HitCanvasManager as U,InteractionBase as N}from"@leafer-ui/core";export*from"@leafer-ui/core";import{Paint as q,PaintImage as j,ColorConvert as z,PaintGradient as G,Effect as H,Group as V,TextConvert as Q,TwoPointBoundsHelper as J,Bounds as Z,Export as $,FileHelper as K,Platform as tt,isUndefined as et,Matrix as it,MathHelper as st,Creator as at,TaskProcessor as nt,Resource as rt,LeaferCanvasBase as ot,Debug as lt,Plugin as dt,UI as ct}from"@leafer-ui/draw";var ht;function ut(t,e,i,s){return new(i||(i=Promise))(function(a,n){function r(t){try{l(s.next(t))}catch(t){n(t)}}function o(t){try{l(s.throw(t))}catch(t){n(t)}}function l(t){var e;t.done?a(t.value):(e=t.value,e instanceof i?e:new i(function(t){t(e)})).then(r,o)}l((s=s.apply(t,e||[])).next())})}!function(t){t[t.none=1]="none",t[t.free=2]="free",t[t.mirrorAngle=3]="mirrorAngle",t[t.mirror=4]="mirror"}(ht||(ht={})),"function"==typeof SuppressedError&&SuppressedError;class ft extends t{get allowBackgroundColor(){return!0}init(){this.__createView(),this.__createContext(),this.resize(this.config),e.roundRectPatch&&(this.context.__proto__.roundRect=null,i(this.context.__proto__))}__createView(){this.view=e.origin.createCanvas(1,1)}updateViewSize(){const{width:t,height:e,pixelRatio:i}=this;this.view.width=Math.ceil(t*i),this.view.height=Math.ceil(e*i),this.clientBounds=this.bounds}}const{mineType:gt,fileType:pt}=s;function _t(t,i){if(e.canvasType=t,!e.origin){if("skia"===t){const{Canvas:t,loadImage:s}=i;e.origin={createCanvas:(e,i,s)=>new t(e,i,s),canvasToDataURL:(t,e,i)=>t.toDataURLSync(e,{quality:i}),canvasToBolb:(t,e,i)=>t.toBuffer(e,{quality:i}),canvasSaveAs:(t,e,i)=>t.saveAs(e,{quality:i}),download(t,e){},loadImage:t=>s(e.image.getRealURL(t))},e.roundRectPatch=!0}else if("napi"===t){const{Canvas:t,loadImage:s}=i;e.origin={createCanvas:(e,i,s)=>new t(e,i,s),canvasToDataURL:(t,e,i)=>t.toDataURL(gt(e),i),canvasToBolb:(t,e,i)=>ut(this,void 0,void 0,function*(){return t.toBuffer(gt(e),i)}),canvasSaveAs:(t,e,i)=>ut(this,void 0,void 0,function*(){return X(e,t.toBuffer(gt(pt(e)),i))}),download(t,e){},loadImage:t=>s(e.image.getRealURL(t))}}e.ellipseToCurve=!0,e.event={stopDefault(t){},stopNow(t){},stop(t){}},e.canvas=a.canvas()}}Object.assign(a,{canvas:(t,e)=>new ft(t,e),image:t=>new n(t)}),e.name="node",e.backgrounder=!0,e.requestRender=function(t){setTimeout(t,16)},r(e,"devicePixelRatio",{get:()=>1}),e.conicGradientSupport=!0;class wt{get childrenChanged(){return this.hasAdd||this.hasRemove||this.hasVisible}get updatedList(){if(this.hasRemove&&this.config.usePartLayout){const t=new o;return this.__updatedList.list.forEach(e=>{e.leafer&&t.add(e)}),t}return this.__updatedList}constructor(t,e){this.totalTimes=0,this.config={},this.__updatedList=new o,this.target=t,e&&(this.config=l.default(e,this.config)),this.__listenEvents()}start(){this.disabled||(this.running=!0)}stop(){this.running=!1}disable(){this.stop(),this.__removeListenEvents(),this.disabled=!0}update(){this.changed=!0,this.running&&this.target.emit(d.REQUEST)}__onAttrChange(t){this.config.usePartLayout&&this.__updatedList.add(t.target),this.update()}__onChildEvent(t){this.config.usePartLayout&&(t.type===c.ADD?(this.hasAdd=!0,this.__pushChild(t.child)):(this.hasRemove=!0,this.__updatedList.add(t.parent))),this.update()}__pushChild(t){this.__updatedList.add(t),t.isBranch&&this.__loopChildren(t)}__loopChildren(t){const{children:e}=t;for(let t=0,i=e.length;t<i;t++)this.__pushChild(e[t])}__onRquestData(){this.target.emitEvent(new h(h.DATA,{updatedList:this.updatedList})),this.__updatedList=new o,this.totalTimes++,this.changed=this.hasVisible=this.hasRemove=this.hasAdd=!1}__listenEvents(){this.__eventIds=[this.target.on_([[u.CHANGE,this.__onAttrChange,this],[[c.ADD,c.REMOVE],this.__onChildEvent,this],[h.REQUEST,this.__onRquestData,this]])]}__removeListenEvents(){this.target.off_(this.__eventIds)}destroy(){this.target&&(this.stop(),this.__removeListenEvents(),this.target=this.__updatedList=null)}}const{updateAllMatrix:yt,updateBounds:mt,updateChange:vt}=f,{pushAllChildBranch:xt,pushAllParent:bt}=g;const{worldBounds:St}=p;class kt{constructor(t){this.updatedBounds=new _,this.beforeBounds=new _,this.afterBounds=new _,w(t)&&(t=new o(t)),this.updatedList=t}setBefore(){this.beforeBounds.setListWithFn(this.updatedList.list,St)}setAfter(){this.afterBounds.setListWithFn(this.updatedList.list,St),this.updatedBounds.setList([this.beforeBounds,this.afterBounds])}merge(t){this.updatedList.addList(t.updatedList.list),this.beforeBounds.add(t.beforeBounds),this.afterBounds.add(t.afterBounds),this.updatedBounds.add(t.updatedBounds)}destroy(){this.updatedList=null}}const{updateAllMatrix:Bt,updateAllChange:Rt}=f,Lt=y.get("Layouter");class Et{constructor(t,e){this.totalTimes=0,this.config={usePartLayout:!0},this.__levelList=new m,this.target=t,e&&(this.config=l.default(e,this.config)),this.__listenEvents()}start(){this.disabled||(this.running=!0)}stop(){this.running=!1}disable(){this.stop(),this.__removeListenEvents(),this.disabled=!0}layout(){if(this.layouting||!this.running)return;const{target:t}=this;this.times=0;try{t.emit(v.START),this.layoutOnce(),t.emitEvent(new v(v.END,this.layoutedBlocks,this.times))}catch(t){Lt.error(t)}this.layoutedBlocks=null}layoutAgain(){this.layouting?this.waitAgain=!0:this.layoutOnce()}layoutOnce(){return this.layouting?Lt.warn("layouting"):this.times>3?Lt.warn("layout max times"):(this.times++,this.totalTimes++,this.layouting=!0,this.target.emit(h.REQUEST),this.totalTimes>1&&this.config.usePartLayout?this.partLayout():this.fullLayout(),this.layouting=!1,void(this.waitAgain&&(this.waitAgain=!1,this.layoutOnce())))}partLayout(){var t;if(!(null===(t=this.__updatedList)||void 0===t?void 0:t.length))return;const e=x.start("PartLayout"),{target:i,__updatedList:s}=this,{BEFORE:a,LAYOUT:n,AFTER:r}=v,o=this.getBlocks(s);o.forEach(t=>t.setBefore()),i.emitEvent(new v(a,o,this.times)),this.extraBlock=null,s.sort(),function(t,e){let i;t.list.forEach(t=>{i=t.__layout,e.without(t)&&!i.proxyZoom&&(i.matrixChanged?(yt(t,!0),e.add(t),t.isBranch&&xt(t,e),bt(t,e)):i.boundsChanged&&(e.add(t),t.isBranch&&(t.__tempNumber=0),bt(t,e)))})}(s,this.__levelList),function(t){let e,i,s;t.sort(!0),t.levels.forEach(a=>{e=t.levelMap[a];for(let t=0,a=e.length;t<a;t++){if(i=e[t],i.isBranch&&i.__tempNumber){s=i.children;for(let t=0,e=s.length;t<e;t++)s[t].isBranch||mt(s[t])}mt(i)}})}(this.__levelList),function(t){t.list.forEach(vt)}(s),this.extraBlock&&o.push(this.extraBlock),o.forEach(t=>t.setAfter()),i.emitEvent(new v(n,o,this.times)),i.emitEvent(new v(r,o,this.times)),this.addBlocks(o),this.__levelList.reset(),this.__updatedList=null,x.end(e)}fullLayout(){const t=x.start("FullLayout"),{target:e}=this,{BEFORE:i,LAYOUT:s,AFTER:a}=v,n=this.getBlocks(new o(e));e.emitEvent(new v(i,n,this.times)),Et.fullLayout(e),n.forEach(t=>{t.setAfter()}),e.emitEvent(new v(s,n,this.times)),e.emitEvent(new v(a,n,this.times)),this.addBlocks(n),x.end(t)}static fullLayout(t){Bt(t,!0),t.isBranch?g.updateBounds(t):f.updateBounds(t),Rt(t)}addExtra(t){if(!this.__updatedList.has(t)){const{updatedList:e,beforeBounds:i}=this.extraBlock||(this.extraBlock=new kt([]));e.length?i.add(t.__world):i.set(t.__world),e.add(t)}}createBlock(t){return new kt(t)}getBlocks(t){return[this.createBlock(t)]}addBlocks(t){this.layoutedBlocks?this.layoutedBlocks.push(...t):this.layoutedBlocks=t}__onReceiveWatchData(t){this.__updatedList=t.data.updatedList}__listenEvents(){this.__eventIds=[this.target.on_([[v.REQUEST,this.layout,this],[v.AGAIN,this.layoutAgain,this],[h.DATA,this.__onReceiveWatchData,this]])]}__removeListenEvents(){this.target.off_(this.__eventIds)}destroy(){this.target&&(this.stop(),this.__removeListenEvents(),this.target=this.config=null)}}const Tt=y.get("Renderer");class Pt{get needFill(){return!(this.canvas.allowBackgroundColor||!this.config.fill)}constructor(t,e,i){this.FPS=60,this.totalTimes=0,this.times=0,this.config={usePartRender:!0,maxFPS:120},this.frames=[],this.target=t,this.canvas=e,i&&(this.config=l.default(i,this.config)),this.__listenEvents()}start(){this.running=!0,this.update(!1)}stop(){this.running=!1}update(t=!0){this.changed||(this.changed=t),this.requestTime||this.__requestRender()}requestLayout(){this.target.emit(v.REQUEST)}checkRender(){if(this.running){const{target:t}=this;t.isApp&&(t.emit(d.CHILD_START,t),t.children.forEach(t=>{t.renderer.FPS=this.FPS,t.renderer.checkRender()}),t.emit(d.CHILD_END,t)),this.changed&&this.canvas.view&&this.render(),this.target.emit(d.NEXT)}}render(t){if(!this.running||!this.canvas.view)return this.update();const{target:e}=this;this.times=0,this.totalBounds=new _,Tt.log(e.innerName,"---\x3e");try{this.emitRender(d.START),this.renderOnce(t),this.emitRender(d.END,this.totalBounds),b.clearRecycled()}catch(t){this.rendering=!1,Tt.error(t)}Tt.log("-------------|")}renderAgain(){this.rendering?this.waitAgain=!0:this.renderOnce()}renderOnce(t){if(this.rendering)return Tt.warn("rendering");if(this.times>3)return Tt.warn("render max times");if(this.times++,this.totalTimes++,this.rendering=!0,this.changed=!1,this.renderBounds=new _,this.renderOptions={},t)this.emitRender(d.BEFORE),t();else{if(this.requestLayout(),this.ignore)return void(this.ignore=this.rendering=!1);this.emitRender(d.BEFORE),this.config.usePartRender&&this.totalTimes>1?this.partRender():this.fullRender()}this.emitRender(d.RENDER,this.renderBounds,this.renderOptions),this.emitRender(d.AFTER,this.renderBounds,this.renderOptions),this.updateBlocks=null,this.rendering=!1,this.waitAgain&&(this.waitAgain=!1,this.renderOnce())}partRender(){const{canvas:t,updateBlocks:e}=this;e&&(this.mergeBlocks(),e.forEach(e=>{t.bounds.hit(e)&&!e.isEmpty()&&this.clipRender(e)}))}clipRender(t){const e=x.start("PartRender"),{canvas:i}=this,s=t.getIntersect(i.bounds),a=new _(s);i.save(),s.spread(Pt.clipSpread).ceil(),i.clearWorld(s),i.clipWorld(s),this.__render(s,a),i.restore(),x.end(e)}fullRender(){const t=x.start("FullRender"),{canvas:e}=this;e.save(),e.clear(),this.__render(e.bounds),e.restore(),x.end(t)}__render(t,i){const{canvas:s,target:a}=this,n=t.includes(a.__world),r=n?{includes:n}:{bounds:t,includes:n};this.needFill&&s.fillWorld(t,this.config.fill),y.showRepaint&&y.drawRepaint(s,t),this.config.useCellRender&&(r.cellList=this.getCellList()),e.render(a,s,r),this.renderBounds=i=i||t,this.renderOptions=r,this.totalBounds.isEmpty()?this.totalBounds=i:this.totalBounds.add(i),s.updateRender(i)}getCellList(){}addBlock(t){this.updateBlocks||(this.updateBlocks=[]),this.updateBlocks.push(t)}mergeBlocks(){const{updateBlocks:t}=this;if(t){const e=new _;e.setList(t),t.length=0,t.push(e)}}__requestRender(){const t=this.target;if(this.requestTime||!t)return;if(t.parentApp)return t.parentApp.requestRender(!1);this.requestTime=this.frameTime||Date.now();const i=()=>{const t=1e3/((this.frameTime=Date.now())-this.requestTime),{maxFPS:s}=this.config;if(s&&t>s)return e.requestRender(i);const{frames:a}=this;a.length>30&&a.shift(),a.push(t),this.FPS=Math.round(a.reduce((t,e)=>t+e,0)/a.length),this.requestTime=0,this.checkRender()};e.requestRender(i)}__onResize(t){if(!this.canvas.unreal){if(t.bigger||!t.samePixelRatio){const{width:e,height:i}=t.old;if(!new _(0,0,e,i).includes(this.target.__world)||this.needFill||!t.samePixelRatio)return this.addBlock(this.canvas.bounds),void this.target.forceUpdate("surface")}this.addBlock(new _(0,0,1,1)),this.update()}}__onLayoutEnd(t){t.data&&t.data.map(t=>{let e;t.updatedList&&t.updatedList.list.some(t=>(e=!t.__world.width||!t.__world.height,e&&(t.isLeafer||Tt.tip(t.innerName,": empty"),e=!t.isBranch||t.isBranchLeaf),e)),this.addBlock(e?this.canvas.bounds:t.updatedBounds)})}emitRender(t,e,i){this.target.emitEvent(new d(t,this.times,e,i))}__listenEvents(){this.__eventIds=[this.target.on_([[d.REQUEST,this.update,this],[v.END,this.__onLayoutEnd,this],[d.AGAIN,this.renderAgain,this],[S.RESIZE,this.__onResize,this]])]}__removeListenEvents(){this.target.off_(this.__eventIds)}destroy(){this.target&&(this.stop(),this.__removeListenEvents(),this.config={},this.target=this.canvas=null)}}Pt.clipSpread=10;const{hitRadiusPoint:At}=k;class Ct{constructor(t,e){this.target=t,this.selector=e}getByPoint(t,e,i){e||(e=0),i||(i={});const s=i.through||!1,a=i.ignoreHittable||!1,n=i.target||this.target;this.exclude=i.exclude||null,this.point={x:t.x,y:t.y,radiusX:e,radiusY:e},this.findList=new o(i.findList),i.findList||this.hitBranch(n.isBranchLeaf?{children:[n]}:n);const{list:r}=this.findList,l=this.getBestMatchLeaf(r,i.bottomList,a,!!i.findList),d=a?this.getPath(l):this.getHitablePath(l);return this.clear(),s?{path:d,target:l,throughPath:r.length?this.getThroughPath(r):d}:{path:d,target:l}}hitPoint(t,e,i){return!!this.getByPoint(t,e,i).target}getBestMatchLeaf(t,e,i,s){const a=this.findList=new o;if(t.length){let e;const{x:s,y:n}=this.point,r={x:s,y:n,radiusX:0,radiusY:0};for(let s=0,n=t.length;s<n;s++)if(e=t[s],(i||f.worldHittable(e))&&(this.hitChild(e,r),a.length)){if(e.isBranchLeaf&&t.some(t=>t!==e&&f.hasParent(t,e))){a.reset();break}return a.list[0]}}if(e)for(let t=0,i=e.length;t<i;t++)if(this.hitChild(e[t].target,this.point,e[t].proxy),a.length)return a.list[0];return s?null:i?t[0]:t.find(t=>f.worldHittable(t))}getPath(t){const e=new o,i=[],{target:s}=this;for(;t&&(t.syncEventer&&i.push(t.syncEventer),e.add(t),(t=t.parent)!==s););return i.length&&i.forEach(t=>{for(;t&&(t.__.hittable&&e.add(t),(t=t.parent)!==s););}),s&&e.add(s),e}getHitablePath(t){const e=this.getPath(t&&t.hittable?t:null);let i,s=new o;for(let t=e.list.length-1;t>-1&&(i=e.list[t],i.__.hittable)&&(s.addAt(i,0),i.__.hitChildren&&(!i.isLeafer||"draw"!==i.mode));t--);return s}getThroughPath(t){const e=new o,i=[];for(let e=t.length-1;e>-1;e--)i.push(this.getPath(t[e]));let s,a,n;for(let t=0,r=i.length;t<r;t++){s=i[t],a=i[t+1];for(let t=0,i=s.length;t<i&&(n=s.list[t],!a||!a.has(n));t++)e.add(n)}return e}hitBranch(t){this.eachFind(t.children,t.__onlyHitMask)}eachFind(t,e){let i,s;const{point:a}=this;for(let n=t.length-1;n>-1;n--)if(i=t[n],i.__.visible&&(!e||i.__.mask))if(s=!!i.__.hitRadius||At(i.__world,a),i.isBranch){if(s||i.__ignoreHitWorld){if(i.isBranchLeaf&&i.__.__clipAfterFill&&!i.__hitWorld(a))continue;i.topChildren&&this.eachFind(i.topChildren,!1),this.eachFind(i.children,i.__onlyHitMask),i.isBranchLeaf&&this.hitChild(i,a)}}else s&&this.hitChild(i,a)}hitChild(t,e,i){if((!this.exclude||!this.exclude.has(t))&&t.__hitWorld(e)){const{parent:s}=t;if(s&&s.__hasMask&&!t.__.mask){let i,a=[];const{children:n}=s;for(let s=0,r=n.length;s<r;s++)if(i=n[s],i.__.mask&&a.push(i),i===t){if(a&&!a.every(t=>t.__hitWorld(e)))return;break}}this.findList.add(i||t)}}clear(){this.point=null,this.findList=null,this.exclude=null}destroy(){this.clear()}}class Ot{constructor(t,e){this.config={},e&&(this.config=l.default(e,this.config)),this.picker=new Ct(this.target=t,this),this.finder=a.finder&&a.finder()}getByPoint(t,i,s){const{target:a,picker:n}=this;return e.backgrounder&&a&&a.updateLayout(),n.getByPoint(t,i,s)}hitPoint(t,e,i){return this.picker.hitPoint(t,e,i)}getBy(t,e,i,s){return this.finder?this.finder.getBy(t,e,i,s):B.need("find")}destroy(){this.picker.destroy(),this.finder&&this.finder.destroy()}}function Mt(t,e,i){t.__.__font?q.fillText(t,e,i):t.__.windingRule?e.fill(t.__.windingRule):e.fill()}function Wt(t,e,i,s,a){const n=i.__;R(t)?q.drawStrokesStyle(t,e,!1,i,s,a):(s.setStroke(t,n.__strokeWidth*e,n),s.stroke()),n.__useArrow&&q.strokeArrow(t,i,s,a)}function Dt(t,e,i,s,a){const n=i.__;R(t)?q.drawStrokesStyle(t,e,!0,i,s,a):(s.setStroke(t,n.__strokeWidth*e,n),q.drawTextStroke(i,s,a))}function Ft(t,e,i,s,a){const n=s.getSameCanvas(!0,!0);n.font=i.__.__font,Dt(t,2,i,n,a),n.blendMode="outside"===e?"destination-out":"destination-in",q.fillText(i,n,a),n.blendMode="normal",f.copyCanvasByWorld(i,s,n),n.recycle(i.__nowWorld)}Object.assign(a,{watcher:(t,e)=>new wt(t,e),layouter:(t,e)=>new Et(t,e),renderer:(t,e,i)=>new Pt(t,e,i),selector:(t,e)=>new Ot(t,e)}),e.layout=Et.fullLayout,e.render=function(t,e,i){const s=Object.assign(Object.assign({},i),{topRendering:!0});i.topList=new o,t.__render(e,i),i.topList.length&&i.topList.forEach(t=>t.__render(e,s))};const{getSpread:It,copyAndSpread:Yt,toOuterOf:Xt,getOuterOf:Ut,getByMove:Nt,move:qt,getIntersectData:jt}=k,zt={};let Gt;const{stintSet:Ht}=l,{hasTransparent:Vt}=z;function Qt(t,e,i){if(!R(e)||!1===e.visible||0===e.opacity)return;let s;const{boxBounds:a}=i.__layout;switch(e.type){case"image":if(!e.url)return;s=j.image(i,t,e,a,!Gt||!Gt[e.url]);break;case"linear":s=G.linearGradient(e,a);break;case"radial":s=G.radialGradient(e,a);break;case"angular":s=G.conicGradient(e,a);break;case"solid":const{type:n,color:r,opacity:o}=e;s={type:n,style:z.string(r,o)};break;default:T(e.r)||(s={type:"solid",style:z.string(e)})}if(s&&(s.originPaint=e,P(s.style)&&Vt(s.style)&&(s.isTransparent=!0),e.style)){if(0===e.style.strokeWidth)return;s.strokeStyle=e.style}return s}const Jt={compute:function(t,e){const i=e.__,s=[];let a,n,r,o=i.__input[t];w(o)||(o=[o]),Gt=j.recycleImage(t,i);for(let i,a=0,n=o.length;a<n;a++)(i=Qt(t,o[a],e))&&(s.push(i),i.strokeStyle&&(r||(r=1),i.strokeStyle.strokeWidth&&(r=Math.max(r,i.strokeStyle.strokeWidth))));i["_"+t]=s.length?s:void 0,s.length?(s.every(t=>t.isTransparent)&&(s.some(t=>t.image)&&(a=!0),n=!0),"fill"===t?(Ht(i,"__isAlphaPixelFill",a),Ht(i,"__isTransparentFill",n)):(Ht(i,"__isAlphaPixelStroke",a),Ht(i,"__isTransparentStroke",n),Ht(i,"__hasMultiStrokeStyle",r))):i.__removePaint(t,!1)},fill:function(t,e,i,s){i.fillStyle=t,Mt(e,i,s)},fills:function(t,e,i,s){let a,n,r;for(let o=0,l=t.length;o<l;o++){if(a=t[o],n=a.originPaint,a.image){if(r?r++:r=1,j.checkImage(a,!e.__.__font,e,i,s))continue;if(!a.style){1===r&&a.image.isPlacehold&&e.drawImagePlaceholder(a,i,s);continue}}if(i.fillStyle=a.style,a.transform||n.scaleFixed){if(i.save(),a.transform&&i.transform(a.transform),n.scaleFixed){const{scaleX:t,scaleY:s}=e.getRenderScaleData(!0);(!0===n.scaleFixed||"zoom-in"===n.scaleFixed&&t>1&&s>1)&&i.scale(1/t,1/s)}n.blendMode&&(i.blendMode=n.blendMode),Mt(e,i,s),i.restore()}else n.blendMode?(i.saveBlendMode(n.blendMode),Mt(e,i,s),i.restoreBlendMode()):Mt(e,i,s)}},fillPathOrText:Mt,fillText:function(t,e,i){const s=t.__,{rows:a,decorationY:n}=s.__textDrawData;let r;s.__isPlacehold&&s.placeholderColor&&(e.fillStyle=s.placeholderColor);for(let t=0,i=a.length;t<i;t++)r=a[t],r.text?e.fillText(r.text,r.x,r.y):r.data&&r.data.forEach(t=>{e.fillText(t.char,t.x,r.y)});if(n){const{decorationColor:t,decorationHeight:i}=s.__textDrawData;t&&(e.fillStyle=t),a.forEach(t=>n.forEach(s=>e.fillRect(t.x,t.y+s,t.width,i)))}},stroke:function(t,e,i,s){const a=e.__;if(a.__strokeWidth)if(a.__font)q.strokeText(t,e,i,s);else switch(a.strokeAlign){case"center":Wt(t,1,e,i,s);break;case"inside":!function(t,e,i,s){i.save(),i.clipUI(e),Wt(t,2,e,i,s),i.restore()}(t,e,i,s);break;case"outside":!function(t,e,i,s){const a=e.__;if(a.__fillAfterStroke)Wt(t,2,e,i,s);else{const{renderBounds:n}=e.__layout,r=i.getSameCanvas(!0,!0);e.__drawRenderPath(r),Wt(t,2,e,r,s),r.clipUI(a),r.clearWorld(n),f.copyCanvasByWorld(e,i,r),r.recycle(e.__nowWorld)}}(t,e,i,s)}},strokes:function(t,e,i,s){q.stroke(t,e,i,s)},strokeText:function(t,e,i,s){switch(e.__.strokeAlign){case"center":Dt(t,1,e,i,s);break;case"inside":Ft(t,"inside",e,i,s);break;case"outside":e.__.__fillAfterStroke?Dt(t,2,e,i,s):Ft(t,"outside",e,i,s)}},drawTextStroke:function(t,e,i){let s,a=t.__.__textDrawData;const{rows:n,decorationY:r}=a;for(let t=0,i=n.length;t<i;t++)s=n[t],s.text?e.strokeText(s.text,s.x,s.y):s.data&&s.data.forEach(t=>{e.strokeText(t.char,t.x,s.y)});if(r){const{decorationHeight:t}=a;n.forEach(i=>r.forEach(s=>e.strokeRect(i.x,i.y+s,i.width,t)))}},drawStrokesStyle:function(t,e,i,s,a,n){let r;const o=s.__,{__hasMultiStrokeStyle:l}=o;l||a.setStroke(void 0,o.__strokeWidth*e,o);for(let d=0,c=t.length;d<c;d++)if(r=t[d],(!r.image||!j.checkImage(r,!1,s,a,n))&&r.style){if(l){const{strokeStyle:t}=r;t?a.setStroke(r.style,o.__getRealStrokeWidth(t)*e,o,t):a.setStroke(r.style,o.__strokeWidth*e,o)}else a.strokeStyle=r.style;r.originPaint.blendMode?(a.saveBlendMode(r.originPaint.blendMode),i?q.drawTextStroke(s,a,n):a.stroke(),a.restoreBlendMode()):i?q.drawTextStroke(s,a,n):a.stroke()}},shape:function(t,i,s){const a=i.getSameCanvas(),n=i.bounds,r=t.__nowWorld,o=t.__layout,l=t.__nowWorldShapeBounds||(t.__nowWorldShapeBounds={});let d,c,h,u,f,g;Xt(o.strokeSpread?(Yt(zt,o.boxBounds,o.strokeSpread),zt):o.boxBounds,r,l);let{scaleX:p,scaleY:_}=t.getRenderScaleData(!0);if(n.includes(l))g=a,d=f=l,c=r;else{let a;if(e.fullImageShadow)a=l;else{const t=o.renderShapeSpread?It(n,L.swapAndScale(o.renderShapeSpread,p,_)):n;a=jt(t,l)}u=n.getFitMatrix(a);let{a:w,d:y}=u;u.a<1&&(g=i.getSameCanvas(),t.__renderShape(g,s),p*=w,_*=y),f=Ut(l,u),d=Nt(f,-u.e,-u.f),c=Ut(r,u),qt(c,-u.e,-u.f);const m=s.matrix;m?(h=new E(u),h.multiply(m),w*=m.scaleX,y*=m.scaleY):h=u,h.withScale(w,y),s=Object.assign(Object.assign({},s),{matrix:h})}return t.__renderShape(a,s),{canvas:a,matrix:h,fitMatrix:u,bounds:d,renderBounds:c,worldCanvas:g,shapeBounds:f,scaleX:p,scaleY:_}}};let Zt,$t=new _;const{isSame:Kt}=k;function te(t,e,i,s,a,n){if("fill"===e&&!t.__.__naturalWidth){const e=t.__;if(e.__naturalWidth=s.width/e.pixelRatio,e.__naturalHeight=s.height/e.pixelRatio,e.__autoSide)return t.forceUpdate("width"),t.__proxyData&&(t.setProxyAttr("width",e.width),t.setProxyAttr("height",e.height)),!1}return a.data||j.createData(a,s,i,n),!0}function ee(t,e){ae(t,A.LOAD,e)}function ie(t,e){ae(t,A.LOADED,e)}function se(t,e,i){e.error=i,t.forceUpdate("surface"),ae(t,A.ERROR,e)}function ae(t,e,i){t.hasEvent(e)&&t.emitEvent(new A(e,i))}function ne(t,e){const{leafer:i}=t;i&&i.viewReady&&(i.renderer.ignore=e)}const{get:re,translate:oe}=C,le=new _,de={},ce={};function he(t,e,i,s){const a=P(t)||s?(s?i-s*e:i%e)/((s||Math.floor(i/e))-1):t;return"auto"===t&&a<0?0:a}let ue={},fe=D();const{get:ge,set:pe,rotateOfOuter:_e,translate:we,scaleOfOuter:ye,multiplyParent:me,scale:ve,rotate:xe,skew:be}=C;function Se(t,e,i,s,a,n,r,o){r&&xe(t,r),o&&be(t,o.x,o.y),a&&ve(t,a,n),we(t,e.x+i,e.y+s)}const{get:ke,scale:Be,copy:Re}=C,{getFloorScale:Le}=O,{abs:Ee}=Math;const Te={image:function(t,e,i,s,a){let n,r;const o=b.get(i);return Zt&&i===Zt.paint&&Kt(s,Zt.boxBounds)?n=Zt.leafPaint:(n={type:i.type,image:o},o.hasAlphaPixel&&(n.isTransparent=!0),Zt=o.use>1?{leafPaint:n,paint:i,boxBounds:$t.set(s)}:null),(a||o.loading)&&(r={image:o,attrName:e,attrValue:i}),o.ready?(te(t,e,i,o,n,s),a&&(ee(t,r),ie(t,r))):o.error?a&&se(t,r,o.error):(a&&(ne(t,!0),ee(t,r)),n.loadId=o.load(()=>{ne(t,!1),t.destroyed||(te(t,e,i,o,n,s)&&(o.hasAlphaPixel&&(t.__layout.hitCanvasChanged=!0),t.forceUpdate("surface")),ie(t,r)),n.loadId=void 0},e=>{ne(t,!1),se(t,r,e),n.loadId=void 0}),t.placeholderColor&&(t.placeholderDelay?setTimeout(()=>{o.ready||(o.isPlacehold=!0,t.forceUpdate("surface"))},t.placeholderDelay):o.isPlacehold=!0)),n},checkImage:function(t,i,s,a,n){const{scaleX:r,scaleY:o}=j.getImageRenderScaleData(t,s,a,n),{image:l,data:d,originPaint:c}=t,{exporting:h}=n;return!(!d||t.patternId===r+"-"+o&&!h)&&(i&&(d.repeat?i=!1:c.changeful||"miniapp"===e.name&&S.isResizing(s)||h||(i=e.image.isLarge(l,r,o)||l.width*r>8096||l.height*o>8096)),i?(s.__.__isFastShadow&&(a.fillStyle=t.style||"#000",a.fill()),j.drawImage(t,r,o,s,a,n),!0):(!t.style||c.sync||h?j.createPattern(t,s,a,n):j.createPatternTask(t,s,a,n),!1))},drawImage:function(t,e,i,s,a,n){const{data:r,image:o}=t,{blendMode:l}=t.originPaint,{opacity:d,transform:c}=r,h=o.getFull(r.filters),u=s.__;let f,{width:g,height:p}=o;(f=c&&!c.onlyScale||u.path||u.cornerRadius)||d||l?(a.save(),f&&a.clipUI(s),l&&(a.blendMode=l),d&&(a.opacity*=d),c&&a.transform(c),a.drawImage(h,0,0,g,p),a.restore()):(r.scaleX&&(g*=r.scaleX,p*=r.scaleY),a.drawImage(h,0,0,g,p))},getImageRenderScaleData:function(t,e,i,s){const a=e.getRenderScaleData(!0,t.originPaint.scaleFixed),{data:n}=t;if(i){const{pixelRatio:t}=i;a.scaleX*=t,a.scaleY*=t}return n&&n.scaleX&&(a.scaleX*=Math.abs(n.scaleX),a.scaleY*=Math.abs(n.scaleY)),a},recycleImage:function(t,e){const i=e["_"+t];if(w(i)){let s,a,n,r,o;for(let l=0,d=i.length;l<d;l++)s=i[l],a=s.image,o=a&&a.url,o&&(n||(n={}),n[o]=!0,b.recyclePaint(s),a.loading&&(r||(r=e.__input&&e.__input[t]||[],w(r)||(r=[r])),a.unload(i[l].loadId,!r.some(t=>t.url===o))));return n}return null},createPatternTask:function(t,e,i,s){t.patternTask||(t.patternTask=b.patternTasker.add(()=>ut(this,void 0,void 0,function*(){t.patternTask=null,i.bounds.hit(e.__nowWorld)&&j.createPattern(t,e,i,s),e.forceUpdate("surface")}),300))},createPattern:function(t,i,s,a){let{scaleX:n,scaleY:r}=j.getImageRenderScaleData(t,i,s,a),o=n+"-"+r;if(t.patternId!==o&&!i.destroyed&&(!e.image.isLarge(t.image,n,r)||t.data.repeat)){const{image:s,data:a}=t,{transform:l,gap:d}=a,c=j.getPatternFixScale(t,n,r);let h,u,f,{width:g,height:p}=s;c&&(n*=c,r*=c),g*=n,p*=r,d&&(u=d.x*n/Ee(a.scaleX||1),f=d.y*r/Ee(a.scaleY||1)),(l||1!==n||1!==r)&&(n*=Le(g+(u||0)),r*=Le(p+(f||0)),h=ke(),l&&Re(h,l),Be(h,1/n,1/r));const _=s.getCanvas(g,p,a.opacity,a.filters,u,f,i.leafer&&i.leafer.config.smooth),w=s.getPattern(_,a.repeat||e.origin.noRepeat||"no-repeat",h,t);t.style=w,t.patternId=o}},getPatternFixScale:function(t,i,s){const{image:a}=t;let n,r=e.image.maxPatternSize,o=a.width*a.height;return a.isSVG?i>1&&(n=Math.ceil(i)/i):r>o&&(r=o),(o*=i*s)>r&&(n=Math.sqrt(r/o)),n},createData:function(t,e,i,s){t.data=j.getPatternData(i,s,e)},getPatternData:function(t,e,i){t.padding&&(e=le.set(e).shrink(t.padding)),"strench"===t.mode&&(t.mode="stretch");const{width:s,height:a}=i,{opacity:n,mode:r,align:o,offset:l,scale:d,size:c,rotation:h,skew:u,clipSize:f,repeat:g,gap:p,filters:_}=t,w=e.width===s&&e.height===a,y={mode:r},m="center"!==o&&(h||0)%180==90;let v,x;switch(k.set(ce,0,0,m?a:s,m?s:a),r&&"cover"!==r&&"fit"!==r?((d||c)&&(O.getScaleData(d,c,i,de),v=de.scaleX,x=de.scaleY),(o||p||g)&&(v&&k.scale(ce,v,x,!0),o&&M.toPoint(o,ce,e,ce,!0,!0))):w&&!h||(v=x=k.getFitScale(e,ce,"fit"!==r),k.put(e,i,o,v,!1,ce),k.scale(ce,v,x,!0)),l&&W.move(ce,l),r){case"stretch":w?v&&(v=x=void 0):(v=e.width/s,x=e.height/a,j.stretchMode(y,e,v,x));break;case"normal":case"clip":if(ce.x||ce.y||v||f||h||u){let t,i;f&&(t=e.width/f.width,i=e.height/f.height),j.clipMode(y,e,ce.x,ce.y,v,x,h,u,t,i),t&&(v=v?v*t:t,x=x?x*i:i)}break;case"repeat":(!w||v||h||u)&&j.repeatMode(y,e,s,a,ce.x,ce.y,v,x,h,u,o,t.freeTransform),g||(y.repeat="repeat");const i=R(g);(p||i)&&(y.gap=function(t,e,i,s,a){let n,r;R(t)?(n=t.x,r=t.y):n=r=t;return{x:he(n,i,a.width,e&&e.x),y:he(r,s,a.height,e&&e.y)}}(p,i&&g,ce.width,ce.height,e));break;default:v&&j.fillOrFitMode(y,e,ce.x,ce.y,v,x,h)}return y.transform||(e.x||e.y)&&oe(y.transform=re(),e.x,e.y),v&&(y.scaleX=v,y.scaleY=x),n&&n<1&&(y.opacity=n),_&&(y.filters=_),g&&(y.repeat=P(g)?"x"===g?"repeat-x":"repeat-y":"repeat"),y},stretchMode:function(t,e,i,s){const a=ge(),{x:n,y:r}=e;n||r?we(a,n,r):a.onlyScale=!0,ve(a,i,s),t.transform=a},fillOrFitMode:function(t,e,i,s,a,n,r){const o=ge();we(o,e.x+i,e.y+s),ve(o,a,n),r&&_e(o,{x:e.x+e.width/2,y:e.y+e.height/2},r),t.transform=o},clipMode:function(t,e,i,s,a,n,r,o,l,d){const c=ge();Se(c,e,i,s,a,n,r,o),l&&(r||o?(pe(fe),ye(fe,e,l,d),me(c,fe)):ye(c,e,l,d)),t.transform=c},repeatMode:function(t,e,i,s,a,n,r,o,l,d,c,h){const u=ge();if(h)Se(u,e,a,n,r,o,l,d);else{if(l)if("center"===c)_e(u,{x:i/2,y:s/2},l);else switch(xe(u,l),l){case 90:we(u,s,0);break;case 180:we(u,i,s);break;case 270:we(u,0,i)}ue.x=e.x+a,ue.y=e.y+n,we(u,ue.x,ue.y),r&&ye(u,ue,r,o)}t.transform=u}},{toPoint:Pe}=F,{hasTransparent:Ae}=z,Ce={},Oe={};function Me(t,e,i,s){if(i){let a,n,r,o;for(let t=0,l=i.length;t<l;t++)a=i[t],P(a)?(r=t/(l-1),n=z.string(a,s)):(r=a.offset,n=z.string(a.color,s)),e.addColorStop(r,n),!o&&Ae(n)&&(o=!0);o&&(t.isTransparent=!0)}}const{getAngle:We,getDistance:De}=W,{get:Fe,rotateOfOuter:Ie,scaleOfOuter:Ye}=C,{toPoint:Xe}=F,Ue={},Ne={};function qe(t,e,i,s,a){let n;const{width:r,height:o}=t;if(r!==o||s){const t=We(e,i);n=Fe(),a?(Ye(n,e,r/o*(s||1),1),Ie(n,e,t+90)):(Ye(n,e,1,r/o*(s||1)),Ie(n,e,t))}return n}const{getDistance:je}=W,{toPoint:ze}=F,Ge={},He={};const Ve={linearGradient:function(t,i){let{from:s,to:a,type:n,opacity:r}=t;Pe(s||"top",i,Ce),Pe(a||"bottom",i,Oe);const o=e.canvas.createLinearGradient(Ce.x,Ce.y,Oe.x,Oe.y),l={type:n,style:o};return Me(l,o,t.stops,r),l},radialGradient:function(t,i){let{from:s,to:a,type:n,opacity:r,stretch:o}=t;Xe(s||"center",i,Ue),Xe(a||"bottom",i,Ne);const l=e.canvas.createRadialGradient(Ue.x,Ue.y,0,Ue.x,Ue.y,De(Ue,Ne)),d={type:n,style:l};Me(d,l,t.stops,r);const c=qe(i,Ue,Ne,o,!0);return c&&(d.transform=c),d},conicGradient:function(t,i){let{from:s,to:a,type:n,opacity:r,stretch:o}=t;ze(s||"center",i,Ge),ze(a||"bottom",i,He);const l=e.conicGradientSupport?e.canvas.createConicGradient(0,Ge.x,Ge.y):e.canvas.createRadialGradient(Ge.x,Ge.y,0,Ge.x,Ge.y,je(Ge,He)),d={type:n,style:l};Me(d,l,t.stops,r);const c=qe(i,Ge,He,o||1,e.conicGradientRotate90);return c&&(d.transform=c),d},getTransform:qe},{copy:Qe,move:Je,toOffsetOutBounds:Ze}=k,{max:$e,abs:Ke}=Math,ti={},ei=new E,ii={};function si(t,e){let i,s,a,n,r=0,o=0,l=0,d=0;return e.forEach(t=>{i=t.x||0,s=t.y||0,n=1.5*(t.blur||0),a=Ke(t.spread||0),r=$e(r,a+n-s),o=$e(o,a+n+i),l=$e(l,a+n+s),d=$e(d,a+n-i)}),r===o&&o===l&&l===d?r:[r,o,l,d]}function ai(t,i,s){const{shapeBounds:a}=s;let n,r;e.fullImageShadow?(Qe(ti,t.bounds),Je(ti,i.x-a.x,i.y-a.y),n=t.bounds,r=ti):(n=a,r=i),t.copyWorld(s.canvas,n,r)}const{toOffsetOutBounds:ni}=k,ri={};const oi=si;const li={shadow:function(t,e,i){let s,a;const{__nowWorld:n}=t,{shadow:r}=t.__,{worldCanvas:o,bounds:l,renderBounds:d,shapeBounds:c,scaleX:h,scaleY:u}=i,g=e.getSameCanvas(),p=r.length-1;Ze(l,ii,d),r.forEach((r,_)=>{let w=1;if(r.scaleFixed){const t=Math.abs(n.scaleX);t>1&&(w=1/t)}g.setWorldShadow(ii.offsetX+(r.x||0)*h*w,ii.offsetY+(r.y||0)*u*w,(r.blur||0)*h*w,z.string(r.color)),a=H.getShadowTransform(t,g,i,r,ii,w),a&&g.setTransform(a),ai(g,ii,i),a&&g.resetTransform(),s=d,r.box&&(g.restore(),g.save(),o&&(g.copyWorld(g,d,n,"copy"),s=n),o?g.copyWorld(o,n,n,"destination-out"):g.copyWorld(i.canvas,c,l,"destination-out")),f.copyCanvasByWorld(t,e,g,s,r.blendMode),p&&_<p&&g.clearWorld(s)}),g.recycle(s)},innerShadow:function(t,e,i){let s,a;const{__nowWorld:n}=t,{innerShadow:r}=t.__,{worldCanvas:o,bounds:l,renderBounds:d,shapeBounds:c,scaleX:h,scaleY:u}=i,g=e.getSameCanvas(),p=r.length-1;ni(l,ri,d),r.forEach((r,_)=>{let w=1;if(r.scaleFixed){const t=Math.abs(n.scaleX);t>1&&(w=1/t)}g.save(),g.setWorldShadow(ri.offsetX+(r.x||0)*h*w,ri.offsetY+(r.y||0)*u*w,(r.blur||0)*h*w),a=H.getShadowTransform(t,g,i,r,ri,w,!0),a&&g.setTransform(a),ai(g,ri,i),g.restore(),o?(g.copyWorld(g,d,n,"copy"),g.copyWorld(o,n,n,"source-out"),s=n):(g.copyWorld(i.canvas,c,l,"source-out"),s=d),g.fillWorld(s,z.string(r.color),"source-in"),f.copyCanvasByWorld(t,e,g,s,r.blendMode),p&&_<p&&g.clearWorld(s)}),g.recycle(s)},blur:function(t,e,i){const{blur:s}=t.__;i.setWorldBlur(s*t.__nowWorld.a),i.copyWorldToInner(e,t.__nowWorld,t.__layout.renderBounds),i.filter="none"},backgroundBlur:function(t,e,i){},getShadowRenderSpread:si,getShadowTransform:function(t,e,i,s,a,n,r){if(s.spread){const i=2*s.spread*n*(r?-1:1),{width:o,height:l}=t.__layout.strokeBounds;return ei.set().scaleOfOuter({x:(a.x+a.width/2)*e.pixelRatio,y:(a.y+a.height/2)*e.pixelRatio},1+i/o,1+i/l),ei}},isTransformShadow(t){},getInnerShadowSpread:oi},{excludeRenderBounds:di}=p;let ci;function hi(t,e,i,s,a,n,r,o){switch(e){case"grayscale":ci||(ci=!0,a.useGrayscaleAlpha(t.__nowWorld));case"alpha":!function(t,e,i,s,a,n){const r=t.__nowWorld;i.resetTransform(),i.opacity=1,i.useMask(s,r),n&&s.recycle(r);fi(t,e,i,1,a,n)}(t,i,s,a,r,o);break;case"opacity-path":fi(t,i,s,n,r,o);break;case"path":o&&i.restore()}}function ui(t){return t.getSameCanvas(!1,!0)}function fi(t,e,i,s,a,n){const r=t.__nowWorld;e.resetTransform(),e.opacity=s,e.copyWorld(i,r,void 0,a),n?i.recycle(r):i.clearWorld(r)}V.prototype.__renderMask=function(t,e){let i,s,a,n,r,o;const{children:l}=this;for(let d=0,c=l.length;d<c;d++){if(i=l[d],o=i.__.mask,o){r&&(hi(this,r,t,a,s,n,void 0,!0),s=a=null),"clipping"!==o&&"clipping-path"!==o||di(i,e)||i.__render(t,e),n=i.__.opacity,ci=!1,"path"===o||"clipping-path"===o?(n<1?(r="opacity-path",a||(a=ui(t))):(r="path",t.save()),i.__clip(a||t,e)):(r="grayscale"===o?"grayscale":"alpha",s||(s=ui(t)),a||(a=ui(t)),i.__render(s,e));continue}const c=1===n&&i.__.__blendMode;c&&hi(this,r,t,a,s,n,void 0,!1),di(i,e)||i.__render(a||t,e),c&&hi(this,r,t,a,s,n,c,!1)}hi(this,r,t,a,s,n,void 0,!0)};const gi=">)]}%!?,.:;'\"》)」〉』〗】〕}┐>’”!?,、。:;‰",pi=gi+"_#~&*+\\=|≮≯≈≠=…",_i=new RegExp([[19968,40959],[13312,19903],[131072,173791],[173824,177983],[177984,178207],[178208,183983],[183984,191471],[196608,201551],[201552,205743],[11904,12031],[12032,12255],[12272,12287],[12288,12351],[12736,12783],[12800,13055],[13056,13311],[63744,64255],[65072,65103],[127488,127743],[194560,195103]].map(([t,e])=>`[\\u${t.toString(16)}-\\u${e.toString(16)}]`).join("|"));function wi(t){const e={};return t.split("").forEach(t=>e[t]=!0),e}const yi=wi("ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyz"),mi=wi("{[(<'\"《(「〈『〖【〔{┌<‘“=¥¥$€££¢¢"),vi=wi(gi),xi=wi(pi),bi=wi("- —/~|┆·");var Si;!function(t){t[t.Letter=0]="Letter",t[t.Single=1]="Single",t[t.Before=2]="Before",t[t.After=3]="After",t[t.Symbol=4]="Symbol",t[t.Break=5]="Break"}(Si||(Si={}));const{Letter:ki,Single:Bi,Before:Ri,After:Li,Symbol:Ei,Break:Ti}=Si;function Pi(t){return yi[t]?ki:bi[t]?Ti:mi[t]?Ri:vi[t]?Li:xi[t]?Ei:_i.test(t)?Bi:ki}const Ai={trimRight(t){const{words:e}=t;let i,s=0,a=e.length;for(let n=a-1;n>-1&&(i=e[n].data[0]," "===i.char);n--)s++,t.width-=i.width;s&&e.splice(a-s,s)}};function Ci(t,e,i){switch(e){case"title":return i?t.toUpperCase():t;case"upper":return t.toUpperCase();case"lower":return t.toLowerCase();default:return t}}const{trimRight:Oi}=Ai,{Letter:Mi,Single:Wi,Before:Di,After:Fi,Symbol:Ii,Break:Yi}=Si;let Xi,Ui,Ni,qi,ji,zi,Gi,Hi,Vi,Qi,Ji,Zi,$i,Ki,ts,es,is,ss=[];function as(t,e){Vi&&!Hi&&(Hi=Vi),Xi.data.push({char:t,width:e}),Ni+=e}function ns(){qi+=Ni,Xi.width=Ni,Ui.words.push(Xi),Xi={data:[]},Ni=0}function rs(){Ki&&(ts.paraNumber++,Ui.paraStart=!0,Ki=!1),Vi&&(Ui.startCharSize=Hi,Ui.endCharSize=Vi,Hi=0),Ui.width=qi,es.width?Oi(Ui):is&&os(),ss.push(Ui),Ui={words:[]},qi=0}function os(){qi>(ts.maxWidth||0)&&(ts.maxWidth=qi)}const{top:ls,right:ds,bottom:cs,left:hs}=I;function us(t,e,i){const{bounds:s,rows:a}=t;s[e]+=i;for(let t=0;t<a.length;t++)a[t][e]+=i}const fs={getDrawData:function(t,i){P(t)||(t=String(t));let s=0,a=0,n=i.__getInput("width")||0,r=i.__getInput("height")||0;const{__padding:o}=i;o&&(n?(s=o[hs],n-=o[ds]+o[hs],!n&&(n=.01)):i.autoSizeAlign||(s=o[hs]),r?(a=o[ls],r-=o[ls]+o[cs],!r&&(r=.01)):i.autoSizeAlign||(a=o[ls]));const l={bounds:{x:s,y:a,width:n,height:r},rows:[],paraNumber:0,font:e.canvas.font=i.__font};return function(t,i,s){ts=t,ss=t.rows,es=t.bounds,is=!es.width&&!s.autoSizeAlign;const{__letterSpacing:a,paraIndent:n,textCase:r}=s,{canvas:o}=e,{width:l}=es;if(s.__isCharMode){const t="none"!==s.textWrap,e="break"===s.textWrap;Ki=!0,Ji=null,Hi=Gi=Vi=Ni=qi=0,Xi={data:[]},Ui={words:[]},a&&(i=[...i]);for(let s=0,d=i.length;s<d;s++)zi=i[s],"\n"===zi?(Ni&&ns(),Ui.paraEnd=!0,rs(),Ki=!0):(Qi=Pi(zi),Qi===Mi&&"none"!==r&&(zi=Ci(zi,r,!Ni)),Gi=o.measureText(zi).width,a&&(a<0&&(Vi=Gi),Gi+=a),Zi=Qi===Wi&&(Ji===Wi||Ji===Mi)||Ji===Wi&&Qi!==Fi,$i=!(Qi!==Di&&Qi!==Wi||Ji!==Ii&&Ji!==Fi),ji=Ki&&n?l-n:l,t&&l&&qi+Ni+Gi>ji&&(e?(Ni&&ns(),qi&&rs()):($i||($i=Qi===Mi&&Ji==Fi),Zi||$i||Qi===Yi||Qi===Di||Qi===Wi||Ni+Gi>ji?(Ni&&ns(),qi&&rs()):qi&&rs()))," "===zi&&!0!==Ki&&qi+Ni===0||(Qi===Yi?(" "===zi&&Ni&&ns(),as(zi,Gi),ns()):Zi||$i?(Ni&&ns(),as(zi,Gi)):as(zi,Gi)),Ji=Qi);Ni&&ns(),qi&&rs(),ss.length>0&&(ss[ss.length-1].paraEnd=!0)}else i.split("\n").forEach(t=>{ts.paraNumber++,qi=o.measureText(t).width,ss.push({x:n||0,text:t,width:qi,paraStart:!0}),is&&os()})}(l,t,i),o&&function(t,e,i,s,a){if(!s&&i.autoSizeAlign)switch(i.textAlign){case"left":us(e,"x",t[hs]);break;case"right":us(e,"x",-t[ds])}if(!a&&i.autoSizeAlign)switch(i.verticalAlign){case"top":us(e,"y",t[ls]);break;case"bottom":us(e,"y",-t[cs])}}(o,l,i,n,r),function(t,e){const{rows:i,bounds:s}=t,a=i.length,{__lineHeight:n,__baseLine:r,__letterSpacing:o,__clipText:l,textAlign:d,verticalAlign:c,paraSpacing:h,autoSizeAlign:u}=e;let{x:f,y:g,width:p,height:_}=s,w=n*a+(h?h*(t.paraNumber-1):0),y=r;if(l&&w>_)w=Math.max(_,n),a>1&&(t.overflow=a);else if(_||u)switch(c){case"middle":g+=(_-w)/2;break;case"bottom":g+=_-w}y+=g;let m,v,x,b=p||u?p:t.maxWidth;for(let r=0,c=a;r<c;r++){if(m=i[r],m.x=f,m.width<p||m.width>p&&!l)switch(d){case"center":m.x+=(b-m.width)/2;break;case"right":m.x+=b-m.width}m.paraStart&&h&&r>0&&(y+=h),m.y=y,y+=n,t.overflow>r&&y>w&&(m.isOverflow=!0,t.overflow=r+1),v=m.x,x=m.width,o<0&&(m.width<0?(x=-m.width+e.fontSize+o,v-=x,x+=e.fontSize):x-=o),v<s.x&&(s.x=v),x>s.width&&(s.width=x),l&&p&&p<x&&(m.isOverflow=!0,t.overflow||(t.overflow=i.length))}s.y=g,s.height=w}(l,i),i.__isCharMode&&function(t,e,i){const{rows:s}=t,{textAlign:a,paraIndent:n,letterSpacing:r}=e,o=i&&a.includes("both"),l=o||i&&a.includes("justify"),d=l&&a.includes("letter");let c,h,u,f,g,p,_,w,y,m;s.forEach(t=>{t.words&&(g=n&&t.paraStart?n:0,w=t.words.length,l&&(m=!t.paraEnd||o,h=i-t.width-g,d?f=h/(t.words.reduce((t,e)=>t+e.data.length,0)-1):u=w>1?h/(w-1):0),p=r||t.isOverflow||d?0:u?1:2,t.isOverflow&&!r&&(t.textMode=!0),2===p?(t.x+=g,function(t){t.text="",t.words.forEach(e=>{e.data.forEach(e=>{t.text+=e.char})})}(t)):(t.x+=g,c=t.x,t.data=[],t.words.forEach((e,i)=>{1===p?(_={char:"",x:c},c=function(t,e,i){return t.forEach(t=>{i.char+=t.char,e+=t.width}),e}(e.data,c,_),(t.isOverflow||" "!==_.char)&&t.data.push(_)):c=function(t,e,i,s,a){return t.forEach(t=>{(s||" "!==t.char)&&(t.x=e,i.push(t)),e+=t.width,a&&(e+=a)}),e}(e.data,c,t.data,t.isOverflow,m&&f),m&&(y=i===w-1,u?y||(c+=u,t.width+=u):f&&(t.width+=f*(e.data.length-(y?1:0))))})),t.words=null)})}(l,i,n),l.overflow&&function(t,i,s,a){if(!a)return;const{rows:n,overflow:r}=t;let{textOverflow:o}=i;if(n.splice(r),o&&"show"!==o){let t,l;"hide"===o?o="":"ellipsis"===o&&(o="...");const d=o?e.canvas.measureText(o).width:0,c=s+a-d;("none"===i.textWrap?n:[n[r-1]]).forEach(e=>{if(e.isOverflow&&e.data){let i=e.data.length-1;for(let s=i;s>-1&&(t=e.data[s],l=t.x+t.width,!(s===i&&l<c));s--){if(l<c&&" "!==t.char||!s){e.data.splice(s+1),e.width-=t.width;break}e.width-=t.width}e.width+=d,e.data.push({char:o,x:l}),e.textMode&&function(t){t.text="",t.data.forEach(e=>{t.text+=e.char}),t.data=null}(e)}})}}(l,i,s,n),"none"!==i.textDecoration&&function(t,e){let i,s=0;const{fontSize:a,textDecoration:n}=e;switch(t.decorationHeight=a/11,R(n)?(i=n.type,n.color&&(t.decorationColor=z.string(n.color)),n.offset&&(s=Math.min(.3*a,Math.max(n.offset,.15*-a)))):i=n,i){case"under":t.decorationY=[.15*a+s];break;case"delete":t.decorationY=[.35*-a];break;case"under-delete":t.decorationY=[.15*a+s,.35*-a]}}(l,i),l}};const gs={string:function(t,e){if(!t)return"#000";const i=Y(e)&&e<1;if(P(t)){if(!i||!z.object)return t;t=z.object(t)}let s=T(t.a)?1:t.a;i&&(s*=e);const a=t.r+","+t.g+","+t.b;return 1===s?"rgb("+a+")":"rgba("+a+","+s+")"}};Object.assign(Q,fs),Object.assign(z,gs),Object.assign(q,Jt),Object.assign(j,Te),Object.assign(G,Ve),Object.assign(H,li);const{setPoint:ps,addPoint:_s,toBounds:ws}=J;const ys={syncExport(t,e,i){let s;$.running=!0;try{const a=K.fileType(e),n=e.includes(".");i=K.getExportOptions(i);const{toURL:r}=tt,{download:o}=tt.origin;if("json"===a)n&&o(r(JSON.stringify(t.toJSON(i.json)),"text"),e),s={data:!!n||t.toJSON(i.json)};else if("svg"===a)n&&o(r(t.toSVG(),"svg"),e),s={data:!!n||t.toSVG()};else{let a,n,r=1,o=1;const{worldTransform:l,isLeafer:d,leafer:c,isFrame:h}=t,{slice:u,clip:f,trim:g,screenshot:p,padding:_,onCanvas:w}=i,y=et(i.smooth)?!c||c.config.smooth:i.smooth,m=i.contextSettings||(c?c.config.contextSettings:void 0),v=d&&p&&et(i.fill)?t.fill:i.fill,x=K.isOpaqueImage(e)||v,b=new it;if(p)a=!0===p?d?c.canvas.bounds:t.worldRenderBounds:p;else{let e=i.relative||(d?"inner":"local");switch(r=l.scaleX,o=l.scaleY,e){case"inner":b.set(l);break;case"local":b.set(l).divide(t.localTransform),r/=t.scaleX,o/=t.scaleY;break;case"world":r=1,o=1;break;case"page":e=c||t;default:b.set(l).divide(t.getTransform(e));const i=e.worldTransform;r/=r/i.scaleX,o/=o/i.scaleY}a=t.getBounds("render",e)}const S={scaleX:1,scaleY:1};st.getScaleData(i.scale,i.size,a,S);let k=i.pixelRatio||1,{x:B,y:R,width:L,height:E}=new Z(a).scale(S.scaleX,S.scaleY);f&&(B+=f.x,R+=f.y,L=f.width,E=f.height);const T={exporting:!0,matrix:b.scale(1/S.scaleX,1/S.scaleY).invert().translate(-B,-R).withScale(1/r*S.scaleX,1/o*S.scaleY)};let P,A=at.canvas({width:Math.floor(L),height:Math.floor(E),pixelRatio:k,smooth:y,contextSettings:m});u&&(P=t,P.__worldOpacity=0,t=c||t,T.bounds=A.bounds),A.save();const C=h&&!et(v),O=t.get("fill");if(C&&(t.fill=""),tt.render(t,A,T),C&&(t.fill=O),A.restore(),P&&P.__updateWorldOpacity(),g){n=function(t){const{width:e,height:i}=t.view,{data:s}=t.context.getImageData(0,0,e,i);let a,n,r,o=0;for(let t=0;t<s.length;t+=4)0!==s[t+3]&&(a=o%e,n=(o-a)/e,r?_s(r,a,n):ps(r={},a,n)),o++;const l=new Z;return r&&(ws(r,l),l.scale(1/t.pixelRatio).ceil()),l}(A);const t=A,{width:e,height:i}=n,s={x:0,y:0,width:e,height:i,pixelRatio:k};A=at.canvas(s),A.copyWorld(t,n,s),t.destroy()}if(_){const[t,e,i,s]=st.fourNumber(_),a=A,{width:n,height:r}=a;A=at.canvas({width:n+s+e,height:r+t+i,pixelRatio:k}),A.copyWorld(a,a.bounds,{x:s,y:t,width:n,height:r}),a.destroy()}x&&A.fillWorld(A.bounds,v||"#FFFFFF","destination-over"),w&&w(A);s={data:"canvas"===e?A:A.export(e,i),width:A.pixelWidth,height:A.pixelHeight,renderBounds:a,trimBounds:n};const M=c&&c.app;M&&M.canvasManager&&M.canvasManager.clearRecycled()}}catch(t){s={data:"",error:t}}return $.running=!1,s},export(t,e,i){return $.running=!0,function(t){ms||(ms=new nt);return new Promise(e=>{ms.add(()=>ut(this,void 0,void 0,function*(){return yield t(e)}),{parallel:!1})})}(s=>new Promise(a=>{const n=()=>ut(this,void 0,void 0,function*(){if(!rt.isComplete)return tt.requestRender(n);const r=$.syncExport(t,e,i);r.data instanceof Promise&&(r.data=yield r.data),s(r),a()});t.updateLayout(),vs(t);const{leafer:r}=t;r?r.waitViewCompleted(n):n()}))}};let ms;function vs(t){t.__.__needComputePaint&&t.__.__computePaint(),t.isBranch&&t.children.forEach(t=>vs(t))}const xs=ot.prototype,bs=lt.get("@leafer-in/export");xs.export=function(t,e){const{quality:i,blob:s}=K.getExportOptions(e);return t.includes(".")?this.saveAs(t,i):s?this.toBlob(t,i):this.toDataURL(t,i)},xs.toBlob=function(t,e){return new Promise(i=>{tt.origin.canvasToBolb(this.view,t,e).then(t=>{i(t)}).catch(t=>{bs.error(t),i(null)})})},xs.toDataURL=function(t,e){return tt.origin.canvasToDataURL(this.view,t,e)},xs.saveAs=function(t,e){return new Promise(i=>{tt.origin.canvasSaveAs(this.view,t,e).then(()=>{i(!0)}).catch(t=>{bs.error(t),i(!1)})})},dt.add("export"),Object.assign($,ys),ct.prototype.export=function(t,e){return $.export(this,t,e)},ct.prototype.syncExport=function(t,e){return $.syncExport(this,t,e)},Object.assign(a,{interaction:(t,e,i,s)=>new N(t,e,i,s),hitCanvas:(t,e)=>new ft(t,e),hitCanvasManager:()=>new U});export{Et as Layouter,ft as LeaferCanvas,ht as PathNodeHandleType,Ct as Picker,Pt as Renderer,Ot as Selector,wt as Watcher,_t as useCanvas};
|
|
2
2
|
//# sourceMappingURL=node.esm.min.js.map
|