leafer-draw 1.1.0 → 1.1.2
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/web.cjs +13 -12
- package/dist/web.esm.js +13 -12
- package/dist/web.esm.min.js +1 -1
- package/dist/web.js +89 -70
- package/dist/web.min.cjs +1 -1
- package/dist/web.min.js +1 -1
- package/dist/web.module.js +89 -70
- package/dist/web.module.min.js +1 -1
- package/package.json +2 -2
package/dist/web.module.js
CHANGED
|
@@ -1374,7 +1374,7 @@ function getNameList(name) {
|
|
|
1374
1374
|
}
|
|
1375
1375
|
const D$4 = Debug;
|
|
1376
1376
|
|
|
1377
|
-
const debug$
|
|
1377
|
+
const debug$f = Debug.get('RunTime');
|
|
1378
1378
|
const Run = {
|
|
1379
1379
|
currentId: 0,
|
|
1380
1380
|
currentName: '',
|
|
@@ -1392,7 +1392,7 @@ const Run = {
|
|
|
1392
1392
|
const time = R.idMap[id], name = R.nameMap[id];
|
|
1393
1393
|
const duration = microsecond ? (performance.now() - time) / 1000 : Date.now() - time;
|
|
1394
1394
|
R.idMap[id] = R.nameMap[id] = R.nameToIdMap[name] = undefined;
|
|
1395
|
-
debug$
|
|
1395
|
+
debug$f.log(name, duration, 'ms');
|
|
1396
1396
|
},
|
|
1397
1397
|
endOfName(name, microsecond) {
|
|
1398
1398
|
const id = R.nameToIdMap[name];
|
|
@@ -1406,18 +1406,18 @@ function needPlugin(name) {
|
|
|
1406
1406
|
console.error('need plugin: @leafer-in/' + name);
|
|
1407
1407
|
}
|
|
1408
1408
|
|
|
1409
|
-
const debug$
|
|
1409
|
+
const debug$e = Debug.get('UICreator');
|
|
1410
1410
|
const UICreator = {
|
|
1411
1411
|
list: {},
|
|
1412
1412
|
register(UI) {
|
|
1413
1413
|
const { __tag: tag } = UI.prototype;
|
|
1414
1414
|
if (list$1[tag])
|
|
1415
|
-
debug$
|
|
1415
|
+
debug$e.repeat(tag);
|
|
1416
1416
|
list$1[tag] = UI;
|
|
1417
1417
|
},
|
|
1418
1418
|
get(tag, data, x, y, width, height) {
|
|
1419
1419
|
if (!list$1[tag])
|
|
1420
|
-
debug$
|
|
1420
|
+
debug$e.error('not register ' + tag);
|
|
1421
1421
|
const ui = new list$1[tag](data);
|
|
1422
1422
|
if (x !== undefined) {
|
|
1423
1423
|
ui.x = x;
|
|
@@ -1433,7 +1433,7 @@ const UICreator = {
|
|
|
1433
1433
|
};
|
|
1434
1434
|
const { list: list$1 } = UICreator;
|
|
1435
1435
|
|
|
1436
|
-
const debug$
|
|
1436
|
+
const debug$d = Debug.get('EventCreator');
|
|
1437
1437
|
const EventCreator = {
|
|
1438
1438
|
nameList: {},
|
|
1439
1439
|
register(Event) {
|
|
@@ -1441,7 +1441,7 @@ const EventCreator = {
|
|
|
1441
1441
|
Object.keys(Event).forEach(key => {
|
|
1442
1442
|
name = Event[key];
|
|
1443
1443
|
if (typeof name === 'string')
|
|
1444
|
-
nameList[name] && debug$
|
|
1444
|
+
nameList[name] && debug$d.repeat(name), nameList[name] = Event;
|
|
1445
1445
|
});
|
|
1446
1446
|
},
|
|
1447
1447
|
changeName(oldName, newName) {
|
|
@@ -1513,17 +1513,19 @@ const DataHelper = {
|
|
|
1513
1513
|
assign(t, defaultData);
|
|
1514
1514
|
return t;
|
|
1515
1515
|
},
|
|
1516
|
-
assign(t, merge) {
|
|
1516
|
+
assign(t, merge, exclude) {
|
|
1517
1517
|
let value;
|
|
1518
1518
|
Object.keys(merge).forEach(key => {
|
|
1519
|
-
var _a;
|
|
1519
|
+
var _a, _b;
|
|
1520
1520
|
value = merge[key];
|
|
1521
|
-
if ((value === null || value === void 0 ? void 0 : value.constructor) === Object)
|
|
1522
|
-
|
|
1523
|
-
|
|
1524
|
-
|
|
1525
|
-
|
|
1521
|
+
if ((value === null || value === void 0 ? void 0 : value.constructor) === Object && ((_a = t[key]) === null || _a === void 0 ? void 0 : _a.constructor) === Object)
|
|
1522
|
+
return assign(t[key], merge[key], exclude && exclude[key]);
|
|
1523
|
+
if (exclude && (key in exclude)) {
|
|
1524
|
+
if (((_b = exclude[key]) === null || _b === void 0 ? void 0 : _b.constructor) === Object)
|
|
1525
|
+
assign(t[key] = {}, merge[key], exclude[key]);
|
|
1526
|
+
return;
|
|
1526
1527
|
}
|
|
1528
|
+
t[key] = merge[key];
|
|
1527
1529
|
});
|
|
1528
1530
|
},
|
|
1529
1531
|
copyAttrs(t, from, include) {
|
|
@@ -2595,7 +2597,7 @@ const EllipseHelper = {
|
|
|
2595
2597
|
const { M: M$4, m, L: L$5, l, H, h, V, v, C: C$4, c, S, s, Q: Q$3, q, T, t, A, a, Z: Z$4, z, N: N$3, D: D$3, X: X$3, G: G$3, F: F$4, O: O$3, P: P$3, U: U$3 } = PathCommandMap;
|
|
2596
2598
|
const { rect: rect$2, roundRect: roundRect$2, arcTo: arcTo$3, arc: arc$3, ellipse: ellipse$4, quadraticCurveTo: quadraticCurveTo$1 } = BezierHelper;
|
|
2597
2599
|
const { ellipticalArc } = EllipseHelper;
|
|
2598
|
-
const debug$
|
|
2600
|
+
const debug$c = Debug.get('PathConvert');
|
|
2599
2601
|
const setEndPoint$1 = {};
|
|
2600
2602
|
const PathConvert = {
|
|
2601
2603
|
current: { dot: 0 },
|
|
@@ -2836,7 +2838,7 @@ const PathConvert = {
|
|
|
2836
2838
|
i += 6;
|
|
2837
2839
|
break;
|
|
2838
2840
|
default:
|
|
2839
|
-
debug$
|
|
2841
|
+
debug$c.error(`command: ${command} [index:${i}]`, old);
|
|
2840
2842
|
return data;
|
|
2841
2843
|
}
|
|
2842
2844
|
lastCommand = command;
|
|
@@ -3061,7 +3063,7 @@ class PathCreator {
|
|
|
3061
3063
|
}
|
|
3062
3064
|
|
|
3063
3065
|
const { M: M$2, L: L$3, C: C$2, Q: Q$1, Z: Z$2, N: N$1, D: D$1, X: X$1, G: G$1, F: F$2, O: O$1, P: P$1, U: U$1 } = PathCommandMap;
|
|
3064
|
-
const debug$
|
|
3066
|
+
const debug$b = Debug.get('PathDrawer');
|
|
3065
3067
|
const PathDrawer = {
|
|
3066
3068
|
drawPathByData(drawer, data) {
|
|
3067
3069
|
if (!data)
|
|
@@ -3124,7 +3126,7 @@ const PathDrawer = {
|
|
|
3124
3126
|
i += 6;
|
|
3125
3127
|
break;
|
|
3126
3128
|
default:
|
|
3127
|
-
debug$
|
|
3129
|
+
debug$b.error(`command: ${command} [index:${i}]`, data);
|
|
3128
3130
|
return;
|
|
3129
3131
|
}
|
|
3130
3132
|
}
|
|
@@ -3134,7 +3136,7 @@ const PathDrawer = {
|
|
|
3134
3136
|
const { M: M$1, L: L$2, C: C$1, Q, Z: Z$1, N, D, X, G, F: F$1, O, P, U } = PathCommandMap;
|
|
3135
3137
|
const { toTwoPointBounds, toTwoPointBoundsByQuadraticCurve, arcTo: arcTo$1, arc, ellipse: ellipse$1 } = BezierHelper;
|
|
3136
3138
|
const { addPointBounds, copy: copy$7, addPoint: addPoint$1, setPoint: setPoint$1, addBounds, toBounds: toBounds$3 } = TwoPointBoundsHelper;
|
|
3137
|
-
const debug$
|
|
3139
|
+
const debug$a = Debug.get('PathBounds');
|
|
3138
3140
|
let radius, radiusX, radiusY;
|
|
3139
3141
|
const tempPointBounds = {};
|
|
3140
3142
|
const setPointBounds = {};
|
|
@@ -3242,7 +3244,7 @@ const PathBounds = {
|
|
|
3242
3244
|
i += 6;
|
|
3243
3245
|
break;
|
|
3244
3246
|
default:
|
|
3245
|
-
debug$
|
|
3247
|
+
debug$a.error(`command: ${command} [index:${i}]`, data);
|
|
3246
3248
|
return;
|
|
3247
3249
|
}
|
|
3248
3250
|
}
|
|
@@ -3358,7 +3360,7 @@ const FileHelper = {
|
|
|
3358
3360
|
const F = FileHelper;
|
|
3359
3361
|
F.opacityTypes.forEach(type => F.upperCaseTypeMap[type] = type.toUpperCase());
|
|
3360
3362
|
|
|
3361
|
-
const debug$
|
|
3363
|
+
const debug$9 = Debug.get('TaskProcessor');
|
|
3362
3364
|
class TaskItem {
|
|
3363
3365
|
constructor(task) {
|
|
3364
3366
|
this.parallel = true;
|
|
@@ -3373,7 +3375,7 @@ class TaskItem {
|
|
|
3373
3375
|
yield this.task();
|
|
3374
3376
|
}
|
|
3375
3377
|
catch (error) {
|
|
3376
|
-
debug$
|
|
3378
|
+
debug$9.error(error);
|
|
3377
3379
|
}
|
|
3378
3380
|
});
|
|
3379
3381
|
}
|
|
@@ -3891,6 +3893,8 @@ function opacityType(defaultValue) {
|
|
|
3891
3893
|
return decorateLeafAttr(defaultValue, (key) => attr({
|
|
3892
3894
|
set(value) {
|
|
3893
3895
|
this.__setAttr(key, value) && (this.__layout.opacityChanged || this.__layout.opacityChange());
|
|
3896
|
+
if (this.mask)
|
|
3897
|
+
checkMask(this);
|
|
3894
3898
|
}
|
|
3895
3899
|
}));
|
|
3896
3900
|
}
|
|
@@ -3907,9 +3911,20 @@ function visibleType(defaultValue) {
|
|
|
3907
3911
|
this.__runAnimation('in');
|
|
3908
3912
|
}
|
|
3909
3913
|
doVisible(this, key, value, oldValue);
|
|
3914
|
+
if (this.mask)
|
|
3915
|
+
checkMask(this);
|
|
3910
3916
|
}
|
|
3911
3917
|
}));
|
|
3912
3918
|
}
|
|
3919
|
+
function checkMask(leaf) {
|
|
3920
|
+
const { parent } = leaf;
|
|
3921
|
+
if (parent) {
|
|
3922
|
+
const { __hasMask } = parent;
|
|
3923
|
+
parent.__updateMask();
|
|
3924
|
+
if (__hasMask !== parent.__hasMask)
|
|
3925
|
+
parent.forceUpdate();
|
|
3926
|
+
}
|
|
3927
|
+
}
|
|
3913
3928
|
function doVisible(leaf, key, value, oldValue) {
|
|
3914
3929
|
if (leaf.__setAttr(key, value)) {
|
|
3915
3930
|
leaf.__layout.opacityChanged || leaf.__layout.opacityChange();
|
|
@@ -4047,7 +4062,7 @@ function defineDataProcessor(target, key, defaultValue) {
|
|
|
4047
4062
|
defineKey(data, key, property);
|
|
4048
4063
|
}
|
|
4049
4064
|
|
|
4050
|
-
const debug$
|
|
4065
|
+
const debug$8 = new Debug('rewrite');
|
|
4051
4066
|
const list = [];
|
|
4052
4067
|
const excludeNames = ['destroy', 'constructor'];
|
|
4053
4068
|
function rewrite(method) {
|
|
@@ -4064,7 +4079,7 @@ function doRewrite(error) {
|
|
|
4064
4079
|
if (list.length) {
|
|
4065
4080
|
list.forEach(item => {
|
|
4066
4081
|
if (error)
|
|
4067
|
-
debug$
|
|
4082
|
+
debug$8.error(item.name, '需在Class上装饰@rewriteAble()');
|
|
4068
4083
|
item.run();
|
|
4069
4084
|
});
|
|
4070
4085
|
list.length = 0;
|
|
@@ -4972,13 +4987,13 @@ const { on, on_, off, off_, once, emit: emit$1, emitEvent, hasEvent, destroy } =
|
|
|
4972
4987
|
const LeafEventer = { on, on_, off, off_, once, emit: emit$1, emitEvent, hasEvent, destroyEventer: destroy };
|
|
4973
4988
|
|
|
4974
4989
|
const { isFinite } = Number;
|
|
4975
|
-
const debug$
|
|
4990
|
+
const debug$7 = Debug.get('setAttr');
|
|
4976
4991
|
const LeafDataProxy = {
|
|
4977
4992
|
__setAttr(name, newValue, checkFiniteNumber) {
|
|
4978
4993
|
if (this.leaferIsCreated) {
|
|
4979
4994
|
const oldValue = this.__.__getInput(name);
|
|
4980
4995
|
if (checkFiniteNumber && !isFinite(newValue) && newValue !== undefined) {
|
|
4981
|
-
debug$
|
|
4996
|
+
debug$7.warn(this.innerName, name, newValue);
|
|
4982
4997
|
newValue = undefined;
|
|
4983
4998
|
}
|
|
4984
4999
|
if (typeof newValue === 'object' || oldValue !== newValue) {
|
|
@@ -5434,8 +5449,8 @@ let Leaf = class Leaf {
|
|
|
5434
5449
|
canvas.clearRect(r.x, r.y, r.width, r.height);
|
|
5435
5450
|
canvas.restore();
|
|
5436
5451
|
}
|
|
5437
|
-
__updateMask(
|
|
5438
|
-
this.__hasMask =
|
|
5452
|
+
__updateMask(_value) {
|
|
5453
|
+
this.__hasMask = this.children.some(item => item.__.mask && item.__.visible && item.__.opacity);
|
|
5439
5454
|
}
|
|
5440
5455
|
__renderMask(_canvas, _options) { }
|
|
5441
5456
|
__getNowWorld(options) {
|
|
@@ -5678,6 +5693,7 @@ Leaf = __decorate([
|
|
|
5678
5693
|
const { setListWithFn } = BoundsHelper;
|
|
5679
5694
|
const { sort } = BranchHelper;
|
|
5680
5695
|
const { localBoxBounds, localStrokeBounds, localRenderBounds, maskLocalBoxBounds, maskLocalStrokeBounds, maskLocalRenderBounds } = LeafBoundsHelper;
|
|
5696
|
+
const debug$6 = new Debug('Branch');
|
|
5681
5697
|
let Branch = class Branch extends Leaf {
|
|
5682
5698
|
__updateStrokeSpread() {
|
|
5683
5699
|
const { children } = this;
|
|
@@ -5718,8 +5734,8 @@ let Branch = class Branch extends Leaf {
|
|
|
5718
5734
|
}
|
|
5719
5735
|
}
|
|
5720
5736
|
add(child, index) {
|
|
5721
|
-
if (child === this)
|
|
5722
|
-
return;
|
|
5737
|
+
if (child === this || child.destroyed)
|
|
5738
|
+
return debug$6.warn('add self or destroyed');
|
|
5723
5739
|
const noIndex = index === undefined;
|
|
5724
5740
|
if (!child.__) {
|
|
5725
5741
|
if (child instanceof Array)
|
|
@@ -5733,8 +5749,9 @@ let Branch = class Branch extends Leaf {
|
|
|
5733
5749
|
noIndex ? this.children.push(child) : this.children.splice(index, 0, child);
|
|
5734
5750
|
if (child.isBranch)
|
|
5735
5751
|
this.__.__childBranchNumber = (this.__.__childBranchNumber || 0) + 1;
|
|
5736
|
-
|
|
5737
|
-
|
|
5752
|
+
const childLayout = child.__layout;
|
|
5753
|
+
childLayout.boxChanged || childLayout.boxChange();
|
|
5754
|
+
childLayout.matrixChanged || childLayout.matrixChange();
|
|
5738
5755
|
if (child.__bubbleMap)
|
|
5739
5756
|
child.__emitLifeEvent(ChildEvent.ADD);
|
|
5740
5757
|
if (this.leafer) {
|
|
@@ -5972,7 +5989,7 @@ class LeafLevelList {
|
|
|
5972
5989
|
}
|
|
5973
5990
|
}
|
|
5974
5991
|
|
|
5975
|
-
const version = "1.1.
|
|
5992
|
+
const version = "1.1.1";
|
|
5976
5993
|
|
|
5977
5994
|
const debug$5 = Debug.get('LeaferCanvas');
|
|
5978
5995
|
class LeaferCanvas extends LeaferCanvasBase {
|
|
@@ -6590,25 +6607,25 @@ class Renderer {
|
|
|
6590
6607
|
if (userConfig)
|
|
6591
6608
|
this.config = DataHelper.default(userConfig, this.config);
|
|
6592
6609
|
this.__listenEvents();
|
|
6593
|
-
this.__requestRender();
|
|
6594
6610
|
}
|
|
6595
6611
|
start() {
|
|
6596
6612
|
this.running = true;
|
|
6613
|
+
this.update(false);
|
|
6597
6614
|
}
|
|
6598
6615
|
stop() {
|
|
6599
6616
|
this.running = false;
|
|
6600
6617
|
}
|
|
6601
|
-
update() {
|
|
6602
|
-
this.changed
|
|
6618
|
+
update(change = true) {
|
|
6619
|
+
if (!this.changed)
|
|
6620
|
+
this.changed = change;
|
|
6621
|
+
this.__requestRender();
|
|
6603
6622
|
}
|
|
6604
6623
|
requestLayout() {
|
|
6605
6624
|
this.target.emit(LayoutEvent.REQUEST);
|
|
6606
6625
|
}
|
|
6607
6626
|
render(callback) {
|
|
6608
|
-
if (!(this.running && this.canvas.view))
|
|
6609
|
-
this.
|
|
6610
|
-
return;
|
|
6611
|
-
}
|
|
6627
|
+
if (!(this.running && this.canvas.view))
|
|
6628
|
+
return this.update();
|
|
6612
6629
|
const { target } = this;
|
|
6613
6630
|
this.times = 0;
|
|
6614
6631
|
this.totalBounds = new Bounds();
|
|
@@ -6742,16 +6759,17 @@ class Renderer {
|
|
|
6742
6759
|
}
|
|
6743
6760
|
}
|
|
6744
6761
|
__requestRender() {
|
|
6745
|
-
|
|
6762
|
+
if (this.requestTime)
|
|
6763
|
+
return;
|
|
6764
|
+
const requestTime = this.requestTime = Date.now();
|
|
6746
6765
|
Platform.requestRender(() => {
|
|
6747
|
-
this.FPS = Math.min(60, Math.ceil(1000 / (Date.now() -
|
|
6766
|
+
this.FPS = Math.min(60, Math.ceil(1000 / (Date.now() - requestTime)));
|
|
6767
|
+
this.requestTime = 0;
|
|
6748
6768
|
if (this.running) {
|
|
6749
6769
|
if (this.changed && this.canvas.view)
|
|
6750
6770
|
this.render();
|
|
6751
6771
|
this.target.emit(RenderEvent.NEXT);
|
|
6752
6772
|
}
|
|
6753
|
-
if (this.target)
|
|
6754
|
-
this.__requestRender();
|
|
6755
6773
|
});
|
|
6756
6774
|
}
|
|
6757
6775
|
__onResize(e) {
|
|
@@ -6767,7 +6785,7 @@ class Renderer {
|
|
|
6767
6785
|
}
|
|
6768
6786
|
}
|
|
6769
6787
|
this.addBlock(new Bounds(0, 0, 1, 1));
|
|
6770
|
-
this.
|
|
6788
|
+
this.update();
|
|
6771
6789
|
}
|
|
6772
6790
|
__onLayoutEnd(event) {
|
|
6773
6791
|
if (event.data)
|
|
@@ -6902,7 +6920,7 @@ class UIData extends LeafData {
|
|
|
6902
6920
|
return true;
|
|
6903
6921
|
return t.fill && this.__hasStroke;
|
|
6904
6922
|
}
|
|
6905
|
-
get __clipAfterFill() { return (
|
|
6923
|
+
get __clipAfterFill() { const t = this; return (t.cornerRadius || t.innerShadow || t.__pathInputed); }
|
|
6906
6924
|
get __autoWidth() { return !this._width; }
|
|
6907
6925
|
get __autoHeight() { return !this._height; }
|
|
6908
6926
|
get __autoSide() { return !this._width || !this._height; }
|
|
@@ -7016,7 +7034,7 @@ class GroupData extends UIData {
|
|
|
7016
7034
|
|
|
7017
7035
|
class BoxData extends GroupData {
|
|
7018
7036
|
get __boxStroke() { return !this.__pathInputed; }
|
|
7019
|
-
get __drawAfterFill() { return
|
|
7037
|
+
get __drawAfterFill() { const t = this; return (t.overflow === 'hide' && (t.__clipAfterFill || t.innerShadow) && t.__leaf.children.length); }
|
|
7020
7038
|
get __clipAfterFill() { return this.__leaf.isOverflow || super.__clipAfterFill; }
|
|
7021
7039
|
}
|
|
7022
7040
|
|
|
@@ -7676,20 +7694,10 @@ let Leafer = Leafer_1 = class Leafer extends Group {
|
|
|
7676
7694
|
constructor(userConfig, data) {
|
|
7677
7695
|
super(data);
|
|
7678
7696
|
this.config = {
|
|
7679
|
-
type: 'design',
|
|
7680
7697
|
start: true,
|
|
7681
7698
|
hittable: true,
|
|
7682
7699
|
smooth: true,
|
|
7683
|
-
lazySpeard: 100
|
|
7684
|
-
zoom: {
|
|
7685
|
-
min: 0.01,
|
|
7686
|
-
max: 256
|
|
7687
|
-
},
|
|
7688
|
-
move: {
|
|
7689
|
-
holdSpaceKey: true,
|
|
7690
|
-
holdMiddleKey: true,
|
|
7691
|
-
autoDistance: 2
|
|
7692
|
-
}
|
|
7700
|
+
lazySpeard: 100
|
|
7693
7701
|
};
|
|
7694
7702
|
this.leafs = 0;
|
|
7695
7703
|
this.__eventIds = [];
|
|
@@ -7706,23 +7714,27 @@ let Leafer = Leafer_1 = class Leafer extends Group {
|
|
|
7706
7714
|
init(userConfig, parentApp) {
|
|
7707
7715
|
if (this.canvas)
|
|
7708
7716
|
return;
|
|
7709
|
-
this.__setLeafer(this);
|
|
7710
|
-
if (userConfig)
|
|
7711
|
-
DataHelper.assign(this.config, userConfig);
|
|
7712
7717
|
let start;
|
|
7713
7718
|
const { config } = this;
|
|
7714
|
-
this.
|
|
7719
|
+
this.__setLeafer(this);
|
|
7720
|
+
if (parentApp) {
|
|
7721
|
+
this.parentApp = parentApp;
|
|
7722
|
+
this.__bindApp(parentApp);
|
|
7723
|
+
start = parentApp.running;
|
|
7724
|
+
}
|
|
7725
|
+
if (userConfig) {
|
|
7726
|
+
this.parent = parentApp;
|
|
7727
|
+
this.initType(userConfig.type);
|
|
7728
|
+
this.parent = undefined;
|
|
7729
|
+
DataHelper.assign(config, userConfig);
|
|
7730
|
+
}
|
|
7715
7731
|
const canvas = this.canvas = Creator.canvas(config);
|
|
7716
7732
|
this.__controllers.push(this.renderer = Creator.renderer(this, canvas, config), this.watcher = Creator.watcher(this, config), this.layouter = Creator.layouter(this, config));
|
|
7717
7733
|
if (this.isApp)
|
|
7718
7734
|
this.__setApp();
|
|
7719
7735
|
this.__checkAutoLayout(config, parentApp);
|
|
7720
7736
|
this.view = canvas.view;
|
|
7721
|
-
if (parentApp) {
|
|
7722
|
-
this.__bindApp(parentApp);
|
|
7723
|
-
start = parentApp.running;
|
|
7724
|
-
}
|
|
7725
|
-
else {
|
|
7737
|
+
if (!parentApp) {
|
|
7726
7738
|
this.selector = Creator.selector(this);
|
|
7727
7739
|
this.interaction = Creator.interaction(this, canvas, this.selector, config);
|
|
7728
7740
|
if (this.interaction) {
|
|
@@ -7779,7 +7791,11 @@ let Leafer = Leafer_1 = class Leafer extends Group {
|
|
|
7779
7791
|
forceRender(bounds) {
|
|
7780
7792
|
this.renderer.addBlock(bounds ? new Bounds(bounds) : this.canvas.bounds);
|
|
7781
7793
|
if (this.viewReady)
|
|
7782
|
-
this.renderer.
|
|
7794
|
+
this.renderer.render();
|
|
7795
|
+
}
|
|
7796
|
+
requestRender(change = false) {
|
|
7797
|
+
if (this.renderer)
|
|
7798
|
+
this.renderer.update(change);
|
|
7783
7799
|
}
|
|
7784
7800
|
updateCursor(cursor) {
|
|
7785
7801
|
const i = this.interaction;
|
|
@@ -7887,8 +7903,10 @@ let Leafer = Leafer_1 = class Leafer extends Group {
|
|
|
7887
7903
|
const { imageReady } = this;
|
|
7888
7904
|
if (imageReady && !this.viewCompleted)
|
|
7889
7905
|
this.__checkViewCompleted();
|
|
7890
|
-
if (!imageReady)
|
|
7906
|
+
if (!imageReady) {
|
|
7891
7907
|
this.viewCompleted = false;
|
|
7908
|
+
this.requestRender();
|
|
7909
|
+
}
|
|
7892
7910
|
}
|
|
7893
7911
|
}
|
|
7894
7912
|
__checkViewCompleted(emit = true) {
|
|
@@ -7946,6 +7964,7 @@ let Leafer = Leafer_1 = class Leafer extends Group {
|
|
|
7946
7964
|
}
|
|
7947
7965
|
else
|
|
7948
7966
|
list.push(item);
|
|
7967
|
+
this.requestRender();
|
|
7949
7968
|
}
|
|
7950
7969
|
zoom(_zoomType, _padding, _fixedScale) {
|
|
7951
7970
|
return needPlugin('view');
|
|
@@ -7999,7 +8018,7 @@ let Leafer = Leafer_1 = class Leafer extends Group {
|
|
|
7999
8018
|
this.canvasManager.destroy();
|
|
8000
8019
|
}
|
|
8001
8020
|
this.canvas.destroy();
|
|
8002
|
-
this.config.view = this.view = null;
|
|
8021
|
+
this.config.view = this.view = this.parentApp = null;
|
|
8003
8022
|
if (this.userConfig)
|
|
8004
8023
|
this.userConfig.view = null;
|
|
8005
8024
|
super.destroy();
|