@leafer-ui/worker 1.9.5 → 1.9.7

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/worker.cjs CHANGED
@@ -558,7 +558,7 @@ class Renderer {
558
558
  };
559
559
  if (this.needFill) canvas.fillWorld(bounds, this.config.fill);
560
560
  if (core.Debug.showRepaint) core.Debug.drawRepaint(canvas, bounds);
561
- this.target.__render(canvas, options);
561
+ core.Platform.render(this.target, canvas, options);
562
562
  this.renderBounds = realBounds = realBounds || bounds;
563
563
  this.renderOptions = options;
564
564
  this.totalBounds.isEmpty() ? this.totalBounds = realBounds : this.totalBounds.add(realBounds);
@@ -730,7 +730,7 @@ class Picker {
730
730
  item = path.list[i];
731
731
  if (!item.__.hittable) break;
732
732
  hittablePath.addAt(item, 0);
733
- if (!item.__.hitChildren) break;
733
+ if (!item.__.hitChildren || item.isLeafer && item.mode === "draw") break;
734
734
  }
735
735
  return hittablePath;
736
736
  }
@@ -834,6 +834,15 @@ Object.assign(core.Creator, {
834
834
 
835
835
  core.Platform.layout = Layouter.fullLayout;
836
836
 
837
+ core.Platform.render = function(target, canvas, options) {
838
+ const topOptions = Object.assign(Object.assign({}, options), {
839
+ topRendering: true
840
+ });
841
+ options.topList = new core.LeafList;
842
+ target.__render(canvas, options);
843
+ if (options.topList.length) options.topList.forEach(item => item.__render(canvas, topOptions));
844
+ };
845
+
837
846
  function fillText(ui, canvas) {
838
847
  const data = ui.__, {rows: rows, decorationY: decorationY} = data.__textDrawData;
839
848
  if (data.__isPlacehold && data.placeholderColor) canvas.fillStyle = data.placeholderColor;
@@ -1788,12 +1797,18 @@ function shadow(ui, current, shape) {
1788
1797
  }
1789
1798
  worldCanvas ? other.copyWorld(worldCanvas, nowWorld, nowWorld, "destination-out") : other.copyWorld(shape.canvas, shapeBounds, bounds, "destination-out");
1790
1799
  }
1791
- core.LeafHelper.copyCanvasByWorld(ui, current, other, copyBounds, item.blendMode);
1800
+ if (draw.Effect.isTransformShadow(item)) draw.Effect.renderTransformShadow(ui, current, other, copyBounds, item); else core.LeafHelper.copyCanvasByWorld(ui, current, other, copyBounds, item.blendMode);
1792
1801
  if (end && index < end) other.clearWorld(copyBounds);
1793
1802
  });
1794
1803
  other.recycle(copyBounds);
1795
1804
  }
1796
1805
 
1806
+ function getShadowSpread(_ui, shadow) {
1807
+ let width = 0;
1808
+ shadow.forEach(item => width = Math.max(width, Math.max(Math.abs(item.y), Math.abs(item.x)) + (item.spread > 0 ? item.spread : 0) + item.blur * 1.5));
1809
+ return width;
1810
+ }
1811
+
1797
1812
  function drawWorldShadow(canvas, outBounds, spreadScale, shape) {
1798
1813
  const {bounds: bounds, shapeBounds: shapeBounds} = shape;
1799
1814
  if (core.Platform.fullImageShadow) {
@@ -1871,7 +1886,11 @@ const EffectModule = {
1871
1886
  shadow: shadow,
1872
1887
  innerShadow: innerShadow,
1873
1888
  blur: blur,
1874
- backgroundBlur: backgroundBlur
1889
+ backgroundBlur: backgroundBlur,
1890
+ getShadowSpread: getShadowSpread,
1891
+ isTransformShadow(_shadow) {
1892
+ return undefined;
1893
+ }
1875
1894
  };
1876
1895
 
1877
1896
  const {excludeRenderBounds: excludeRenderBounds} = core.LeafBoundsHelper;
@@ -2379,16 +2398,17 @@ function toTextChar(row) {
2379
2398
  }
2380
2399
 
2381
2400
  function decorationText(drawData, style) {
2382
- let type;
2401
+ let type, offset = 0;
2383
2402
  const {fontSize: fontSize, textDecoration: textDecoration} = style;
2384
2403
  drawData.decorationHeight = fontSize / 11;
2385
2404
  if (core.isObject(textDecoration)) {
2386
2405
  type = textDecoration.type;
2387
2406
  if (textDecoration.color) drawData.decorationColor = draw.ColorConvert.string(textDecoration.color);
2407
+ if (textDecoration.offset) offset = Math.min(fontSize * .3, Math.max(textDecoration.offset, -fontSize * .15));
2388
2408
  } else type = textDecoration;
2389
2409
  switch (type) {
2390
2410
  case "under":
2391
- drawData.decorationY = [ fontSize * .15 ];
2411
+ drawData.decorationY = [ fontSize * .15 + offset ];
2392
2412
  break;
2393
2413
 
2394
2414
  case "delete":
@@ -2396,7 +2416,7 @@ function decorationText(drawData, style) {
2396
2416
  break;
2397
2417
 
2398
2418
  case "under-delete":
2399
- drawData.decorationY = [ fontSize * .15, -fontSize * .35 ];
2419
+ drawData.decorationY = [ fontSize * .15 + offset, -fontSize * .35 ];
2400
2420
  }
2401
2421
  }
2402
2422
 
@@ -8,7 +8,7 @@ import { HitCanvasManager, InteractionBase } from "@leafer-ui/core";
8
8
 
9
9
  export * from "@leafer-ui/core";
10
10
 
11
- import { PaintImage, Paint, ColorConvert, PaintGradient, Export, Group, TextConvert, Effect } from "@leafer-ui/draw";
11
+ import { PaintImage, Paint, ColorConvert, PaintGradient, Export, Effect, Group, TextConvert } from "@leafer-ui/draw";
12
12
 
13
13
  class LeaferCanvas extends LeaferCanvasBase {
14
14
  get allowBackgroundColor() {
@@ -562,7 +562,7 @@ class Renderer {
562
562
  };
563
563
  if (this.needFill) canvas.fillWorld(bounds, this.config.fill);
564
564
  if (Debug.showRepaint) Debug.drawRepaint(canvas, bounds);
565
- this.target.__render(canvas, options);
565
+ Platform.render(this.target, canvas, options);
566
566
  this.renderBounds = realBounds = realBounds || bounds;
567
567
  this.renderOptions = options;
568
568
  this.totalBounds.isEmpty() ? this.totalBounds = realBounds : this.totalBounds.add(realBounds);
@@ -734,7 +734,7 @@ class Picker {
734
734
  item = path.list[i];
735
735
  if (!item.__.hittable) break;
736
736
  hittablePath.addAt(item, 0);
737
- if (!item.__.hitChildren) break;
737
+ if (!item.__.hitChildren || item.isLeafer && item.mode === "draw") break;
738
738
  }
739
739
  return hittablePath;
740
740
  }
@@ -838,6 +838,15 @@ Object.assign(Creator, {
838
838
 
839
839
  Platform.layout = Layouter.fullLayout;
840
840
 
841
+ Platform.render = function(target, canvas, options) {
842
+ const topOptions = Object.assign(Object.assign({}, options), {
843
+ topRendering: true
844
+ });
845
+ options.topList = new LeafList;
846
+ target.__render(canvas, options);
847
+ if (options.topList.length) options.topList.forEach(item => item.__render(canvas, topOptions));
848
+ };
849
+
841
850
  function fillText(ui, canvas) {
842
851
  const data = ui.__, {rows: rows, decorationY: decorationY} = data.__textDrawData;
843
852
  if (data.__isPlacehold && data.placeholderColor) canvas.fillStyle = data.placeholderColor;
@@ -1792,12 +1801,18 @@ function shadow(ui, current, shape) {
1792
1801
  }
1793
1802
  worldCanvas ? other.copyWorld(worldCanvas, nowWorld, nowWorld, "destination-out") : other.copyWorld(shape.canvas, shapeBounds, bounds, "destination-out");
1794
1803
  }
1795
- LeafHelper.copyCanvasByWorld(ui, current, other, copyBounds, item.blendMode);
1804
+ if (Effect.isTransformShadow(item)) Effect.renderTransformShadow(ui, current, other, copyBounds, item); else LeafHelper.copyCanvasByWorld(ui, current, other, copyBounds, item.blendMode);
1796
1805
  if (end && index < end) other.clearWorld(copyBounds);
1797
1806
  });
1798
1807
  other.recycle(copyBounds);
1799
1808
  }
1800
1809
 
1810
+ function getShadowSpread(_ui, shadow) {
1811
+ let width = 0;
1812
+ shadow.forEach(item => width = Math.max(width, Math.max(Math.abs(item.y), Math.abs(item.x)) + (item.spread > 0 ? item.spread : 0) + item.blur * 1.5));
1813
+ return width;
1814
+ }
1815
+
1801
1816
  function drawWorldShadow(canvas, outBounds, spreadScale, shape) {
1802
1817
  const {bounds: bounds, shapeBounds: shapeBounds} = shape;
1803
1818
  if (Platform.fullImageShadow) {
@@ -1875,7 +1890,11 @@ const EffectModule = {
1875
1890
  shadow: shadow,
1876
1891
  innerShadow: innerShadow,
1877
1892
  blur: blur,
1878
- backgroundBlur: backgroundBlur
1893
+ backgroundBlur: backgroundBlur,
1894
+ getShadowSpread: getShadowSpread,
1895
+ isTransformShadow(_shadow) {
1896
+ return undefined;
1897
+ }
1879
1898
  };
1880
1899
 
1881
1900
  const {excludeRenderBounds: excludeRenderBounds} = LeafBoundsHelper;
@@ -2383,16 +2402,17 @@ function toTextChar(row) {
2383
2402
  }
2384
2403
 
2385
2404
  function decorationText(drawData, style) {
2386
- let type;
2405
+ let type, offset = 0;
2387
2406
  const {fontSize: fontSize, textDecoration: textDecoration} = style;
2388
2407
  drawData.decorationHeight = fontSize / 11;
2389
2408
  if (isObject(textDecoration)) {
2390
2409
  type = textDecoration.type;
2391
2410
  if (textDecoration.color) drawData.decorationColor = ColorConvert.string(textDecoration.color);
2411
+ if (textDecoration.offset) offset = Math.min(fontSize * .3, Math.max(textDecoration.offset, -fontSize * .15));
2392
2412
  } else type = textDecoration;
2393
2413
  switch (type) {
2394
2414
  case "under":
2395
- drawData.decorationY = [ fontSize * .15 ];
2415
+ drawData.decorationY = [ fontSize * .15 + offset ];
2396
2416
  break;
2397
2417
 
2398
2418
  case "delete":
@@ -2400,7 +2420,7 @@ function decorationText(drawData, style) {
2400
2420
  break;
2401
2421
 
2402
2422
  case "under-delete":
2403
- drawData.decorationY = [ fontSize * .15, -fontSize * .35 ];
2423
+ drawData.decorationY = [ fontSize * .15 + offset, -fontSize * .35 ];
2404
2424
  }
2405
2425
  }
2406
2426
 
@@ -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 h,ChildEvent as d,WatchEvent as c,PropertyEvent as u,LeafHelper as f,BranchHelper as g,LeafBoundsHelper as p,Bounds as _,isArray as y,Debug as w,LeafLevelList as m,LayoutEvent as x,Run as v,ImageManager as b,ResizeEvent as k,BoundsHelper as B,Plugin as S,isObject as E,Matrix as R,isUndefined as L,isString as A,getMatrixData as T,MatrixHelper as C,MathHelper as W,AlignHelper as P,PointHelper as O,ImageEvent as M,AroundHelper as D,Direction4 as F,isNumber as I}from"@leafer/core";export*from"@leafer/core";export{LeaferImage}from"@leafer/core";import{HitCanvasManager as Y,InteractionBase as z}from"@leafer-ui/core";export*from"@leafer-ui/core";import{PaintImage as U,Paint as G,ColorConvert as X,PaintGradient as q,Export as N,Group as H,TextConvert as j,Effect as V}from"@leafer-ui/draw";class Q extends t{get allowBackgroundColor(){return!0}init(){this.__createView(),this.__createContext(),this.resize(this.config)}__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}}i(OffscreenCanvasRenderingContext2D.prototype),i(Path2D.prototype);const{mineType:Z}=s;function $(t,i){e.origin={createCanvas:(t,e)=>new OffscreenCanvas(t,e),canvasToDataURL:(t,e,i)=>new Promise((s,n)=>{t.convertToBlob({type:Z(e),quality:i}).then(t=>{var e=new FileReader;e.onload=t=>s(t.target.result),e.onerror=t=>n(t),e.readAsDataURL(t)}).catch(t=>{n(t)})}),canvasToBolb:(t,e,i)=>t.convertToBlob({type:Z(e),quality:i}),canvasSaveAs:(t,e,i)=>new Promise(t=>t()),download(t,e){},loadImage:t=>new Promise((i,s)=>{let n=new XMLHttpRequest;n.open("GET",e.image.getRealURL(t),!0),n.responseType="blob",n.onload=()=>{createImageBitmap(n.response).then(t=>{i(t)}).catch(t=>{s(t)})},n.onerror=t=>s(t),n.send()})},e.canvas=n.canvas(),e.conicGradientSupport=!!e.canvas.context.createConicGradient}Object.assign(n,{canvas:(t,e)=>new Q(t,e),image:t=>new a(t)}),e.name="web",e.isWorker=!0,e.backgrounder=!0,e.requestRender=function(t){requestAnimationFrame(t)},r(e,"devicePixelRatio",{get:()=>1});const{userAgent:J}=navigator;J.indexOf("Firefox")>-1?(e.conicGradientRotate90=!0,e.intWheelDeltaY=!0):(/iPhone|iPad|iPod/.test(navigator.userAgent)||/Macintosh/.test(navigator.userAgent)&&/Version\/[\d.]+.*Safari/.test(navigator.userAgent))&&(e.fullImageShadow=!0),J.indexOf("Windows")>-1?(e.os="Windows",e.intWheelDeltaY=!0):J.indexOf("Mac")>-1?e.os="Mac":J.indexOf("Linux")>-1&&(e.os="Linux");class K{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(h.REQUEST)}__onAttrChange(t){this.__updatedList.add(t.target),this.update()}__onChildEvent(t){t.type===d.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 c(c.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],[[d.ADD,d.REMOVE],this.__onChildEvent,this],[c.REQUEST,this.__onRquestData,this]])]}__removeListenEvents(){this.target.off_(this.__eventIds)}destroy(){this.target&&(this.stop(),this.__removeListenEvents(),this.target=this.__updatedList=null)}}const{updateAllMatrix:tt,updateBounds:et,updateChange:it}=f,{pushAllChildBranch:st,pushAllParent:nt}=g;const{worldBounds:at}=p;class rt{constructor(t){this.updatedBounds=new _,this.beforeBounds=new _,this.afterBounds=new _,y(t)&&(t=new o(t)),this.updatedList=t}setBefore(){this.beforeBounds.setListWithFn(this.updatedList.list,at)}setAfter(){this.afterBounds.setListWithFn(this.updatedList.list,at),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:ot,updateAllChange:lt}=f,ht=w.get("Layouter");class dt{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(x.START),this.layoutOnce(),t.emitEvent(new x(x.END,this.layoutedBlocks,this.times))}catch(t){ht.error(t)}this.layoutedBlocks=null}layoutAgain(){this.layouting?this.waitAgain=!0:this.layoutOnce()}layoutOnce(){return this.layouting?ht.warn("layouting"):this.times>3?ht.warn("layout max times"):(this.times++,this.totalTimes++,this.layouting=!0,this.target.emit(c.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=v.start("PartLayout"),{target:i,__updatedList:s}=this,{BEFORE:n,LAYOUT:a,AFTER:r}=x,o=this.getBlocks(s);o.forEach(t=>t.setBefore()),i.emitEvent(new x(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?(tt(t,!0),e.add(t),t.isBranch&&st(t,e),nt(t,e)):i.boundsChanged&&(e.add(t),t.isBranch&&(t.__tempNumber=0),nt(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||et(s[t])}et(i)}})}(this.__levelList),function(t){t.list.forEach(it)}(s),this.extraBlock&&o.push(this.extraBlock),o.forEach(t=>t.setAfter()),i.emitEvent(new x(a,o,this.times)),i.emitEvent(new x(r,o,this.times)),this.addBlocks(o),this.__levelList.reset(),this.__updatedList=null,v.end(e)}fullLayout(){const t=v.start("FullLayout"),{target:e}=this,{BEFORE:i,LAYOUT:s,AFTER:n}=x,a=this.getBlocks(new o(e));e.emitEvent(new x(i,a,this.times)),dt.fullLayout(e),a.forEach(t=>{t.setAfter()}),e.emitEvent(new x(s,a,this.times)),e.emitEvent(new x(n,a,this.times)),this.addBlocks(a),v.end(t)}static fullLayout(t){ot(t,!0),t.isBranch?g.updateBounds(t):f.updateBounds(t),lt(t)}addExtra(t){if(!this.__updatedList.has(t)){const{updatedList:e,beforeBounds:i}=this.extraBlock||(this.extraBlock=new rt([]));e.length?i.add(t.__world):i.set(t.__world),e.add(t)}}createBlock(t){return new rt(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_([[x.REQUEST,this.layout,this],[x.AGAIN,this.layoutAgain,this],[c.DATA,this.__onReceiveWatchData,this]])]}__removeListenEvents(){this.target.off_(this.__eventIds)}destroy(){this.target&&(this.stop(),this.__removeListenEvents(),this.target=this.config=null)}}const ct=w.get("Renderer");class ut{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.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(x.REQUEST)}checkRender(){if(this.running){const{target:t}=this;t.isApp&&(t.emit(h.CHILD_START,t),t.children.forEach(t=>{t.renderer.FPS=this.FPS,t.renderer.checkRender()}),t.emit(h.CHILD_END,t)),this.changed&&this.canvas.view&&this.render(),this.target.emit(h.NEXT)}}render(t){if(!this.running||!this.canvas.view)return this.update();const{target:e}=this;this.times=0,this.totalBounds=new _,ct.log(e.innerName,"---\x3e");try{this.emitRender(h.START),this.renderOnce(t),this.emitRender(h.END,this.totalBounds),b.clearRecycled()}catch(t){this.rendering=!1,ct.error(t)}ct.log("-------------|")}renderAgain(){this.rendering?this.waitAgain=!0:this.renderOnce()}renderOnce(t){if(this.rendering)return ct.warn("rendering");if(this.times>3)return ct.warn("render max times");if(this.times++,this.totalTimes++,this.rendering=!0,this.changed=!1,this.renderBounds=new _,this.renderOptions={},t)this.emitRender(h.BEFORE),t();else{if(this.requestLayout(),this.ignore)return void(this.ignore=this.rendering=!1);this.emitRender(h.BEFORE),this.config.usePartRender&&this.totalTimes>1?this.partRender():this.fullRender()}this.emitRender(h.RENDER,this.renderBounds,this.renderOptions),this.emitRender(h.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=v.start("PartRender"),{canvas:i}=this,s=t.getIntersect(i.bounds),n=new _(s);i.save(),s.spread(ut.clipSpread).ceil(),i.clearWorld(s),i.clipWorld(s),this.__render(s,n),i.restore(),v.end(e)}fullRender(){const t=v.start("FullRender"),{canvas:e}=this;e.save(),e.clear(),this.__render(e.bounds),e.restore(),v.end(t)}__render(t,e){const{canvas:i}=this,s=t.includes(this.target.__world),n=s?{includes:s}:{bounds:t,includes:s};this.needFill&&i.fillWorld(t,this.config.fill),w.showRepaint&&w.drawRepaint(i,t),this.target.__render(i,n),this.renderBounds=e=e||t,this.renderOptions=n,this.totalBounds.isEmpty()?this.totalBounds=e:this.totalBounds.add(e),i.updateRender(e)}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);const i=this.requestTime=Date.now(),s=()=>{const t=1e3/(Date.now()-i),{maxFPS:n}=this.config;if(n&&t>n-.5)return e.requestRender(s);this.FPS=Math.min(120,Math.ceil(t)),this.requestTime=0,this.checkRender()};e.requestRender(s)}__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||ct.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 h(t,this.times,e,i))}__listenEvents(){this.__eventIds=[this.target.on_([[h.REQUEST,this.update,this],[x.END,this.__onLayoutEnd,this],[h.AGAIN,this.renderAgain,this],[k.RESIZE,this.__onResize,this]])]}__removeListenEvents(){this.target.off_(this.__eventIds)}destroy(){this.target&&(this.stop(),this.__removeListenEvents(),this.config={},this.target=this.canvas=null)}}ut.clipSpread=10;const{hitRadiusPoint:ft}=B;class gt{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),h=n?this.getPath(l):this.getHitablePath(l);return this.clear(),s?{path:h,target:l,throughPath:r.length?this.getThroughPath(r):h}:{path:h,target:l}}hitPoint(t,e,i){return!!this.getByPoint(t,e,i).target}getBestMatchLeaf(t,e,i){const s=this.findList=new o;if(t.length){let e;const{x:n,y:a}=this.point,r={x:n,y:a,radiusX:0,radiusY:0};for(let n=0,a=t.length;n<a;n++)if(e=t[n],(i||f.worldHittable(e))&&(this.hitChild(e,r),s.length)){if(e.isBranchLeaf&&t.some(t=>t!==e&&f.hasParent(t,e))){s.reset();break}return s.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),s.length)return s.list[0];return i?t[0]:t.find(t=>f.worldHittable(t))}getPath(t){const e=new o;for(;t;)e.add(t),t=t.parent;return this.target&&e.add(this.target),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);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--)i=t[a],!i.__.visible||e&&!i.__.mask||(s=!!i.__.hitRadius||ft(i.__world,n),i.isBranch?(s||i.__ignoreHitWorld)&&(i.topChildren&&this.eachFind(i.topChildren,!1),this.eachFind(i.children,i.__onlyHitMask),i.isBranchLeaf&&this.hitChild(i,n)):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 pt{constructor(t,e){this.config={},e&&(this.config=l.default(e,this.config)),this.picker=new gt(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):S.need("find")}destroy(){this.picker.destroy(),this.finder&&this.finder.destroy()}}function _t(t,e){const i=t.__,{rows:s,decorationY:n}=i.__textDrawData;let a;i.__isPlacehold&&i.placeholderColor&&(e.fillStyle=i.placeholderColor);for(let t=0,i=s.length;t<i;t++)a=s[t],a.text?e.fillText(a.text,a.x,a.y):a.data&&a.data.forEach(t=>{e.fillText(t.char,t.x,a.y)});if(n){const{decorationColor:t,decorationHeight:a}=i.__textDrawData;t&&(e.fillStyle=t),s.forEach(t=>n.forEach(i=>e.fillRect(t.x,t.y+i,t.width,a)))}}function yt(t,e){t.__.__font?_t(t,e):t.__.windingRule?e.fill(t.__.windingRule):e.fill()}function wt(t,e,i){switch(e.__.strokeAlign){case"center":mt(t,1,e,i);break;case"inside":xt(t,"inside",e,i);break;case"outside":e.__.__fillAfterStroke?mt(t,2,e,i):xt(t,"outside",e,i)}}function mt(t,e,i,s){const n=i.__;E(t)?bt(t,e,!0,i,s):(s.setStroke(t,n.__strokeWidth*e,n),vt(i,s))}function xt(t,e,i,s){const n=s.getSameCanvas(!0,!0);n.font=i.__.__font,mt(t,2,i,n),n.blendMode="outside"===e?"destination-out":"destination-in",_t(i,n),n.blendMode="normal",f.copyCanvasByWorld(i,s,n),n.recycle(i.__nowWorld)}function vt(t,e){let i,s=t.__.__textDrawData;const{rows:n,decorationY:a}=s;for(let t=0,s=n.length;t<s;t++)i=n[t],i.text?e.strokeText(i.text,i.x,i.y):i.data&&i.data.forEach(t=>{e.strokeText(t.char,t.x,i.y)});if(a){const{decorationHeight:t}=s;n.forEach(i=>a.forEach(s=>e.strokeRect(i.x,i.y+s,i.width,t)))}}function bt(t,e,i,s,n){let a;const r=s.__,{__hasMultiStrokeStyle:o}=r;o||n.setStroke(void 0,r.__strokeWidth*e,r);for(let l=0,h=t.length;l<h;l++)if(a=t[l],(!a.image||!U.checkImage(s,n,a,!1))&&a.style){if(o){const{strokeStyle:t}=a;t?n.setStroke(a.style,r.__getRealStrokeWidth(t)*e,r,t):n.setStroke(a.style,r.__strokeWidth*e,r)}else n.strokeStyle=a.style;a.blendMode?(n.saveBlendMode(a.blendMode),i?vt(s,n):n.stroke(),n.restoreBlendMode()):i?vt(s,n):n.stroke()}}function kt(t,e,i){const s=e.__;if(s.__strokeWidth)if(s.__font)wt(t,e,i);else switch(s.strokeAlign){case"center":Bt(t,1,e,i);break;case"inside":!function(t,e,i){i.save(),i.clipUI(e),Bt(t,2,e,i),i.restore()}(t,e,i);break;case"outside":!function(t,e,i){const s=e.__;if(s.__fillAfterStroke)Bt(t,2,e,i);else{const{renderBounds:n}=e.__layout,a=i.getSameCanvas(!0,!0);e.__drawRenderPath(a),Bt(t,2,e,a),a.clipUI(s),a.clearWorld(n),f.copyCanvasByWorld(e,i,a),a.recycle(e.__nowWorld)}}(t,e,i)}}function Bt(t,e,i,s){const n=i.__;E(t)?bt(t,e,!1,i,s):(s.setStroke(t,n.__strokeWidth*e,n),s.stroke()),n.__useArrow&&G.strokeArrow(t,i,s)}Object.assign(n,{watcher:(t,e)=>new K(t,e),layouter:(t,e)=>new dt(t,e),renderer:(t,e,i)=>new ut(t,e,i),selector:(t,e)=>new pt(t,e)}),e.layout=dt.fullLayout;const{getSpread:St,getOuterOf:Et,getByMove:Rt,getIntersectData:Lt}=B;let At;const{stintSet:Tt}=l,{hasTransparent:Ct}=X;function Wt(t,e,i){if(!E(e)||!1===e.visible||0===e.opacity)return;let s;const{boxBounds:n}=i.__layout;switch(e.type){case"image":s=U.image(i,t,e,n,!At||!At[e.url]);break;case"linear":s=q.linearGradient(e,n);break;case"radial":s=q.radialGradient(e,n);break;case"angular":s=q.conicGradient(e,n);break;case"solid":const{type:a,color:r,opacity:o}=e;s={type:a,style:X.string(r,o)};break;default:L(e.r)||(s={type:"solid",style:X.string(e)})}if(s){if(A(s.style)&&Ct(s.style)&&(s.isTransparent=!0),e.style){if(0===e.style.strokeWidth)return;s.strokeStyle=e.style}e.editing&&(s.editing=e.editing),e.blendMode&&(s.blendMode=e.blendMode)}return s}const Pt={compute:function(t,e){const i=e.__,s=[];let n,a,r,o=i.__input[t];y(o)||(o=[o]),At=U.recycleImage(t,i);for(let i,n=0,a=o.length;n<a;n++)(i=Wt(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?(Tt(i,"__isAlphaPixelFill",n),Tt(i,"__isTransparentFill",a)):(Tt(i,"__isAlphaPixelStroke",n),Tt(i,"__isTransparentStroke",a),Tt(i,"__hasMultiStrokeStyle",r))},fill:function(t,e,i){i.fillStyle=t,yt(e,i)},fills:function(t,e,i){let s;for(let n=0,a=t.length;n<a;n++){if(s=t[n],s.image){if(U.checkImage(e,i,s,!e.__.__font))continue;if(!s.style){!n&&s.image.isPlacehold&&e.drawImagePlaceholder(i,s.image);continue}}if(i.fillStyle=s.style,s.transform||s.scaleFixed){if(i.save(),s.transform&&i.transform(s.transform),s.scaleFixed){const{scaleX:t,scaleY:n}=e.getRenderScaleData(!0);(!0===s.scaleFixed||"zoom-in"===s.scaleFixed&&t>1&&n>1)&&i.scale(1/t,1/n)}s.blendMode&&(i.blendMode=s.blendMode),yt(e,i),i.restore()}else s.blendMode?(i.saveBlendMode(s.blendMode),yt(e,i),i.restoreBlendMode()):yt(e,i)}},fillPathOrText:yt,fillText:_t,stroke:kt,strokes:function(t,e,i){kt(t,e,i)},strokeText:wt,drawTextStroke:vt,shape:function(t,i,s){const n=i.getSameCanvas(),a=t.__nowWorld,r=i.bounds;let o,l,h,d,c,{scaleX:u,scaleY:f}=t.getRenderScaleData(!0);if(r.includes(a))c=n,o=d=a;else{const{renderShapeSpread:n}=t.__layout;let g;if(e.fullImageShadow)g=a;else{const t=n?St(r,u===f?n*u:[n*f,n*u]):r;g=Lt(t,a)}h=r.getFitMatrix(g);let{a:p,d:_}=h;h.a<1&&(c=i.getSameCanvas(),t.__renderShape(c,s),u*=p,f*=_),d=Et(a,h),o=Rt(d,-h.e,-h.f);const y=s.matrix;y?(l=new R(h),l.multiply(y),p*=y.scaleX,_*=y.scaleY):l=h,l.withScale(p,_),s=Object.assign(Object.assign({},s),{matrix:l})}return t.__renderShape(n,s),{canvas:n,matrix:l,fitMatrix:h,bounds:o,worldCanvas:c,shapeBounds:d,scaleX:u,scaleY:f}}};let Ot={},Mt=T();const{get:Dt,rotateOfOuter:Ft,translate:It,scaleOfOuter:Yt,multiplyParent:zt,scale:Ut,rotate:Gt,skew:Xt}=C;function qt(t,e,i,s,n,a,r){const o=Dt();It(o,e.x+i,e.y+s),Ut(o,n,a),r&&Ft(o,{x:e.x+e.width/2,y:e.y+e.height/2},r),t.transform=o}function Nt(t,e,i,s,n,a,r,o,l){const h=Dt();jt(h,e,i,s,n,a,r,o),l&&(Mt.a=e.width/l.width,Mt.d=e.height/l.height,zt(h,Mt)),t.transform=h}function Ht(t,e,i,s,n,a,r,o,l,h,d,c){const u=Dt();if(c)jt(u,e,n,a,r,o,l,h);else{if(l)if("center"===d)Ft(u,{x:i/2,y:s/2},l);else switch(Gt(u,l),l){case 90:It(u,s,0);break;case 180:It(u,i,s);break;case 270:It(u,0,i)}Ot.x=e.x+n,Ot.y=e.y+a,It(u,Ot.x,Ot.y),r&&Yt(u,Ot,r,o)}t.transform=u}function jt(t,e,i,s,n,a,r,o){r&&Gt(t,r),o&&Xt(t,o.x,o.y),n&&Ut(t,n,a),It(t,e.x+i,e.y+s)}const{get:Vt,translate:Qt}=C,Zt=new _,$t={},Jt={};function Kt(t,e,i,s){const{changeful:n,sync:a,scaleFixed:r}=i;n&&(t.changeful=n),a&&(t.sync=a),r&&(t.scaleFixed=r),t.data=te(i,s,e)}function te(t,e,i){t.padding&&(e=Zt.set(e).shrink(t.padding)),"strench"===t.mode&&(t.mode="stretch");let{width:s,height:n}=i;const{opacity:a,mode:r,align:o,offset:l,scale:h,size:d,rotation:c,skew:u,clipSize:f,repeat:g,gap:p,filters:_}=t,y=e.width===s&&e.height===n,w={mode:r},m="center"!==o&&(c||0)%180==90;let x,v;switch(B.set(Jt,0,0,m?n:s,m?s:n),r&&"cover"!==r&&"fit"!==r?((h||d)&&(W.getScaleData(h,d,i,$t),x=$t.scaleX,v=$t.scaleY),(o||p||g)&&(x&&B.scale(Jt,x,v,!0),o&&P.toPoint(o,Jt,e,Jt,!0,!0))):y&&!c||(x=v=B.getFitScale(e,Jt,"fit"!==r),B.put(e,i,o,x,!1,Jt),B.scale(Jt,x,v,!0)),l&&O.move(Jt,l),r){case"stretch":y||(s=e.width,n=e.height);break;case"normal":case"clip":(Jt.x||Jt.y||x||f||c||u)&&Nt(w,e,Jt.x,Jt.y,x,v,c,u,t.clipSize);break;case"repeat":(!y||x||c||u)&&Ht(w,e,s,n,Jt.x,Jt.y,x,v,c,u,o,t.freeTransform),g||(w.repeat="repeat");const i=E(g);(p||i)&&(w.gap=function(t,e,i,s,n){let a,r;E(t)?(a=t.x,r=t.y):a=r=t;return{x:ee(a,i,n.width,e&&e.x),y:ee(r,s,n.height,e&&e.y)}}(p,i&&g,Jt.width,Jt.height,e));break;default:x&&qt(w,e,Jt.x,Jt.y,x,v,c)}return w.transform||(e.x||e.y)&&(w.transform=Vt(),Qt(w.transform,e.x,e.y)),x&&"stretch"!==r&&(w.scaleX=x,w.scaleY=v),w.width=s,w.height=n,a&&(w.opacity=a),_&&(w.filters=_),g&&(w.repeat=A(g)?"x"===g?"repeat-x":"repeat-y":"repeat"),w}function ee(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 ie,se=new _;const{isSame:ne}=B;function ae(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||Kt(n,s,i,a),!0}function re(t,e){he(t,M.LOAD,e)}function oe(t,e){he(t,M.LOADED,e)}function le(t,e,i){e.error=i,t.forceUpdate("surface"),he(t,M.ERROR,e)}function he(t,e,i){t.hasEvent(e)&&t.emitEvent(new M(e,i))}function de(t,e){const{leafer:i}=t;i&&i.viewReady&&(i.renderer.ignore=e)}const{get:ce,scale:ue,copy:fe}=C,{floor:ge,ceil:pe,max:_e,abs:ye}=Math;function we(t,i,s){let{scaleX:n,scaleY:a}=t.getRenderScaleData(!0,i.scaleFixed);const r=n+"-"+a+"-"+s;if(i.patternId===r||t.destroyed)return!1;{const{image:o,data:l}=i;let h,d,{width:c,height:u,scaleX:f,scaleY:g,transform:p,repeat:_,gap:y}=l;n*=s,a*=s,f&&(f=ye(f),g=ye(g),d=ce(),fe(d,p),ue(d,1/f,1/g),n*=f,a*=g),c*=n,u*=a;const w=c*u;if(!_&&w>e.image.maxCacheSize)return!1;let m=e.image.maxPatternSize;if(o.isSVG){const t=c/o.width;t>1&&(h=t/pe(t))}else{const t=o.width*o.height;m>t&&(m=t)}w>m&&(h=Math.sqrt(w/m)),h&&(n/=h,a/=h,c/=h,u/=h),f&&(n/=f,a/=g);const x=y&&y.x*n,v=y&&y.y*a;if(p||1!==n||1!==a){const t=c+(x||0),e=u+(v||0);n/=t/_e(ge(t),1),a/=e/_e(ge(e),1),d||(d=ce(),p&&fe(d,p)),ue(d,1/n,1/a)}const b=o.getCanvas(c,u,l.opacity,l.filters,x,v,t.leafer&&t.leafer.config.smooth),k=o.getPattern(b,_||e.origin.noRepeat||"no-repeat",d,i);return i.style=k,i.patternId=r,!0}}function me(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"==typeof SuppressedError&&SuppressedError;const xe={image:function(t,e,i,s,n){let a,r;const o=b.get(i);return ie&&i===ie.paint&&ne(s,ie.boxBounds)?a=ie.leafPaint:(a={type:i.type,image:o},o.hasAlphaPixel&&(a.isTransparent=!0),ie=o.use>1?{leafPaint:a,paint:i,boxBounds:se.set(s)}:null),(n||o.loading)&&(r={image:o,attrName:e,attrValue:i}),o.ready?(ae(t,e,i,o,a,s),n&&(re(t,r),oe(t,r))):o.error?n&&le(t,r,o.error):(n&&(de(t,!0),re(t,r)),a.loadId=o.load(()=>{de(t,!1),t.destroyed||(ae(t,e,i,o,a,s)&&(o.hasAlphaPixel&&(t.__layout.hitCanvasChanged=!0),t.forceUpdate("surface")),oe(t,r)),a.loadId=void 0},e=>{de(t,!1),le(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){const{scaleX:a,scaleY:r}=t.getRenderScaleData(!0,s.scaleFixed),{pixelRatio:o}=i,{data:l}=s;if(!l||s.patternId===a+"-"+r+"-"+o&&!N.running)return!1;if(n)if(l.repeat)n=!1;else if(!(s.changeful||"miniapp"===e.name&&k.isResizing(t)||N.running)){let{width:t,height:i}=l;t*=a*o,i*=r*o,l.scaleX&&(t*=l.scaleX,i*=l.scaleY),n=t*i>e.image.maxCacheSize}return n?(t.__.__isFastShadow&&(i.fillStyle=s.style||"#000",i.fill()),function(t,e,i,s){e.save(),e.clipUI(t),i.blendMode&&(e.blendMode=i.blendMode);s.opacity&&(e.opacity*=s.opacity);s.transform&&e.transform(s.transform);e.drawImage(i.image.getFull(s.filters),0,0,s.width,s.height),e.restore()}(t,i,s,l),!0):(!s.style||s.sync||N.running?we(t,s,o):s.patternTask||(s.patternTask=b.patternTasker.add(()=>me(this,void 0,void 0,function*(){s.patternTask=null,i.bounds.hit(t.__nowWorld)&&we(t,s,o),t.forceUpdate("surface")}),300)),!1)},createPattern:we,recycleImage:function(t,e){const i=e["_"+t];if(y(i)){let s,n,a,r,o;for(let l=0,h=i.length;l<h;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]||[],y(r)||(r=[r])),n.unload(i[l].loadId,!r.some(t=>t.url===o))));return a}return null},createData:Kt,getPatternData:te,fillOrFitMode:qt,clipMode:Nt,repeatMode:Ht},{toPoint:ve}=D,{hasTransparent:be}=X,ke={},Be={};function Se(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=X.string(n,s)):(r=n.offset,a=X.string(n.color,s)),e.addColorStop(r,a),!o&&be(a)&&(o=!0);o&&(t.isTransparent=!0)}}const{getAngle:Ee,getDistance:Re}=O,{get:Le,rotateOfOuter:Ae,scaleOfOuter:Te}=C,{toPoint:Ce}=D,We={},Pe={};function Oe(t,e,i,s,n){let a;const{width:r,height:o}=t;if(r!==o||s){const t=Ee(e,i);a=Le(),n?(Te(a,e,r/o*(s||1),1),Ae(a,e,t+90)):(Te(a,e,1,r/o*(s||1)),Ae(a,e,t))}return a}const{getDistance:Me}=O,{toPoint:De}=D,Fe={},Ie={};const Ye={linearGradient:function(t,i){let{from:s,to:n,type:a,opacity:r}=t;ve(s||"top",i,ke),ve(n||"bottom",i,Be);const o=e.canvas.createLinearGradient(ke.x,ke.y,Be.x,Be.y),l={type:a,style:o};return Se(l,o,t.stops,r),l},radialGradient:function(t,i){let{from:s,to:n,type:a,opacity:r,stretch:o}=t;Ce(s||"center",i,We),Ce(n||"bottom",i,Pe);const l=e.canvas.createRadialGradient(We.x,We.y,0,We.x,We.y,Re(We,Pe)),h={type:a,style:l};Se(h,l,t.stops,r);const d=Oe(i,We,Pe,o,!0);return d&&(h.transform=d),h},conicGradient:function(t,i){let{from:s,to:n,type:a,opacity:r,stretch:o}=t;De(s||"center",i,Fe),De(n||"bottom",i,Ie);const l=e.conicGradientSupport?e.canvas.createConicGradient(0,Fe.x,Fe.y):e.canvas.createRadialGradient(Fe.x,Fe.y,0,Fe.x,Fe.y,Me(Fe,Ie)),h={type:a,style:l};Se(h,l,t.stops,r);const d=Oe(i,Fe,Ie,o||1,e.conicGradientRotate90);return d&&(h.transform=d),h},getTransform:Oe},{copy:ze,toOffsetOutBounds:Ue}=B,Ge={},Xe={};function qe(t,i,s,n){const{bounds:a,shapeBounds:r}=n;if(e.fullImageShadow){if(ze(Ge,t.bounds),Ge.x+=i.x-r.x,Ge.y+=i.y-r.y,s){const{fitMatrix:t}=n;Ge.x-=(a.x+(t?t.e:0)+a.width/2)*(s-1),Ge.y-=(a.y+(t?t.f:0)+a.height/2)*(s-1),Ge.width*=s,Ge.height*=s}t.copyWorld(n.canvas,t.bounds,Ge)}else s&&(ze(Ge,i),Ge.x-=i.width/2*(s-1),Ge.y-=i.height/2*(s-1),Ge.width*=s,Ge.height*=s),t.copyWorld(n.canvas,r,s?Ge:i)}const{toOffsetOutBounds:Ne}=B,He={};const je={shadow:function(t,e,i){let s,n;const{__nowWorld:a,__layout:r}=t,{shadow:o}=t.__,{worldCanvas:l,bounds:h,shapeBounds:d,scaleX:c,scaleY:u}=i,g=e.getSameCanvas(),p=o.length-1;Ue(h,Xe),o.forEach((o,_)=>{let y=1;if(o.scaleFixed){const t=Math.abs(a.scaleX);t>1&&(y=1/t)}g.setWorldShadow(Xe.offsetX+o.x*c*y,Xe.offsetY+o.y*u*y,o.blur*c*y,X.string(o.color)),n=o.spread?1+2*o.spread/(r.boxBounds.width+2*(r.strokeBoxSpread||0))*y:0,qe(g,Xe,n,i),s=h,o.box&&(g.restore(),g.save(),l&&(g.copyWorld(g,h,a,"copy"),s=a),l?g.copyWorld(l,a,a,"destination-out"):g.copyWorld(i.canvas,d,h,"destination-out")),f.copyCanvasByWorld(t,e,g,s,o.blendMode),p&&_<p&&g.clearWorld(s)}),g.recycle(s)},innerShadow:function(t,e,i){let s,n;const{__nowWorld:a,__layout:r}=t,{innerShadow:o}=t.__,{worldCanvas:l,bounds:h,shapeBounds:d,scaleX:c,scaleY:u}=i,g=e.getSameCanvas(),p=o.length-1;Ne(h,He),o.forEach((o,_)=>{let y=1;if(o.scaleFixed){const t=Math.abs(a.scaleX);t>1&&(y=1/t)}g.save(),g.setWorldShadow(He.offsetX+o.x*c*y,He.offsetY+o.y*u*y,o.blur*c*y),n=o.spread?1-2*o.spread/(r.boxBounds.width+2*(r.strokeBoxSpread||0))*y:0,qe(g,He,n,i),g.restore(),l?(g.copyWorld(g,h,a,"copy"),g.copyWorld(l,a,a,"source-out"),s=a):(g.copyWorld(i.canvas,d,h,"source-out"),s=h),g.fillWorld(s,X.string(o.color),"source-in"),f.copyCanvasByWorld(t,e,g,s,o.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){}},{excludeRenderBounds:Ve}=p;let Qe;function Ze(t,e,i,s,n,a,r,o){switch(e){case"grayscale":Qe||(Qe=!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);Je(t,e,i,1,n,a)}(t,i,s,n,r,o);break;case"opacity-path":Je(t,i,s,a,r,o);break;case"path":o&&i.restore()}}function $e(t){return t.getSameCanvas(!1,!0)}function Je(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)}H.prototype.__renderMask=function(t,e){let i,s,n,a,r,o;const{children:l}=this;for(let h=0,d=l.length;h<d;h++){if(i=l[h],o=i.__.mask,o){r&&(Ze(this,r,t,n,s,a,void 0,!0),s=n=null),a=i.__.opacity,Qe=!1,"path"===o||"clipping-path"===o?(a<1?(r="opacity-path",n||(n=$e(t))):(r="path",t.save()),i.__clip(n||t,e)):(r="grayscale"===o?"grayscale":"alpha",s||(s=$e(t)),n||(n=$e(t)),i.__render(s,e)),"clipping"!==o&&"clipping-path"!==o||Ve(i,e)||i.__render(t,e);continue}const d=1===a&&i.__.__blendMode;d&&Ze(this,r,t,n,s,a,void 0,!1),Ve(i,e)||i.__render(n||t,e),d&&Ze(this,r,t,n,s,a,d,!1)}Ze(this,r,t,n,s,a,void 0,!0)};const Ke=">)]}%!?,.:;'\"》)」〉』〗】〕}┐>’”!?,、。:;‰",ti=Ke+"_#~&*+\\=|≮≯≈≠=…",ei=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 ii(t){const e={};return t.split("").forEach(t=>e[t]=!0),e}const si=ii("ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyz"),ni=ii("{[(<'\"《(「〈『〖【〔{┌<‘“=¥¥$€££¢¢"),ai=ii(Ke),ri=ii(ti),oi=ii("- —/~|┆·");var li;!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"}(li||(li={}));const{Letter:hi,Single:di,Before:ci,After:ui,Symbol:fi,Break:gi}=li;function pi(t){return si[t]?hi:oi[t]?gi:ni[t]?ci:ai[t]?ui:ri[t]?fi:ei.test(t)?di:hi}const _i={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 yi(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:wi}=_i,{Letter:mi,Single:xi,Before:vi,After:bi,Symbol:ki,Break:Bi}=li;let Si,Ei,Ri,Li,Ai,Ti,Ci,Wi,Pi,Oi,Mi,Di,Fi,Ii,Yi,zi,Ui,Gi=[];function Xi(t,e){Pi&&!Wi&&(Wi=Pi),Si.data.push({char:t,width:e}),Ri+=e}function qi(){Li+=Ri,Si.width=Ri,Ei.words.push(Si),Si={data:[]},Ri=0}function Ni(){Ii&&(Yi.paraNumber++,Ei.paraStart=!0,Ii=!1),Pi&&(Ei.startCharSize=Wi,Ei.endCharSize=Pi,Wi=0),Ei.width=Li,zi.width?wi(Ei):Ui&&Hi(),Gi.push(Ei),Ei={words:[]},Li=0}function Hi(){Li>(Yi.maxWidth||0)&&(Yi.maxWidth=Li)}const{top:ji,right:Vi,bottom:Qi,left:Zi}=F;function $i(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 Ji={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{textDecoration:o,__font:l,__padding:h}=i;h&&(a?(s=h[Zi],a-=h[Vi]+h[Zi]):i.autoSizeAlign||(s=h[Zi]),r?(n=h[ji],r-=h[ji]+h[Qi]):i.autoSizeAlign||(n=h[ji]));const d={bounds:{x:s,y:n,width:a,height:r},rows:[],paraNumber:0,font:e.canvas.font=l};return function(t,i,s){Yi=t,Gi=t.rows,zi=t.bounds,Ui=!zi.width&&!s.autoSizeAlign;const{__letterSpacing:n,paraIndent:a,textCase:r}=s,{canvas:o}=e,{width:l,height:h}=zi;if(l||h||n||"none"!==r){const t="none"!==s.textWrap,e="break"===s.textWrap;Ii=!0,Mi=null,Wi=Ci=Pi=Ri=Li=0,Si={data:[]},Ei={words:[]},n&&(i=[...i]);for(let s=0,h=i.length;s<h;s++)Ti=i[s],"\n"===Ti?(Ri&&qi(),Ei.paraEnd=!0,Ni(),Ii=!0):(Oi=pi(Ti),Oi===mi&&"none"!==r&&(Ti=yi(Ti,r,!Ri)),Ci=o.measureText(Ti).width,n&&(n<0&&(Pi=Ci),Ci+=n),Di=Oi===xi&&(Mi===xi||Mi===mi)||Mi===xi&&Oi!==bi,Fi=!(Oi!==vi&&Oi!==xi||Mi!==ki&&Mi!==bi),Ai=Ii&&a?l-a:l,t&&l&&Li+Ri+Ci>Ai&&(e?(Ri&&qi(),Li&&Ni()):(Fi||(Fi=Oi===mi&&Mi==bi),Di||Fi||Oi===Bi||Oi===vi||Oi===xi||Ri+Ci>Ai?(Ri&&qi(),Li&&Ni()):Li&&Ni()))," "===Ti&&!0!==Ii&&Li+Ri===0||(Oi===Bi?(" "===Ti&&Ri&&qi(),Xi(Ti,Ci),qi()):Di||Fi?(Ri&&qi(),Xi(Ti,Ci)):Xi(Ti,Ci)),Mi=Oi);Ri&&qi(),Li&&Ni(),Gi.length>0&&(Gi[Gi.length-1].paraEnd=!0)}else i.split("\n").forEach(t=>{Yi.paraNumber++,Li=o.measureText(t).width,Gi.push({x:a||0,text:t,width:Li,paraStart:!0}),Ui&&Hi()})}(d,t,i),h&&function(t,e,i,s,n){if(!s&&i.autoSizeAlign)switch(i.textAlign){case"left":$i(e,"x",t[Zi]);break;case"right":$i(e,"x",-t[Vi])}if(!n&&i.autoSizeAlign)switch(i.verticalAlign){case"top":$i(e,"y",t[ji]);break;case"bottom":$i(e,"y",-t[Qi])}}(h,d,i,a,r),function(t,e){const{rows:i,bounds:s}=t,n=i.length,{__lineHeight:a,__baseLine:r,__letterSpacing:o,__clipText:l,textAlign:h,verticalAlign:d,paraSpacing:c,autoSizeAlign:u}=e;let{x:f,y:g,width:p,height:_}=s,y=a*n+(c?c*(t.paraNumber-1):0),w=r;if(l&&y>_)y=Math.max(_,a),n>1&&(t.overflow=n);else if(_||u)switch(d){case"middle":g+=(_-y)/2;break;case"bottom":g+=_-y}w+=g;let m,x,v,b=p||u?p:t.maxWidth;for(let r=0,d=n;r<d;r++){if(m=i[r],m.x=f,m.width<p||m.width>p&&!l)switch(h){case"center":m.x+=(b-m.width)/2;break;case"right":m.x+=b-m.width}m.paraStart&&c&&r>0&&(w+=c),m.y=w,w+=a,t.overflow>r&&w>y&&(m.isOverflow=!0,t.overflow=r+1),x=m.x,v=m.width,o<0&&(m.width<0?(v=-m.width+e.fontSize+o,x-=v,v+=e.fontSize):v-=o),x<s.x&&(s.x=x),v>s.width&&(s.width=v),l&&p&&p<v&&(m.isOverflow=!0,t.overflow||(t.overflow=i.length))}s.y=g,s.height=y}(d,i),function(t,e,i){const{rows:s}=t,{textAlign:n,paraIndent:a,letterSpacing:r}=e;let o,l,h,d,c,u;s.forEach(t=>{t.words&&(h=a&&t.paraStart?a:0,u=t.words.length,l=i&&("justify"===n||"both"===n)&&u>1?(i-t.width-h)/(u-1):0,d=r||t.isOverflow?0:l>.01?1:2,t.isOverflow&&!r&&(t.textMode=!0),2===d?(t.x+=h,function(t){t.text="",t.words.forEach(e=>{e.data.forEach(e=>{t.text+=e.char})})}(t)):(t.x+=h,o=t.x,t.data=[],t.words.forEach((e,i)=>{1===d?(c={char:"",x:o},o=function(t,e,i){return t.forEach(t=>{i.char+=t.char,e+=t.width}),e}(e.data,o,c),(t.isOverflow||" "!==c.char)&&t.data.push(c)):o=function(t,e,i,s){return t.forEach(t=>{(s||" "!==t.char)&&(t.x=e,i.push(t)),e+=t.width}),e}(e.data,o,t.data,t.isOverflow),!l||t.paraEnd&&"both"!==n||i===u-1||(o+=l,t.width+=l)})),t.words=null)})}(d,i,a),d.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 h=o?e.canvas.measureText(o).width:0,d=s+n-h;("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<d));s--){if(l<d&&" "!==t.char||!s){e.data.splice(s+1),e.width-=t.width;break}e.width-=t.width}e.width+=h,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)}})}}(d,i,s,a),"none"!==o&&function(t,e){let i;const{fontSize:s,textDecoration:n}=e;switch(t.decorationHeight=s/11,E(n)?(i=n.type,n.color&&(t.decorationColor=X.string(n.color))):i=n,i){case"under":t.decorationY=[.15*s];break;case"delete":t.decorationY=[.35*-s];break;case"under-delete":t.decorationY=[.15*s,.35*-s]}}(d,i),d}};const Ki={string:function(t,e){const i=I(e)&&e<1;if(A(t)){if(!i||!X.object)return t;t=X.object(t)}let s=L(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(j,Ji),Object.assign(X,Ki),Object.assign(G,Pt),Object.assign(U,xe),Object.assign(q,Ye),Object.assign(V,je),Object.assign(n,{interaction:(t,e,i,s)=>new z(t,e,i,s),hitCanvas:(t,e)=>new Q(t,e),hitCanvasManager:()=>new Y}),$();export{dt as Layouter,Q as LeaferCanvas,gt as Picker,ut as Renderer,pt as Selector,K as Watcher,$ as useCanvas};
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 h,ChildEvent as d,WatchEvent as c,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 x,Run as v,ImageManager as b,ResizeEvent as k,BoundsHelper as B,Plugin as S,isObject as E,Matrix as R,isUndefined as L,isString as A,getMatrixData as T,MatrixHelper as C,MathHelper as M,AlignHelper as O,PointHelper as W,ImageEvent as P,AroundHelper as D,Direction4 as F,isNumber as I}from"@leafer/core";export*from"@leafer/core";export{LeaferImage}from"@leafer/core";import{HitCanvasManager as Y,InteractionBase as z}from"@leafer-ui/core";export*from"@leafer-ui/core";import{PaintImage as U,Paint as G,ColorConvert as X,PaintGradient as q,Export as N,Effect as j,Group as H,TextConvert as V}from"@leafer-ui/draw";class Q extends t{get allowBackgroundColor(){return!0}init(){this.__createView(),this.__createContext(),this.resize(this.config)}__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}}i(OffscreenCanvasRenderingContext2D.prototype),i(Path2D.prototype);const{mineType:Z}=s;function $(t,i){e.origin={createCanvas:(t,e)=>new OffscreenCanvas(t,e),canvasToDataURL:(t,e,i)=>new Promise((s,n)=>{t.convertToBlob({type:Z(e),quality:i}).then(t=>{var e=new FileReader;e.onload=t=>s(t.target.result),e.onerror=t=>n(t),e.readAsDataURL(t)}).catch(t=>{n(t)})}),canvasToBolb:(t,e,i)=>t.convertToBlob({type:Z(e),quality:i}),canvasSaveAs:(t,e,i)=>new Promise(t=>t()),download(t,e){},loadImage:t=>new Promise((i,s)=>{let n=new XMLHttpRequest;n.open("GET",e.image.getRealURL(t),!0),n.responseType="blob",n.onload=()=>{createImageBitmap(n.response).then(t=>{i(t)}).catch(t=>{s(t)})},n.onerror=t=>s(t),n.send()})},e.canvas=n.canvas(),e.conicGradientSupport=!!e.canvas.context.createConicGradient}Object.assign(n,{canvas:(t,e)=>new Q(t,e),image:t=>new a(t)}),e.name="web",e.isWorker=!0,e.backgrounder=!0,e.requestRender=function(t){requestAnimationFrame(t)},r(e,"devicePixelRatio",{get:()=>1});const{userAgent:J}=navigator;J.indexOf("Firefox")>-1?(e.conicGradientRotate90=!0,e.intWheelDeltaY=!0):(/iPhone|iPad|iPod/.test(navigator.userAgent)||/Macintosh/.test(navigator.userAgent)&&/Version\/[\d.]+.*Safari/.test(navigator.userAgent))&&(e.fullImageShadow=!0),J.indexOf("Windows")>-1?(e.os="Windows",e.intWheelDeltaY=!0):J.indexOf("Mac")>-1?e.os="Mac":J.indexOf("Linux")>-1&&(e.os="Linux");class K{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(h.REQUEST)}__onAttrChange(t){this.__updatedList.add(t.target),this.update()}__onChildEvent(t){t.type===d.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 c(c.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],[[d.ADD,d.REMOVE],this.__onChildEvent,this],[c.REQUEST,this.__onRquestData,this]])]}__removeListenEvents(){this.target.off_(this.__eventIds)}destroy(){this.target&&(this.stop(),this.__removeListenEvents(),this.target=this.__updatedList=null)}}const{updateAllMatrix:tt,updateBounds:et,updateChange:it}=f,{pushAllChildBranch:st,pushAllParent:nt}=g;const{worldBounds:at}=p;class rt{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,at)}setAfter(){this.afterBounds.setListWithFn(this.updatedList.list,at),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:ot,updateAllChange:lt}=f,ht=y.get("Layouter");class dt{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(x.START),this.layoutOnce(),t.emitEvent(new x(x.END,this.layoutedBlocks,this.times))}catch(t){ht.error(t)}this.layoutedBlocks=null}layoutAgain(){this.layouting?this.waitAgain=!0:this.layoutOnce()}layoutOnce(){return this.layouting?ht.warn("layouting"):this.times>3?ht.warn("layout max times"):(this.times++,this.totalTimes++,this.layouting=!0,this.target.emit(c.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=v.start("PartLayout"),{target:i,__updatedList:s}=this,{BEFORE:n,LAYOUT:a,AFTER:r}=x,o=this.getBlocks(s);o.forEach(t=>t.setBefore()),i.emitEvent(new x(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?(tt(t,!0),e.add(t),t.isBranch&&st(t,e),nt(t,e)):i.boundsChanged&&(e.add(t),t.isBranch&&(t.__tempNumber=0),nt(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||et(s[t])}et(i)}})}(this.__levelList),function(t){t.list.forEach(it)}(s),this.extraBlock&&o.push(this.extraBlock),o.forEach(t=>t.setAfter()),i.emitEvent(new x(a,o,this.times)),i.emitEvent(new x(r,o,this.times)),this.addBlocks(o),this.__levelList.reset(),this.__updatedList=null,v.end(e)}fullLayout(){const t=v.start("FullLayout"),{target:e}=this,{BEFORE:i,LAYOUT:s,AFTER:n}=x,a=this.getBlocks(new o(e));e.emitEvent(new x(i,a,this.times)),dt.fullLayout(e),a.forEach(t=>{t.setAfter()}),e.emitEvent(new x(s,a,this.times)),e.emitEvent(new x(n,a,this.times)),this.addBlocks(a),v.end(t)}static fullLayout(t){ot(t,!0),t.isBranch?g.updateBounds(t):f.updateBounds(t),lt(t)}addExtra(t){if(!this.__updatedList.has(t)){const{updatedList:e,beforeBounds:i}=this.extraBlock||(this.extraBlock=new rt([]));e.length?i.add(t.__world):i.set(t.__world),e.add(t)}}createBlock(t){return new rt(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_([[x.REQUEST,this.layout,this],[x.AGAIN,this.layoutAgain,this],[c.DATA,this.__onReceiveWatchData,this]])]}__removeListenEvents(){this.target.off_(this.__eventIds)}destroy(){this.target&&(this.stop(),this.__removeListenEvents(),this.target=this.config=null)}}const ct=y.get("Renderer");class ut{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.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(x.REQUEST)}checkRender(){if(this.running){const{target:t}=this;t.isApp&&(t.emit(h.CHILD_START,t),t.children.forEach(t=>{t.renderer.FPS=this.FPS,t.renderer.checkRender()}),t.emit(h.CHILD_END,t)),this.changed&&this.canvas.view&&this.render(),this.target.emit(h.NEXT)}}render(t){if(!this.running||!this.canvas.view)return this.update();const{target:e}=this;this.times=0,this.totalBounds=new _,ct.log(e.innerName,"---\x3e");try{this.emitRender(h.START),this.renderOnce(t),this.emitRender(h.END,this.totalBounds),b.clearRecycled()}catch(t){this.rendering=!1,ct.error(t)}ct.log("-------------|")}renderAgain(){this.rendering?this.waitAgain=!0:this.renderOnce()}renderOnce(t){if(this.rendering)return ct.warn("rendering");if(this.times>3)return ct.warn("render max times");if(this.times++,this.totalTimes++,this.rendering=!0,this.changed=!1,this.renderBounds=new _,this.renderOptions={},t)this.emitRender(h.BEFORE),t();else{if(this.requestLayout(),this.ignore)return void(this.ignore=this.rendering=!1);this.emitRender(h.BEFORE),this.config.usePartRender&&this.totalTimes>1?this.partRender():this.fullRender()}this.emitRender(h.RENDER,this.renderBounds,this.renderOptions),this.emitRender(h.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=v.start("PartRender"),{canvas:i}=this,s=t.getIntersect(i.bounds),n=new _(s);i.save(),s.spread(ut.clipSpread).ceil(),i.clearWorld(s),i.clipWorld(s),this.__render(s,n),i.restore(),v.end(e)}fullRender(){const t=v.start("FullRender"),{canvas:e}=this;e.save(),e.clear(),this.__render(e.bounds),e.restore(),v.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);const i=this.requestTime=Date.now(),s=()=>{const t=1e3/(Date.now()-i),{maxFPS:n}=this.config;if(n&&t>n-.5)return e.requestRender(s);this.FPS=Math.min(120,Math.ceil(t)),this.requestTime=0,this.checkRender()};e.requestRender(s)}__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||ct.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 h(t,this.times,e,i))}__listenEvents(){this.__eventIds=[this.target.on_([[h.REQUEST,this.update,this],[x.END,this.__onLayoutEnd,this],[h.AGAIN,this.renderAgain,this],[k.RESIZE,this.__onResize,this]])]}__removeListenEvents(){this.target.off_(this.__eventIds)}destroy(){this.target&&(this.stop(),this.__removeListenEvents(),this.config={},this.target=this.canvas=null)}}ut.clipSpread=10;const{hitRadiusPoint:ft}=B;class gt{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),h=n?this.getPath(l):this.getHitablePath(l);return this.clear(),s?{path:h,target:l,throughPath:r.length?this.getThroughPath(r):h}:{path:h,target:l}}hitPoint(t,e,i){return!!this.getByPoint(t,e,i).target}getBestMatchLeaf(t,e,i){const s=this.findList=new o;if(t.length){let e;const{x:n,y:a}=this.point,r={x:n,y:a,radiusX:0,radiusY:0};for(let n=0,a=t.length;n<a;n++)if(e=t[n],(i||f.worldHittable(e))&&(this.hitChild(e,r),s.length)){if(e.isBranchLeaf&&t.some(t=>t!==e&&f.hasParent(t,e))){s.reset();break}return s.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),s.length)return s.list[0];return i?t[0]:t.find(t=>f.worldHittable(t))}getPath(t){const e=new o;for(;t;)e.add(t),t=t.parent;return this.target&&e.add(this.target),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--)i=t[a],!i.__.visible||e&&!i.__.mask||(s=!!i.__.hitRadius||ft(i.__world,n),i.isBranch?(s||i.__ignoreHitWorld)&&(i.topChildren&&this.eachFind(i.topChildren,!1),this.eachFind(i.children,i.__onlyHitMask),i.isBranchLeaf&&this.hitChild(i,n)):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 pt{constructor(t,e){this.config={},e&&(this.config=l.default(e,this.config)),this.picker=new gt(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):S.need("find")}destroy(){this.picker.destroy(),this.finder&&this.finder.destroy()}}function _t(t,e){const i=t.__,{rows:s,decorationY:n}=i.__textDrawData;let a;i.__isPlacehold&&i.placeholderColor&&(e.fillStyle=i.placeholderColor);for(let t=0,i=s.length;t<i;t++)a=s[t],a.text?e.fillText(a.text,a.x,a.y):a.data&&a.data.forEach(t=>{e.fillText(t.char,t.x,a.y)});if(n){const{decorationColor:t,decorationHeight:a}=i.__textDrawData;t&&(e.fillStyle=t),s.forEach(t=>n.forEach(i=>e.fillRect(t.x,t.y+i,t.width,a)))}}function wt(t,e){t.__.__font?_t(t,e):t.__.windingRule?e.fill(t.__.windingRule):e.fill()}function yt(t,e,i){switch(e.__.strokeAlign){case"center":mt(t,1,e,i);break;case"inside":xt(t,"inside",e,i);break;case"outside":e.__.__fillAfterStroke?mt(t,2,e,i):xt(t,"outside",e,i)}}function mt(t,e,i,s){const n=i.__;E(t)?bt(t,e,!0,i,s):(s.setStroke(t,n.__strokeWidth*e,n),vt(i,s))}function xt(t,e,i,s){const n=s.getSameCanvas(!0,!0);n.font=i.__.__font,mt(t,2,i,n),n.blendMode="outside"===e?"destination-out":"destination-in",_t(i,n),n.blendMode="normal",f.copyCanvasByWorld(i,s,n),n.recycle(i.__nowWorld)}function vt(t,e){let i,s=t.__.__textDrawData;const{rows:n,decorationY:a}=s;for(let t=0,s=n.length;t<s;t++)i=n[t],i.text?e.strokeText(i.text,i.x,i.y):i.data&&i.data.forEach(t=>{e.strokeText(t.char,t.x,i.y)});if(a){const{decorationHeight:t}=s;n.forEach(i=>a.forEach(s=>e.strokeRect(i.x,i.y+s,i.width,t)))}}function bt(t,e,i,s,n){let a;const r=s.__,{__hasMultiStrokeStyle:o}=r;o||n.setStroke(void 0,r.__strokeWidth*e,r);for(let l=0,h=t.length;l<h;l++)if(a=t[l],(!a.image||!U.checkImage(s,n,a,!1))&&a.style){if(o){const{strokeStyle:t}=a;t?n.setStroke(a.style,r.__getRealStrokeWidth(t)*e,r,t):n.setStroke(a.style,r.__strokeWidth*e,r)}else n.strokeStyle=a.style;a.blendMode?(n.saveBlendMode(a.blendMode),i?vt(s,n):n.stroke(),n.restoreBlendMode()):i?vt(s,n):n.stroke()}}function kt(t,e,i){const s=e.__;if(s.__strokeWidth)if(s.__font)yt(t,e,i);else switch(s.strokeAlign){case"center":Bt(t,1,e,i);break;case"inside":!function(t,e,i){i.save(),i.clipUI(e),Bt(t,2,e,i),i.restore()}(t,e,i);break;case"outside":!function(t,e,i){const s=e.__;if(s.__fillAfterStroke)Bt(t,2,e,i);else{const{renderBounds:n}=e.__layout,a=i.getSameCanvas(!0,!0);e.__drawRenderPath(a),Bt(t,2,e,a),a.clipUI(s),a.clearWorld(n),f.copyCanvasByWorld(e,i,a),a.recycle(e.__nowWorld)}}(t,e,i)}}function Bt(t,e,i,s){const n=i.__;E(t)?bt(t,e,!1,i,s):(s.setStroke(t,n.__strokeWidth*e,n),s.stroke()),n.__useArrow&&G.strokeArrow(t,i,s)}Object.assign(n,{watcher:(t,e)=>new K(t,e),layouter:(t,e)=>new dt(t,e),renderer:(t,e,i)=>new ut(t,e,i),selector:(t,e)=>new pt(t,e)}),e.layout=dt.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:St,getOuterOf:Et,getByMove:Rt,getIntersectData:Lt}=B;let At;const{stintSet:Tt}=l,{hasTransparent:Ct}=X;function Mt(t,e,i){if(!E(e)||!1===e.visible||0===e.opacity)return;let s;const{boxBounds:n}=i.__layout;switch(e.type){case"image":s=U.image(i,t,e,n,!At||!At[e.url]);break;case"linear":s=q.linearGradient(e,n);break;case"radial":s=q.radialGradient(e,n);break;case"angular":s=q.conicGradient(e,n);break;case"solid":const{type:a,color:r,opacity:o}=e;s={type:a,style:X.string(r,o)};break;default:L(e.r)||(s={type:"solid",style:X.string(e)})}if(s){if(A(s.style)&&Ct(s.style)&&(s.isTransparent=!0),e.style){if(0===e.style.strokeWidth)return;s.strokeStyle=e.style}e.editing&&(s.editing=e.editing),e.blendMode&&(s.blendMode=e.blendMode)}return s}const Ot={compute:function(t,e){const i=e.__,s=[];let n,a,r,o=i.__input[t];w(o)||(o=[o]),At=U.recycleImage(t,i);for(let i,n=0,a=o.length;n<a;n++)(i=Mt(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?(Tt(i,"__isAlphaPixelFill",n),Tt(i,"__isTransparentFill",a)):(Tt(i,"__isAlphaPixelStroke",n),Tt(i,"__isTransparentStroke",a),Tt(i,"__hasMultiStrokeStyle",r))},fill:function(t,e,i){i.fillStyle=t,wt(e,i)},fills:function(t,e,i){let s;for(let n=0,a=t.length;n<a;n++){if(s=t[n],s.image){if(U.checkImage(e,i,s,!e.__.__font))continue;if(!s.style){!n&&s.image.isPlacehold&&e.drawImagePlaceholder(i,s.image);continue}}if(i.fillStyle=s.style,s.transform||s.scaleFixed){if(i.save(),s.transform&&i.transform(s.transform),s.scaleFixed){const{scaleX:t,scaleY:n}=e.getRenderScaleData(!0);(!0===s.scaleFixed||"zoom-in"===s.scaleFixed&&t>1&&n>1)&&i.scale(1/t,1/n)}s.blendMode&&(i.blendMode=s.blendMode),wt(e,i),i.restore()}else s.blendMode?(i.saveBlendMode(s.blendMode),wt(e,i),i.restoreBlendMode()):wt(e,i)}},fillPathOrText:wt,fillText:_t,stroke:kt,strokes:function(t,e,i){kt(t,e,i)},strokeText:yt,drawTextStroke:vt,shape:function(t,i,s){const n=i.getSameCanvas(),a=t.__nowWorld,r=i.bounds;let o,l,h,d,c,{scaleX:u,scaleY:f}=t.getRenderScaleData(!0);if(r.includes(a))c=n,o=d=a;else{const{renderShapeSpread:n}=t.__layout;let g;if(e.fullImageShadow)g=a;else{const t=n?St(r,u===f?n*u:[n*f,n*u]):r;g=Lt(t,a)}h=r.getFitMatrix(g);let{a:p,d:_}=h;h.a<1&&(c=i.getSameCanvas(),t.__renderShape(c,s),u*=p,f*=_),d=Et(a,h),o=Rt(d,-h.e,-h.f);const w=s.matrix;w?(l=new R(h),l.multiply(w),p*=w.scaleX,_*=w.scaleY):l=h,l.withScale(p,_),s=Object.assign(Object.assign({},s),{matrix:l})}return t.__renderShape(n,s),{canvas:n,matrix:l,fitMatrix:h,bounds:o,worldCanvas:c,shapeBounds:d,scaleX:u,scaleY:f}}};let Wt={},Pt=T();const{get:Dt,rotateOfOuter:Ft,translate:It,scaleOfOuter:Yt,multiplyParent:zt,scale:Ut,rotate:Gt,skew:Xt}=C;function qt(t,e,i,s,n,a,r){const o=Dt();It(o,e.x+i,e.y+s),Ut(o,n,a),r&&Ft(o,{x:e.x+e.width/2,y:e.y+e.height/2},r),t.transform=o}function Nt(t,e,i,s,n,a,r,o,l){const h=Dt();Ht(h,e,i,s,n,a,r,o),l&&(Pt.a=e.width/l.width,Pt.d=e.height/l.height,zt(h,Pt)),t.transform=h}function jt(t,e,i,s,n,a,r,o,l,h,d,c){const u=Dt();if(c)Ht(u,e,n,a,r,o,l,h);else{if(l)if("center"===d)Ft(u,{x:i/2,y:s/2},l);else switch(Gt(u,l),l){case 90:It(u,s,0);break;case 180:It(u,i,s);break;case 270:It(u,0,i)}Wt.x=e.x+n,Wt.y=e.y+a,It(u,Wt.x,Wt.y),r&&Yt(u,Wt,r,o)}t.transform=u}function Ht(t,e,i,s,n,a,r,o){r&&Gt(t,r),o&&Xt(t,o.x,o.y),n&&Ut(t,n,a),It(t,e.x+i,e.y+s)}const{get:Vt,translate:Qt}=C,Zt=new _,$t={},Jt={};function Kt(t,e,i,s){const{changeful:n,sync:a,scaleFixed:r}=i;n&&(t.changeful=n),a&&(t.sync=a),r&&(t.scaleFixed=r),t.data=te(i,s,e)}function te(t,e,i){t.padding&&(e=Zt.set(e).shrink(t.padding)),"strench"===t.mode&&(t.mode="stretch");let{width:s,height:n}=i;const{opacity:a,mode:r,align:o,offset:l,scale:h,size:d,rotation:c,skew:u,clipSize:f,repeat:g,gap:p,filters:_}=t,w=e.width===s&&e.height===n,y={mode:r},m="center"!==o&&(c||0)%180==90;let x,v;switch(B.set(Jt,0,0,m?n:s,m?s:n),r&&"cover"!==r&&"fit"!==r?((h||d)&&(M.getScaleData(h,d,i,$t),x=$t.scaleX,v=$t.scaleY),(o||p||g)&&(x&&B.scale(Jt,x,v,!0),o&&O.toPoint(o,Jt,e,Jt,!0,!0))):w&&!c||(x=v=B.getFitScale(e,Jt,"fit"!==r),B.put(e,i,o,x,!1,Jt),B.scale(Jt,x,v,!0)),l&&W.move(Jt,l),r){case"stretch":w||(s=e.width,n=e.height);break;case"normal":case"clip":(Jt.x||Jt.y||x||f||c||u)&&Nt(y,e,Jt.x,Jt.y,x,v,c,u,t.clipSize);break;case"repeat":(!w||x||c||u)&&jt(y,e,s,n,Jt.x,Jt.y,x,v,c,u,o,t.freeTransform),g||(y.repeat="repeat");const i=E(g);(p||i)&&(y.gap=function(t,e,i,s,n){let a,r;E(t)?(a=t.x,r=t.y):a=r=t;return{x:ee(a,i,n.width,e&&e.x),y:ee(r,s,n.height,e&&e.y)}}(p,i&&g,Jt.width,Jt.height,e));break;default:x&&qt(y,e,Jt.x,Jt.y,x,v,c)}return y.transform||(e.x||e.y)&&(y.transform=Vt(),Qt(y.transform,e.x,e.y)),x&&"stretch"!==r&&(y.scaleX=x,y.scaleY=v),y.width=s,y.height=n,a&&(y.opacity=a),_&&(y.filters=_),g&&(y.repeat=A(g)?"x"===g?"repeat-x":"repeat-y":"repeat"),y}function ee(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 ie,se=new _;const{isSame:ne}=B;function ae(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||Kt(n,s,i,a),!0}function re(t,e){he(t,P.LOAD,e)}function oe(t,e){he(t,P.LOADED,e)}function le(t,e,i){e.error=i,t.forceUpdate("surface"),he(t,P.ERROR,e)}function he(t,e,i){t.hasEvent(e)&&t.emitEvent(new P(e,i))}function de(t,e){const{leafer:i}=t;i&&i.viewReady&&(i.renderer.ignore=e)}const{get:ce,scale:ue,copy:fe}=C,{floor:ge,ceil:pe,max:_e,abs:we}=Math;function ye(t,i,s){let{scaleX:n,scaleY:a}=t.getRenderScaleData(!0,i.scaleFixed);const r=n+"-"+a+"-"+s;if(i.patternId===r||t.destroyed)return!1;{const{image:o,data:l}=i;let h,d,{width:c,height:u,scaleX:f,scaleY:g,transform:p,repeat:_,gap:w}=l;n*=s,a*=s,f&&(f=we(f),g=we(g),d=ce(),fe(d,p),ue(d,1/f,1/g),n*=f,a*=g),c*=n,u*=a;const y=c*u;if(!_&&y>e.image.maxCacheSize)return!1;let m=e.image.maxPatternSize;if(o.isSVG){const t=c/o.width;t>1&&(h=t/pe(t))}else{const t=o.width*o.height;m>t&&(m=t)}y>m&&(h=Math.sqrt(y/m)),h&&(n/=h,a/=h,c/=h,u/=h),f&&(n/=f,a/=g);const x=w&&w.x*n,v=w&&w.y*a;if(p||1!==n||1!==a){const t=c+(x||0),e=u+(v||0);n/=t/_e(ge(t),1),a/=e/_e(ge(e),1),d||(d=ce(),p&&fe(d,p)),ue(d,1/n,1/a)}const b=o.getCanvas(c,u,l.opacity,l.filters,x,v,t.leafer&&t.leafer.config.smooth),k=o.getPattern(b,_||e.origin.noRepeat||"no-repeat",d,i);return i.style=k,i.patternId=r,!0}}function me(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"==typeof SuppressedError&&SuppressedError;const xe={image:function(t,e,i,s,n){let a,r;const o=b.get(i);return ie&&i===ie.paint&&ne(s,ie.boxBounds)?a=ie.leafPaint:(a={type:i.type,image:o},o.hasAlphaPixel&&(a.isTransparent=!0),ie=o.use>1?{leafPaint:a,paint:i,boxBounds:se.set(s)}:null),(n||o.loading)&&(r={image:o,attrName:e,attrValue:i}),o.ready?(ae(t,e,i,o,a,s),n&&(re(t,r),oe(t,r))):o.error?n&&le(t,r,o.error):(n&&(de(t,!0),re(t,r)),a.loadId=o.load(()=>{de(t,!1),t.destroyed||(ae(t,e,i,o,a,s)&&(o.hasAlphaPixel&&(t.__layout.hitCanvasChanged=!0),t.forceUpdate("surface")),oe(t,r)),a.loadId=void 0},e=>{de(t,!1),le(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){const{scaleX:a,scaleY:r}=t.getRenderScaleData(!0,s.scaleFixed),{pixelRatio:o}=i,{data:l}=s;if(!l||s.patternId===a+"-"+r+"-"+o&&!N.running)return!1;if(n)if(l.repeat)n=!1;else if(!(s.changeful||"miniapp"===e.name&&k.isResizing(t)||N.running)){let{width:t,height:i}=l;t*=a*o,i*=r*o,l.scaleX&&(t*=l.scaleX,i*=l.scaleY),n=t*i>e.image.maxCacheSize}return n?(t.__.__isFastShadow&&(i.fillStyle=s.style||"#000",i.fill()),function(t,e,i,s){e.save(),e.clipUI(t),i.blendMode&&(e.blendMode=i.blendMode);s.opacity&&(e.opacity*=s.opacity);s.transform&&e.transform(s.transform);e.drawImage(i.image.getFull(s.filters),0,0,s.width,s.height),e.restore()}(t,i,s,l),!0):(!s.style||s.sync||N.running?ye(t,s,o):s.patternTask||(s.patternTask=b.patternTasker.add(()=>me(this,void 0,void 0,function*(){s.patternTask=null,i.bounds.hit(t.__nowWorld)&&ye(t,s,o),t.forceUpdate("surface")}),300)),!1)},createPattern:ye,recycleImage:function(t,e){const i=e["_"+t];if(w(i)){let s,n,a,r,o;for(let l=0,h=i.length;l<h;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},createData:Kt,getPatternData:te,fillOrFitMode:qt,clipMode:Nt,repeatMode:jt},{toPoint:ve}=D,{hasTransparent:be}=X,ke={},Be={};function Se(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=X.string(n,s)):(r=n.offset,a=X.string(n.color,s)),e.addColorStop(r,a),!o&&be(a)&&(o=!0);o&&(t.isTransparent=!0)}}const{getAngle:Ee,getDistance:Re}=W,{get:Le,rotateOfOuter:Ae,scaleOfOuter:Te}=C,{toPoint:Ce}=D,Me={},Oe={};function We(t,e,i,s,n){let a;const{width:r,height:o}=t;if(r!==o||s){const t=Ee(e,i);a=Le(),n?(Te(a,e,r/o*(s||1),1),Ae(a,e,t+90)):(Te(a,e,1,r/o*(s||1)),Ae(a,e,t))}return a}const{getDistance:Pe}=W,{toPoint:De}=D,Fe={},Ie={};const Ye={linearGradient:function(t,i){let{from:s,to:n,type:a,opacity:r}=t;ve(s||"top",i,ke),ve(n||"bottom",i,Be);const o=e.canvas.createLinearGradient(ke.x,ke.y,Be.x,Be.y),l={type:a,style:o};return Se(l,o,t.stops,r),l},radialGradient:function(t,i){let{from:s,to:n,type:a,opacity:r,stretch:o}=t;Ce(s||"center",i,Me),Ce(n||"bottom",i,Oe);const l=e.canvas.createRadialGradient(Me.x,Me.y,0,Me.x,Me.y,Re(Me,Oe)),h={type:a,style:l};Se(h,l,t.stops,r);const d=We(i,Me,Oe,o,!0);return d&&(h.transform=d),h},conicGradient:function(t,i){let{from:s,to:n,type:a,opacity:r,stretch:o}=t;De(s||"center",i,Fe),De(n||"bottom",i,Ie);const l=e.conicGradientSupport?e.canvas.createConicGradient(0,Fe.x,Fe.y):e.canvas.createRadialGradient(Fe.x,Fe.y,0,Fe.x,Fe.y,Pe(Fe,Ie)),h={type:a,style:l};Se(h,l,t.stops,r);const d=We(i,Fe,Ie,o||1,e.conicGradientRotate90);return d&&(h.transform=d),h},getTransform:We},{copy:ze,toOffsetOutBounds:Ue}=B,Ge={},Xe={};function qe(t,i,s,n){const{bounds:a,shapeBounds:r}=n;if(e.fullImageShadow){if(ze(Ge,t.bounds),Ge.x+=i.x-r.x,Ge.y+=i.y-r.y,s){const{fitMatrix:t}=n;Ge.x-=(a.x+(t?t.e:0)+a.width/2)*(s-1),Ge.y-=(a.y+(t?t.f:0)+a.height/2)*(s-1),Ge.width*=s,Ge.height*=s}t.copyWorld(n.canvas,t.bounds,Ge)}else s&&(ze(Ge,i),Ge.x-=i.width/2*(s-1),Ge.y-=i.height/2*(s-1),Ge.width*=s,Ge.height*=s),t.copyWorld(n.canvas,r,s?Ge:i)}const{toOffsetOutBounds:Ne}=B,je={};const He={shadow:function(t,e,i){let s,n;const{__nowWorld:a,__layout:r}=t,{shadow:o}=t.__,{worldCanvas:l,bounds:h,shapeBounds:d,scaleX:c,scaleY:u}=i,g=e.getSameCanvas(),p=o.length-1;Ue(h,Xe),o.forEach((o,_)=>{let w=1;if(o.scaleFixed){const t=Math.abs(a.scaleX);t>1&&(w=1/t)}g.setWorldShadow(Xe.offsetX+o.x*c*w,Xe.offsetY+o.y*u*w,o.blur*c*w,X.string(o.color)),n=o.spread?1+2*o.spread/(r.boxBounds.width+2*(r.strokeBoxSpread||0))*w:0,qe(g,Xe,n,i),s=h,o.box&&(g.restore(),g.save(),l&&(g.copyWorld(g,h,a,"copy"),s=a),l?g.copyWorld(l,a,a,"destination-out"):g.copyWorld(i.canvas,d,h,"destination-out")),j.isTransformShadow(o)?j.renderTransformShadow(t,e,g,s,o):f.copyCanvasByWorld(t,e,g,s,o.blendMode),p&&_<p&&g.clearWorld(s)}),g.recycle(s)},innerShadow:function(t,e,i){let s,n;const{__nowWorld:a,__layout:r}=t,{innerShadow:o}=t.__,{worldCanvas:l,bounds:h,shapeBounds:d,scaleX:c,scaleY:u}=i,g=e.getSameCanvas(),p=o.length-1;Ne(h,je),o.forEach((o,_)=>{let w=1;if(o.scaleFixed){const t=Math.abs(a.scaleX);t>1&&(w=1/t)}g.save(),g.setWorldShadow(je.offsetX+o.x*c*w,je.offsetY+o.y*u*w,o.blur*c*w),n=o.spread?1-2*o.spread/(r.boxBounds.width+2*(r.strokeBoxSpread||0))*w:0,qe(g,je,n,i),g.restore(),l?(g.copyWorld(g,h,a,"copy"),g.copyWorld(l,a,a,"source-out"),s=a):(g.copyWorld(i.canvas,d,h,"source-out"),s=h),g.fillWorld(s,X.string(o.color),"source-in"),f.copyCanvasByWorld(t,e,g,s,o.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){},getShadowSpread:function(t,e){let i=0;return e.forEach(t=>i=Math.max(i,Math.max(Math.abs(t.y),Math.abs(t.x))+(t.spread>0?t.spread:0)+1.5*t.blur)),i},isTransformShadow(t){}},{excludeRenderBounds:Ve}=p;let Qe;function Ze(t,e,i,s,n,a,r,o){switch(e){case"grayscale":Qe||(Qe=!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);Je(t,e,i,1,n,a)}(t,i,s,n,r,o);break;case"opacity-path":Je(t,i,s,a,r,o);break;case"path":o&&i.restore()}}function $e(t){return t.getSameCanvas(!1,!0)}function Je(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)}H.prototype.__renderMask=function(t,e){let i,s,n,a,r,o;const{children:l}=this;for(let h=0,d=l.length;h<d;h++){if(i=l[h],o=i.__.mask,o){r&&(Ze(this,r,t,n,s,a,void 0,!0),s=n=null),a=i.__.opacity,Qe=!1,"path"===o||"clipping-path"===o?(a<1?(r="opacity-path",n||(n=$e(t))):(r="path",t.save()),i.__clip(n||t,e)):(r="grayscale"===o?"grayscale":"alpha",s||(s=$e(t)),n||(n=$e(t)),i.__render(s,e)),"clipping"!==o&&"clipping-path"!==o||Ve(i,e)||i.__render(t,e);continue}const d=1===a&&i.__.__blendMode;d&&Ze(this,r,t,n,s,a,void 0,!1),Ve(i,e)||i.__render(n||t,e),d&&Ze(this,r,t,n,s,a,d,!1)}Ze(this,r,t,n,s,a,void 0,!0)};const Ke=">)]}%!?,.:;'\"》)」〉』〗】〕}┐>’”!?,、。:;‰",ti=Ke+"_#~&*+\\=|≮≯≈≠=…",ei=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 ii(t){const e={};return t.split("").forEach(t=>e[t]=!0),e}const si=ii("ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyz"),ni=ii("{[(<'\"《(「〈『〖【〔{┌<‘“=¥¥$€££¢¢"),ai=ii(Ke),ri=ii(ti),oi=ii("- —/~|┆·");var li;!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"}(li||(li={}));const{Letter:hi,Single:di,Before:ci,After:ui,Symbol:fi,Break:gi}=li;function pi(t){return si[t]?hi:oi[t]?gi:ni[t]?ci:ai[t]?ui:ri[t]?fi:ei.test(t)?di:hi}const _i={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 wi(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:yi}=_i,{Letter:mi,Single:xi,Before:vi,After:bi,Symbol:ki,Break:Bi}=li;let Si,Ei,Ri,Li,Ai,Ti,Ci,Mi,Oi,Wi,Pi,Di,Fi,Ii,Yi,zi,Ui,Gi=[];function Xi(t,e){Oi&&!Mi&&(Mi=Oi),Si.data.push({char:t,width:e}),Ri+=e}function qi(){Li+=Ri,Si.width=Ri,Ei.words.push(Si),Si={data:[]},Ri=0}function Ni(){Ii&&(Yi.paraNumber++,Ei.paraStart=!0,Ii=!1),Oi&&(Ei.startCharSize=Mi,Ei.endCharSize=Oi,Mi=0),Ei.width=Li,zi.width?yi(Ei):Ui&&ji(),Gi.push(Ei),Ei={words:[]},Li=0}function ji(){Li>(Yi.maxWidth||0)&&(Yi.maxWidth=Li)}const{top:Hi,right:Vi,bottom:Qi,left:Zi}=F;function $i(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 Ji={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{textDecoration:o,__font:l,__padding:h}=i;h&&(a?(s=h[Zi],a-=h[Vi]+h[Zi]):i.autoSizeAlign||(s=h[Zi]),r?(n=h[Hi],r-=h[Hi]+h[Qi]):i.autoSizeAlign||(n=h[Hi]));const d={bounds:{x:s,y:n,width:a,height:r},rows:[],paraNumber:0,font:e.canvas.font=l};return function(t,i,s){Yi=t,Gi=t.rows,zi=t.bounds,Ui=!zi.width&&!s.autoSizeAlign;const{__letterSpacing:n,paraIndent:a,textCase:r}=s,{canvas:o}=e,{width:l,height:h}=zi;if(l||h||n||"none"!==r){const t="none"!==s.textWrap,e="break"===s.textWrap;Ii=!0,Pi=null,Mi=Ci=Oi=Ri=Li=0,Si={data:[]},Ei={words:[]},n&&(i=[...i]);for(let s=0,h=i.length;s<h;s++)Ti=i[s],"\n"===Ti?(Ri&&qi(),Ei.paraEnd=!0,Ni(),Ii=!0):(Wi=pi(Ti),Wi===mi&&"none"!==r&&(Ti=wi(Ti,r,!Ri)),Ci=o.measureText(Ti).width,n&&(n<0&&(Oi=Ci),Ci+=n),Di=Wi===xi&&(Pi===xi||Pi===mi)||Pi===xi&&Wi!==bi,Fi=!(Wi!==vi&&Wi!==xi||Pi!==ki&&Pi!==bi),Ai=Ii&&a?l-a:l,t&&l&&Li+Ri+Ci>Ai&&(e?(Ri&&qi(),Li&&Ni()):(Fi||(Fi=Wi===mi&&Pi==bi),Di||Fi||Wi===Bi||Wi===vi||Wi===xi||Ri+Ci>Ai?(Ri&&qi(),Li&&Ni()):Li&&Ni()))," "===Ti&&!0!==Ii&&Li+Ri===0||(Wi===Bi?(" "===Ti&&Ri&&qi(),Xi(Ti,Ci),qi()):Di||Fi?(Ri&&qi(),Xi(Ti,Ci)):Xi(Ti,Ci)),Pi=Wi);Ri&&qi(),Li&&Ni(),Gi.length>0&&(Gi[Gi.length-1].paraEnd=!0)}else i.split("\n").forEach(t=>{Yi.paraNumber++,Li=o.measureText(t).width,Gi.push({x:a||0,text:t,width:Li,paraStart:!0}),Ui&&ji()})}(d,t,i),h&&function(t,e,i,s,n){if(!s&&i.autoSizeAlign)switch(i.textAlign){case"left":$i(e,"x",t[Zi]);break;case"right":$i(e,"x",-t[Vi])}if(!n&&i.autoSizeAlign)switch(i.verticalAlign){case"top":$i(e,"y",t[Hi]);break;case"bottom":$i(e,"y",-t[Qi])}}(h,d,i,a,r),function(t,e){const{rows:i,bounds:s}=t,n=i.length,{__lineHeight:a,__baseLine:r,__letterSpacing:o,__clipText:l,textAlign:h,verticalAlign:d,paraSpacing:c,autoSizeAlign:u}=e;let{x:f,y:g,width:p,height:_}=s,w=a*n+(c?c*(t.paraNumber-1):0),y=r;if(l&&w>_)w=Math.max(_,a),n>1&&(t.overflow=n);else if(_||u)switch(d){case"middle":g+=(_-w)/2;break;case"bottom":g+=_-w}y+=g;let m,x,v,b=p||u?p:t.maxWidth;for(let r=0,d=n;r<d;r++){if(m=i[r],m.x=f,m.width<p||m.width>p&&!l)switch(h){case"center":m.x+=(b-m.width)/2;break;case"right":m.x+=b-m.width}m.paraStart&&c&&r>0&&(y+=c),m.y=y,y+=a,t.overflow>r&&y>w&&(m.isOverflow=!0,t.overflow=r+1),x=m.x,v=m.width,o<0&&(m.width<0?(v=-m.width+e.fontSize+o,x-=v,v+=e.fontSize):v-=o),x<s.x&&(s.x=x),v>s.width&&(s.width=v),l&&p&&p<v&&(m.isOverflow=!0,t.overflow||(t.overflow=i.length))}s.y=g,s.height=w}(d,i),function(t,e,i){const{rows:s}=t,{textAlign:n,paraIndent:a,letterSpacing:r}=e;let o,l,h,d,c,u;s.forEach(t=>{t.words&&(h=a&&t.paraStart?a:0,u=t.words.length,l=i&&("justify"===n||"both"===n)&&u>1?(i-t.width-h)/(u-1):0,d=r||t.isOverflow?0:l>.01?1:2,t.isOverflow&&!r&&(t.textMode=!0),2===d?(t.x+=h,function(t){t.text="",t.words.forEach(e=>{e.data.forEach(e=>{t.text+=e.char})})}(t)):(t.x+=h,o=t.x,t.data=[],t.words.forEach((e,i)=>{1===d?(c={char:"",x:o},o=function(t,e,i){return t.forEach(t=>{i.char+=t.char,e+=t.width}),e}(e.data,o,c),(t.isOverflow||" "!==c.char)&&t.data.push(c)):o=function(t,e,i,s){return t.forEach(t=>{(s||" "!==t.char)&&(t.x=e,i.push(t)),e+=t.width}),e}(e.data,o,t.data,t.isOverflow),!l||t.paraEnd&&"both"!==n||i===u-1||(o+=l,t.width+=l)})),t.words=null)})}(d,i,a),d.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 h=o?e.canvas.measureText(o).width:0,d=s+n-h;("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<d));s--){if(l<d&&" "!==t.char||!s){e.data.splice(s+1),e.width-=t.width;break}e.width-=t.width}e.width+=h,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)}})}}(d,i,s,a),"none"!==o&&function(t,e){let i,s=0;const{fontSize:n,textDecoration:a}=e;switch(t.decorationHeight=n/11,E(a)?(i=a.type,a.color&&(t.decorationColor=X.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]}}(d,i),d}};const Ki={string:function(t,e){const i=I(e)&&e<1;if(A(t)){if(!i||!X.object)return t;t=X.object(t)}let s=L(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(V,Ji),Object.assign(X,Ki),Object.assign(G,Ot),Object.assign(U,xe),Object.assign(q,Ye),Object.assign(j,He),Object.assign(n,{interaction:(t,e,i,s)=>new z(t,e,i,s),hitCanvas:(t,e)=>new Q(t,e),hitCanvasManager:()=>new Y}),$();export{dt as Layouter,Q as LeaferCanvas,gt as Picker,ut as Renderer,pt as Selector,K as Watcher,$ as useCanvas};
2
2
  //# sourceMappingURL=worker.esm.min.js.map