@eva/plugin-renderer-nine-patch 1.2.7-editor.7 → 1.2.7-editor.8

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.
Files changed (2) hide show
  1. package/package.json +4 -4
  2. package/dist/miniprogram.js +0 -167
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eva/plugin-renderer-nine-patch",
3
- "version": "1.2.7-editor.7",
3
+ "version": "1.2.7-editor.8",
4
4
  "description": "@eva/plugin-renderer-nine-patch",
5
5
  "main": "index.js",
6
6
  "module": "dist/plugin-renderer-nine-patch.esm.js",
@@ -19,9 +19,9 @@
19
19
  "homepage": "https://eva.js.org",
20
20
  "dependencies": {
21
21
  "@eva/inspector-decorator": "0.1.0-alpha.2",
22
- "@eva/plugin-renderer": "1.2.7-editor.7",
23
- "@eva/renderer-adapter": "1.2.7-editor.7",
24
- "@eva/eva.js": "1.2.7-editor.7",
22
+ "@eva/plugin-renderer": "1.2.7-editor.8",
23
+ "@eva/renderer-adapter": "1.2.7-editor.8",
24
+ "@eva/eva.js": "1.2.7-editor.8",
25
25
  "@types/pixi.js": "^4.8.9"
26
26
  }
27
27
  }
@@ -1,167 +0,0 @@
1
- import { __extends, __decorate, __metadata, __awaiter, __generator } from 'tslib';
2
- import { Component, OBSERVER_TYPE, RESOURCE_TYPE, resource, decorators } from '@eva/eva.js/dist/miniprogram';
3
- import { Field } from '@eva/inspector-decorator';
4
- import { RendererSystem, Renderer } from '@eva/plugin-renderer/dist/miniprogram';
5
- import { NinePatch as NinePatch$4 } from '@eva/renderer-adapter/dist/miniprogram';
6
-
7
- var NinePatch$2 = function (_super) {
8
- __extends(NinePatch, _super);
9
-
10
- function NinePatch() {
11
- var _this = _super !== null && _super.apply(this, arguments) || this;
12
-
13
- _this.resource = '';
14
- _this.spriteName = '';
15
- _this.leftWidth = 0;
16
- _this.topHeight = 0;
17
- _this.rightWidth = 0;
18
- _this.bottomHeight = 0;
19
- return _this;
20
- }
21
-
22
- NinePatch.prototype.init = function (obj) {
23
- this.resource = obj.resource;
24
- this.spriteName = obj.spriteName;
25
- this.leftWidth = obj.leftWidth;
26
- this.topHeight = obj.topHeight;
27
- this.rightWidth = obj.rightWidth;
28
- this.bottomHeight = obj.bottomHeight;
29
- };
30
-
31
- NinePatch.componentName = 'NinePatch';
32
-
33
- __decorate([Field({
34
- type: 'resource'
35
- }), __metadata("design:type", String)], NinePatch.prototype, "resource", void 0);
36
-
37
- __decorate([Field(), __metadata("design:type", String)], NinePatch.prototype, "spriteName", void 0);
38
-
39
- __decorate([Field({
40
- step: 1
41
- }), __metadata("design:type", Number)], NinePatch.prototype, "leftWidth", void 0);
42
-
43
- __decorate([Field({
44
- step: 1
45
- }), __metadata("design:type", Number)], NinePatch.prototype, "topHeight", void 0);
46
-
47
- __decorate([Field({
48
- step: 1
49
- }), __metadata("design:type", Number)], NinePatch.prototype, "rightWidth", void 0);
50
-
51
- __decorate([Field({
52
- step: 1
53
- }), __metadata("design:type", Number)], NinePatch.prototype, "bottomHeight", void 0);
54
-
55
- return NinePatch;
56
- }(Component);
57
-
58
- var NinePatch$3 = NinePatch$2;
59
- var resourceKeySplit = '_s|r|c_';
60
-
61
- var NinePatch = function (_super) {
62
- __extends(NinePatch, _super);
63
-
64
- function NinePatch() {
65
- var _this = _super !== null && _super.apply(this, arguments) || this;
66
-
67
- _this.name = 'NinePatch';
68
- _this.ninePatch = {};
69
- return _this;
70
- }
71
-
72
- NinePatch.prototype.init = function () {
73
- this.renderSystem = this.game.getSystem(RendererSystem);
74
- this.renderSystem.rendererManager.register(this);
75
- };
76
-
77
- NinePatch.prototype.rendererUpdate = function (gameObject) {
78
- var _a = gameObject.transform.size,
79
- width = _a.width,
80
- height = _a.height;
81
-
82
- if (this.ninePatch[gameObject.id]) {
83
- this.ninePatch[gameObject.id].width = width;
84
- this.ninePatch[gameObject.id].height = height;
85
- }
86
- };
87
-
88
- NinePatch.prototype.componentChanged = function (changed) {
89
- return __awaiter(this, void 0, void 0, function () {
90
- return __generator(this, function (_a) {
91
- if (changed.componentName === 'NinePatch') {
92
- if (changed.type === OBSERVER_TYPE.ADD) {
93
- this.add(changed);
94
- } else if (changed.type === OBSERVER_TYPE.REMOVE) {
95
- this.remove(changed);
96
- } else {
97
- this.remove(changed);
98
- this.add(changed);
99
- }
100
- }
101
-
102
- return [2];
103
- });
104
- });
105
- };
106
-
107
- NinePatch.prototype.add = function (changed) {
108
- return __awaiter(this, void 0, void 0, function () {
109
- var component, gameObjectId, asyncId, _a, type, data, img, leftWidth, topHeight, rightWidth, bottomHeight, np;
110
-
111
- return __generator(this, function (_b) {
112
- switch (_b.label) {
113
- case 0:
114
- component = changed.component;
115
- gameObjectId = changed.gameObject.id;
116
- asyncId = this.increaseAsyncId(gameObjectId);
117
- return [4, resource.getResource(component.resource)];
118
-
119
- case 1:
120
- _a = _b.sent(), type = _a.type, data = _a.data;
121
- if (!this.validateAsyncId(gameObjectId, asyncId)) return [2];
122
-
123
- if (!data) {
124
- console.error("GameObject:" + changed.gameObject.name + "'s NinePatch resource load error");
125
- return [2];
126
- }
127
-
128
- if (type === RESOURCE_TYPE.SPRITE) {
129
- img = component.resource + resourceKeySplit + component.spriteName;
130
- } else {
131
- img = data.image;
132
- }
133
-
134
- leftWidth = component.leftWidth, topHeight = component.topHeight, rightWidth = component.rightWidth, bottomHeight = component.bottomHeight;
135
- np = new NinePatch$4(img, leftWidth, topHeight, rightWidth, bottomHeight);
136
- this.ninePatch[changed.gameObject.id] = np;
137
- component.ninePatch = np;
138
- this.containerManager.getContainer(changed.gameObject.id).addChildAt(np, 0);
139
- return [2];
140
- }
141
- });
142
- });
143
- };
144
-
145
- NinePatch.prototype.remove = function (changed) {
146
- var gameObjectId = changed.gameObject.id;
147
- this.increaseAsyncId(gameObjectId);
148
- var sprite = this.ninePatch[gameObjectId];
149
-
150
- if (sprite) {
151
- this.containerManager.getContainer(changed.gameObject.id).removeChild(sprite);
152
- delete this.ninePatch[changed.gameObject.id];
153
- sprite.destroy({
154
- children: true
155
- });
156
- }
157
- };
158
-
159
- NinePatch.systemName = 'NinePatch';
160
- NinePatch = __decorate([decorators.componentObserver({
161
- NinePatch: ['resource', 'spriteName', 'leftWidth', 'topHeight', 'rightWidth', 'bottomHeight']
162
- })], NinePatch);
163
- return NinePatch;
164
- }(Renderer);
165
-
166
- var NinePatch$1 = NinePatch;
167
- export { NinePatch$3 as NinePatch, NinePatch$1 as NinePatchSystem };