underpost 2.8.86 → 2.8.87
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/.env.development +6 -1
- package/.env.production +6 -1
- package/.env.test +6 -1
- package/README.md +22 -2
- package/bin/build.js +1 -0
- package/bin/deploy.js +32 -20
- package/bin/file.js +5 -2
- package/bin/util.js +1 -56
- package/cli.md +10 -5
- package/conf.js +3 -3
- package/manifests/deployment/dd-default-development/deployment.yaml +2 -2
- package/manifests/deployment/mongo-express/deployment.yaml +12 -12
- package/manifests/maas/nvim.sh +91 -0
- package/package.json +3 -11
- package/src/api/file/file.service.js +28 -8
- package/src/api/user/user.router.js +31 -5
- package/src/api/user/user.service.js +3 -4
- package/src/cli/cluster.js +4 -23
- package/src/cli/db.js +0 -19
- package/src/cli/deploy.js +21 -29
- package/src/cli/fs.js +1 -0
- package/src/cli/index.js +4 -1
- package/src/cli/repository.js +4 -2
- package/src/cli/run.js +17 -2
- package/src/client/components/core/CssCore.js +12 -0
- package/src/client/components/core/FullScreen.js +19 -28
- package/src/client/components/core/Input.js +1 -0
- package/src/client/components/core/Modal.js +25 -39
- package/src/client/components/core/ObjectLayerEngine.js +229 -4
- package/src/client/components/core/ObjectLayerEngineModal.js +441 -0
- package/src/client/components/core/ToggleSwitch.js +15 -1
- package/src/client/public/default/assets/mailer/api-user-default-avatar.png +0 -0
- package/src/index.js +1 -1
- package/src/server/client-build-docs.js +1 -1
- package/src/server/client-build.js +4 -12
- package/src/server/client-icons.js +6 -78
- package/src/server/conf.js +83 -138
- package/src/server/proxy.js +1 -1
- package/src/server/runtime.js +1 -2
- package/src/server/start.js +2 -2
- package/test/api.test.js +3 -2
- package/bin/cyberia0.js +0 -78
|
@@ -0,0 +1,441 @@
|
|
|
1
|
+
import { CoreService } from '../../services/core/core.service.js';
|
|
2
|
+
import { BtnIcon } from './BtnIcon.js';
|
|
3
|
+
import { borderChar, dynamicCol } from './Css.js';
|
|
4
|
+
import { DropDown } from './DropDown.js';
|
|
5
|
+
import { EventsUI } from './EventsUI.js';
|
|
6
|
+
import { Translate } from './Translate.js';
|
|
7
|
+
import { getProxyPath, s, append, hexToRgbA } from './VanillaJs.js';
|
|
8
|
+
import { s4 } from './CommonJs.js';
|
|
9
|
+
import { Input } from './Input.js';
|
|
10
|
+
import { ToggleSwitch } from './ToggleSwitch.js';
|
|
11
|
+
import { ObjectLayerService } from '../../services/object-layer/object-layer.service.js';
|
|
12
|
+
|
|
13
|
+
const ObjectLayerEngineModal = {
|
|
14
|
+
templates: [
|
|
15
|
+
{
|
|
16
|
+
label: 'empty',
|
|
17
|
+
id: 'empty',
|
|
18
|
+
data: [],
|
|
19
|
+
},
|
|
20
|
+
],
|
|
21
|
+
RenderTemplate: (colorTemplate) => {
|
|
22
|
+
const ole = s('object-layer-engine');
|
|
23
|
+
if (!ole) {
|
|
24
|
+
return;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
if (colorTemplate.length === 0) {
|
|
28
|
+
ole.clear();
|
|
29
|
+
return;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
const matrix = colorTemplate.map((row) => row.map((hex) => [...hexToRgbA(hex), 255]));
|
|
33
|
+
ole.loadMatrix(matrix);
|
|
34
|
+
},
|
|
35
|
+
ObjectLayerData: {},
|
|
36
|
+
Render: async (options = { idModal: '' }) => {
|
|
37
|
+
await import(`${getProxyPath()}components/core/ObjectLayerEngine.js`);
|
|
38
|
+
// await import(`${getProxyPath()}components/core/WebComponent.js`);
|
|
39
|
+
const directionCodes = ['08', '18', '02', '12', '04', '14', '06', '16'];
|
|
40
|
+
const itemTypes = ['skin', 'weapon', 'armor', 'artifact', 'floor'];
|
|
41
|
+
const statTypes = ['effect', 'resistance', 'agility', 'range', 'intelligence', 'utility'];
|
|
42
|
+
let selectItemType = itemTypes[0];
|
|
43
|
+
let itemActivable = false;
|
|
44
|
+
let renderIsStateless = false;
|
|
45
|
+
let renderFrameDuration = 100;
|
|
46
|
+
|
|
47
|
+
for (const url of [
|
|
48
|
+
`${getProxyPath()}assets/templates/item-skin-08.json`,
|
|
49
|
+
`${getProxyPath()}assets/templates/item-skin-06.json`,
|
|
50
|
+
]) {
|
|
51
|
+
const id = url.split('/').pop().replace('.json', '');
|
|
52
|
+
ObjectLayerEngineModal.templates.push({
|
|
53
|
+
label: id,
|
|
54
|
+
id,
|
|
55
|
+
data: JSON.parse(await CoreService.getRaw({ url })).color,
|
|
56
|
+
});
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
const cells = 26;
|
|
60
|
+
const pixelSize = parseInt(320 / cells);
|
|
61
|
+
const idSectionA = 'template-section-a';
|
|
62
|
+
const idSectionB = 'template-section-b';
|
|
63
|
+
|
|
64
|
+
let directionsCodeBarRender = '';
|
|
65
|
+
|
|
66
|
+
for (const directionCode of directionCodes) {
|
|
67
|
+
setTimeout(() => {
|
|
68
|
+
EventsUI.onClick(`.direction-code-bar-frames-btn-${directionCode}`, async () => {
|
|
69
|
+
const image = await s('object-layer-engine').toBlob();
|
|
70
|
+
const json = s('object-layer-engine').exportMatrixJSON();
|
|
71
|
+
const id = `frame-capture-${s4()}-${s4()}`;
|
|
72
|
+
|
|
73
|
+
if (!ObjectLayerEngineModal.ObjectLayerData[directionCode])
|
|
74
|
+
ObjectLayerEngineModal.ObjectLayerData[directionCode] = [];
|
|
75
|
+
ObjectLayerEngineModal.ObjectLayerData[directionCode].push({ id, image, json });
|
|
76
|
+
|
|
77
|
+
append(
|
|
78
|
+
`.frames-${directionCode}`,
|
|
79
|
+
html`
|
|
80
|
+
<div class="in fll ${id}">
|
|
81
|
+
<img class="in fll direction-code-bar-frames-img" src="${URL.createObjectURL(image)}" />
|
|
82
|
+
${await BtnIcon.Render({
|
|
83
|
+
label: html`<i class="fa-solid fa-trash"></i>`,
|
|
84
|
+
class: `abs direction-code-bar-trash-btn direction-code-bar-trash-btn-${id}`,
|
|
85
|
+
})}
|
|
86
|
+
</div>
|
|
87
|
+
`,
|
|
88
|
+
);
|
|
89
|
+
|
|
90
|
+
EventsUI.onClick(`.direction-code-bar-trash-btn-${id}`, async () => {
|
|
91
|
+
s(`.${id}`).remove();
|
|
92
|
+
ObjectLayerEngineModal.ObjectLayerData[directionCode] = ObjectLayerEngineModal.ObjectLayerData[
|
|
93
|
+
directionCode
|
|
94
|
+
].filter((frame) => frame.id !== id);
|
|
95
|
+
});
|
|
96
|
+
});
|
|
97
|
+
|
|
98
|
+
EventsUI.onClick(`.ol-btn-save`, async () => {
|
|
99
|
+
const objectLayer = {
|
|
100
|
+
data: {
|
|
101
|
+
render: {
|
|
102
|
+
frames: {},
|
|
103
|
+
color: [],
|
|
104
|
+
frame_duration: 0,
|
|
105
|
+
is_stateless: false,
|
|
106
|
+
},
|
|
107
|
+
stats: {},
|
|
108
|
+
item: {},
|
|
109
|
+
},
|
|
110
|
+
};
|
|
111
|
+
for (const directionCode of directionCodes) {
|
|
112
|
+
const directions = ObjectLayerEngineModal.getDirectionsFromDirectionCode(directionCode);
|
|
113
|
+
for (const direction of directions) {
|
|
114
|
+
if (!objectLayer.data.render.frames[direction]) objectLayer.data.render.frames[direction] = [];
|
|
115
|
+
|
|
116
|
+
if (!(directionCode in ObjectLayerEngineModal.ObjectLayerData)) {
|
|
117
|
+
console.warn('No set directionCodeBarFrameData for directionCode', directionCode);
|
|
118
|
+
continue;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
for (const frameData of ObjectLayerEngineModal.ObjectLayerData[directionCode]) {
|
|
122
|
+
const { matrix } = JSON.parse(frameData.json);
|
|
123
|
+
const frameIndexColorMatrix = [];
|
|
124
|
+
let indexRow = -1;
|
|
125
|
+
for (const row of matrix) {
|
|
126
|
+
indexRow++;
|
|
127
|
+
frameIndexColorMatrix[indexRow] = [];
|
|
128
|
+
let indexCol = -1;
|
|
129
|
+
for (const value of row) {
|
|
130
|
+
indexCol++;
|
|
131
|
+
let colorIndex = objectLayer.data.render.color.findIndex(
|
|
132
|
+
(color) =>
|
|
133
|
+
color[0] === value[0] &&
|
|
134
|
+
color[1] === value[1] &&
|
|
135
|
+
color[2] === value[2] &&
|
|
136
|
+
color[3] === value[3],
|
|
137
|
+
);
|
|
138
|
+
if (colorIndex === -1) {
|
|
139
|
+
objectLayer.data.render.color.push(value);
|
|
140
|
+
colorIndex = objectLayer.data.render.color.length - 1;
|
|
141
|
+
}
|
|
142
|
+
frameIndexColorMatrix[indexRow][indexCol] = colorIndex;
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
objectLayer.data.render.frames[direction].push(frameIndexColorMatrix);
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
objectLayer.data.render.frame_duration = parseInt(s(`.ol-input-render-frame-duration`).value);
|
|
150
|
+
objectLayer.data.render.is_stateless = renderIsStateless;
|
|
151
|
+
objectLayer.data.stats = {
|
|
152
|
+
effect: parseInt(s(`.ol-input-item-stats-effect`).value),
|
|
153
|
+
resistance: parseInt(s(`.ol-input-item-stats-resistance`).value),
|
|
154
|
+
agility: parseInt(s(`.ol-input-item-stats-agility`).value),
|
|
155
|
+
range: parseInt(s(`.ol-input-item-stats-range`).value),
|
|
156
|
+
intelligence: parseInt(s(`.ol-input-item-stats-intelligence`).value),
|
|
157
|
+
utility: parseInt(s(`.ol-input-item-stats-utility`).value),
|
|
158
|
+
};
|
|
159
|
+
objectLayer.data.item = {
|
|
160
|
+
type: selectItemType,
|
|
161
|
+
activable: itemActivable,
|
|
162
|
+
id: s(`.ol-input-item-id`).value,
|
|
163
|
+
description: s(`.ol-input-item-description`).value,
|
|
164
|
+
};
|
|
165
|
+
console.warn('objectLayer', objectLayer);
|
|
166
|
+
|
|
167
|
+
// Upload images
|
|
168
|
+
{
|
|
169
|
+
for (const directionCode of Object.keys(ObjectLayerEngineModal.ObjectLayerData)) {
|
|
170
|
+
let frameIndex = -1;
|
|
171
|
+
for (const frame of ObjectLayerEngineModal.ObjectLayerData[directionCode]) {
|
|
172
|
+
frameIndex++;
|
|
173
|
+
const pngBlob = frame.image;
|
|
174
|
+
|
|
175
|
+
const form = new FormData();
|
|
176
|
+
form.append(directionCode, pngBlob, `${frameIndex}.png`);
|
|
177
|
+
|
|
178
|
+
const { status, data } = await ObjectLayerService.post({
|
|
179
|
+
id: `frame-image/${objectLayer.data.item.type}/${objectLayer.data.item.id}/${directionCode}`,
|
|
180
|
+
body: form,
|
|
181
|
+
headerId: 'file',
|
|
182
|
+
});
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
// Upload metadata
|
|
188
|
+
{
|
|
189
|
+
delete objectLayer.data.render.frames;
|
|
190
|
+
delete objectLayer.data.render.color;
|
|
191
|
+
const { status, data } = await ObjectLayerService.post({
|
|
192
|
+
id: `metadata/${objectLayer.data.item.type}/${objectLayer.data.item.id}`,
|
|
193
|
+
body: objectLayer,
|
|
194
|
+
});
|
|
195
|
+
}
|
|
196
|
+
});
|
|
197
|
+
});
|
|
198
|
+
directionsCodeBarRender += html`
|
|
199
|
+
<div class="in section-mp-border">
|
|
200
|
+
<div class="fl">
|
|
201
|
+
<div class="in fll">
|
|
202
|
+
<div class="in direction-code-bar-frames-title">${directionCode}</div>
|
|
203
|
+
<div class="in direction-code-bar-frames-btn">
|
|
204
|
+
${await BtnIcon.Render({
|
|
205
|
+
label: html`<i class="fa-solid fa-plus"></i>`,
|
|
206
|
+
class: `direction-code-bar-frames-btn-${directionCode}`,
|
|
207
|
+
})}
|
|
208
|
+
</div>
|
|
209
|
+
</div>
|
|
210
|
+
<div class="frames-${directionCode}"></div>
|
|
211
|
+
</div>
|
|
212
|
+
</div>
|
|
213
|
+
`;
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
let statsInputsRender = '';
|
|
217
|
+
for (const statType of statTypes) {
|
|
218
|
+
statsInputsRender += html`
|
|
219
|
+
${await Input.Render({
|
|
220
|
+
id: `ol-input-item-stats-${statType}`,
|
|
221
|
+
label: html`<div class="inl" style="width: 120px; font-size: 16px; overflow: hidden">
|
|
222
|
+
<i class="fa-solid fa-chart-simple"></i> ${statType}
|
|
223
|
+
</div>`,
|
|
224
|
+
containerClass: 'inl',
|
|
225
|
+
type: 'number',
|
|
226
|
+
min: 0,
|
|
227
|
+
max: 10,
|
|
228
|
+
placeholder: true,
|
|
229
|
+
value: 0,
|
|
230
|
+
})}
|
|
231
|
+
`;
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
return html`
|
|
235
|
+
<style>
|
|
236
|
+
.direction-code-bar-frames-title {
|
|
237
|
+
font-weight: bold;
|
|
238
|
+
font-size: 1.2rem;
|
|
239
|
+
padding: 0.5rem;
|
|
240
|
+
}
|
|
241
|
+
.direction-code-bar-frames-img {
|
|
242
|
+
width: 100px;
|
|
243
|
+
height: auto;
|
|
244
|
+
margin: 3px;
|
|
245
|
+
}
|
|
246
|
+
.direction-code-bar-trash-btn {
|
|
247
|
+
top: 3px;
|
|
248
|
+
left: 3px;
|
|
249
|
+
background: red;
|
|
250
|
+
color: white;
|
|
251
|
+
}
|
|
252
|
+
.ol-btn-save {
|
|
253
|
+
padding: 0.5rem;
|
|
254
|
+
font-size: 30px;
|
|
255
|
+
font-weight: bold;
|
|
256
|
+
}
|
|
257
|
+
.ol-number-label {
|
|
258
|
+
width: 120px;
|
|
259
|
+
font-size: 16px;
|
|
260
|
+
overflow: hidden;
|
|
261
|
+
font-family: 'retro-font';
|
|
262
|
+
}
|
|
263
|
+
.sub-title-modal {
|
|
264
|
+
color: #ffcc00;
|
|
265
|
+
}
|
|
266
|
+
</style>
|
|
267
|
+
${borderChar(2, 'black', ['.sub-title-modal'])}
|
|
268
|
+
|
|
269
|
+
<div class="in section-mp section-mp-border">
|
|
270
|
+
<div class="in sub-title-modal"><i class="fa-solid fa-table-cells-large"></i> Frame editor</div>
|
|
271
|
+
|
|
272
|
+
<object-layer-engine id="ole" width="${cells}" height="${cells}" pixel-size="${pixelSize}">
|
|
273
|
+
</object-layer-engine>
|
|
274
|
+
</div>
|
|
275
|
+
|
|
276
|
+
<div class="in section-mp section-mp-border">
|
|
277
|
+
<div class="in sub-title-modal"><i class="fa-solid fa-database"></i> Render data</div>
|
|
278
|
+
${dynamicCol({ containerSelector: options.idModal, id: idSectionA })}
|
|
279
|
+
|
|
280
|
+
<div class="fl">
|
|
281
|
+
<div class="in fll ${idSectionA}-col-a">
|
|
282
|
+
<div class="in section-mp">
|
|
283
|
+
${await DropDown.Render({
|
|
284
|
+
value: ObjectLayerEngineModal.templates[0].id,
|
|
285
|
+
label: html`${Translate.Render('select-template')}`,
|
|
286
|
+
data: ObjectLayerEngineModal.templates.map((template) => {
|
|
287
|
+
return {
|
|
288
|
+
value: template.id,
|
|
289
|
+
display: html`<i class="fa-solid fa-paint-roller"></i> ${template.label}`,
|
|
290
|
+
onClick: async () => {
|
|
291
|
+
ObjectLayerEngineModal.RenderTemplate(template.data);
|
|
292
|
+
},
|
|
293
|
+
};
|
|
294
|
+
}),
|
|
295
|
+
})}
|
|
296
|
+
</div>
|
|
297
|
+
</div>
|
|
298
|
+
<div class="in fll ${idSectionA}-col-b">
|
|
299
|
+
<div class="in section-mp-border" style="width: 135px;">
|
|
300
|
+
${await Input.Render({
|
|
301
|
+
id: `ol-input-render-frame-duration`,
|
|
302
|
+
label: html`<div class="inl ol-number-label">
|
|
303
|
+
<i class="fa-solid fa-chart-simple"></i> Frame duration
|
|
304
|
+
</div>`,
|
|
305
|
+
containerClass: 'inl',
|
|
306
|
+
type: 'number',
|
|
307
|
+
min: 100,
|
|
308
|
+
max: 1000,
|
|
309
|
+
placeholder: true,
|
|
310
|
+
value: renderFrameDuration,
|
|
311
|
+
})}
|
|
312
|
+
</div>
|
|
313
|
+
<div class="in section-mp">
|
|
314
|
+
${await ToggleSwitch.Render({
|
|
315
|
+
id: 'ol-toggle-render-is-stateless',
|
|
316
|
+
wrapper: true,
|
|
317
|
+
wrapperLabel: html`${Translate.Render('is-stateless')}`,
|
|
318
|
+
disabledOnClick: true,
|
|
319
|
+
checked: renderIsStateless,
|
|
320
|
+
on: {
|
|
321
|
+
unchecked: () => {
|
|
322
|
+
renderIsStateless = false;
|
|
323
|
+
console.warn('renderIsStateless', renderIsStateless);
|
|
324
|
+
},
|
|
325
|
+
checked: () => {
|
|
326
|
+
renderIsStateless = true;
|
|
327
|
+
console.warn('renderIsStateless', renderIsStateless);
|
|
328
|
+
},
|
|
329
|
+
},
|
|
330
|
+
})}
|
|
331
|
+
</div>
|
|
332
|
+
</div>
|
|
333
|
+
</div>
|
|
334
|
+
${directionsCodeBarRender}
|
|
335
|
+
</div>
|
|
336
|
+
${dynamicCol({ containerSelector: options.idModal, id: idSectionB, type: 'a-50-b-50' })}
|
|
337
|
+
|
|
338
|
+
<div class="fl">
|
|
339
|
+
<div class="in fll ${idSectionB}-col-a">
|
|
340
|
+
<div class="in section-mp section-mp-border">
|
|
341
|
+
<div class="in sub-title-modal"><i class="fa-solid fa-database"></i> Item data</div>
|
|
342
|
+
${await Input.Render({
|
|
343
|
+
id: `ol-input-item-id`,
|
|
344
|
+
label: html`<i class="fa-solid fa-pen-to-square"></i> ${Translate.Render('item-id')}`,
|
|
345
|
+
containerClass: '',
|
|
346
|
+
placeholder: true,
|
|
347
|
+
})}
|
|
348
|
+
${await Input.Render({
|
|
349
|
+
id: `ol-input-item-description`,
|
|
350
|
+
label: html`<i class="fa-solid fa-pen-to-square"></i> ${Translate.Render('item-description')}`,
|
|
351
|
+
containerClass: '',
|
|
352
|
+
placeholder: true,
|
|
353
|
+
})}
|
|
354
|
+
<div class="in section-mp">
|
|
355
|
+
${await DropDown.Render({
|
|
356
|
+
value: itemTypes[0],
|
|
357
|
+
label: html`${Translate.Render('select-item-type')}`,
|
|
358
|
+
data: itemTypes.map((itemType) => {
|
|
359
|
+
return {
|
|
360
|
+
value: itemType,
|
|
361
|
+
display: html`${itemType}`,
|
|
362
|
+
onClick: async () => {
|
|
363
|
+
console.warn('itemType click', itemType);
|
|
364
|
+
selectItemType = itemType;
|
|
365
|
+
},
|
|
366
|
+
};
|
|
367
|
+
}),
|
|
368
|
+
})}
|
|
369
|
+
</div>
|
|
370
|
+
<div class="in section-mp">
|
|
371
|
+
${await ToggleSwitch.Render({
|
|
372
|
+
id: 'ol-toggle-item-activable',
|
|
373
|
+
wrapper: true,
|
|
374
|
+
wrapperLabel: html`${Translate.Render('item-activable')}`,
|
|
375
|
+
disabledOnClick: true,
|
|
376
|
+
checked: itemActivable,
|
|
377
|
+
on: {
|
|
378
|
+
unchecked: () => {
|
|
379
|
+
itemActivable = false;
|
|
380
|
+
console.warn('itemActivable', itemActivable);
|
|
381
|
+
},
|
|
382
|
+
checked: () => {
|
|
383
|
+
itemActivable = true;
|
|
384
|
+
console.warn('itemActivable', itemActivable);
|
|
385
|
+
},
|
|
386
|
+
},
|
|
387
|
+
})}
|
|
388
|
+
</div>
|
|
389
|
+
</div>
|
|
390
|
+
</div>
|
|
391
|
+
<div class="in fll ${idSectionB}-col-b">
|
|
392
|
+
<div class="in section-mp section-mp-border">
|
|
393
|
+
<div class="in sub-title-modal"><i class="fa-solid fa-database"></i> Stats data</div>
|
|
394
|
+
${statsInputsRender}
|
|
395
|
+
</div>
|
|
396
|
+
</div>
|
|
397
|
+
</div>
|
|
398
|
+
|
|
399
|
+
<div class="in section-mp">
|
|
400
|
+
${await BtnIcon.Render({
|
|
401
|
+
label: html`<i class="fa-solid fa-save"></i> ${Translate.Render('save')}`,
|
|
402
|
+
class: `in flr ol-btn-save`,
|
|
403
|
+
})}
|
|
404
|
+
</div>
|
|
405
|
+
`;
|
|
406
|
+
},
|
|
407
|
+
getDirectionsFromDirectionCode(directionCode = '08') {
|
|
408
|
+
let objectLayerFrameDirections = [];
|
|
409
|
+
|
|
410
|
+
switch (directionCode) {
|
|
411
|
+
case '08':
|
|
412
|
+
objectLayerFrameDirections = ['down_idle', 'none_idle', 'default_idle'];
|
|
413
|
+
break;
|
|
414
|
+
case '18':
|
|
415
|
+
objectLayerFrameDirections = ['down_walking'];
|
|
416
|
+
break;
|
|
417
|
+
case '02':
|
|
418
|
+
objectLayerFrameDirections = ['up_idle'];
|
|
419
|
+
break;
|
|
420
|
+
case '12':
|
|
421
|
+
objectLayerFrameDirections = ['up_walking'];
|
|
422
|
+
break;
|
|
423
|
+
case '04':
|
|
424
|
+
objectLayerFrameDirections = ['left_idle', 'up_left_idle', 'down_left_idle'];
|
|
425
|
+
break;
|
|
426
|
+
case '14':
|
|
427
|
+
objectLayerFrameDirections = ['left_walking', 'up_left_walking', 'down_left_walking'];
|
|
428
|
+
break;
|
|
429
|
+
case '06':
|
|
430
|
+
objectLayerFrameDirections = ['right_idle', 'up_right_idle', 'down_right_idle'];
|
|
431
|
+
break;
|
|
432
|
+
case '16':
|
|
433
|
+
objectLayerFrameDirections = ['right_walking', 'up_right_walking', 'down_right_walking'];
|
|
434
|
+
break;
|
|
435
|
+
}
|
|
436
|
+
|
|
437
|
+
return objectLayerFrameDirections;
|
|
438
|
+
},
|
|
439
|
+
};
|
|
440
|
+
|
|
441
|
+
export { ObjectLayerEngineModal };
|
|
@@ -67,7 +67,7 @@ const ToggleSwitch = {
|
|
|
67
67
|
|
|
68
68
|
if (options.type === 'checkbox') {
|
|
69
69
|
}
|
|
70
|
-
|
|
70
|
+
const htmlRender = html`
|
|
71
71
|
${options?.displayMode === 'checkbox'
|
|
72
72
|
? html`<div class="${options?.containerClass ? options.containerClass : 'inl box-content-border'} ${id}">
|
|
73
73
|
<div class="in ${id}-content toggle-switch-content-checkbox">
|
|
@@ -81,6 +81,20 @@ const ToggleSwitch = {
|
|
|
81
81
|
</div>`}
|
|
82
82
|
<input type="checkbox" class="${id}-checkbox" style="display: none" />
|
|
83
83
|
`;
|
|
84
|
+
if (options.wrapper) {
|
|
85
|
+
setTimeout(() => (s(`.toggle-form-container-${id}`).onclick = () => ToggleSwitch.Tokens[`${id}`].click()));
|
|
86
|
+
return html`
|
|
87
|
+
<div class="in toggle-form-container toggle-form-container-${id} hover">
|
|
88
|
+
<div class="fl ">
|
|
89
|
+
<div class="in fll" style="width: 70%">
|
|
90
|
+
<div class="in">${options.wrapperLabel}</div>
|
|
91
|
+
</div>
|
|
92
|
+
<div class="in fll" style="width: 30%">${htmlRender}</div>
|
|
93
|
+
</div>
|
|
94
|
+
</div>
|
|
95
|
+
`;
|
|
96
|
+
}
|
|
97
|
+
return htmlRender;
|
|
84
98
|
},
|
|
85
99
|
};
|
|
86
100
|
|
package/src/index.js
CHANGED
|
@@ -159,7 +159,7 @@ const buildCoverage = async ({ host, path }) => {
|
|
|
159
159
|
shellExec(`npm test`);
|
|
160
160
|
}
|
|
161
161
|
|
|
162
|
-
const coverageBuildPath = `${jsDocsConfig.opts.destination}
|
|
162
|
+
const coverageBuildPath = `${jsDocsConfig.opts.destination}coverage`;
|
|
163
163
|
fs.mkdirSync(coverageBuildPath, { recursive: true });
|
|
164
164
|
fs.copySync(`./coverage`, coverageBuildPath);
|
|
165
165
|
|
|
@@ -19,7 +19,7 @@ import * as dir from 'path';
|
|
|
19
19
|
import { shellExec } from './process.js';
|
|
20
20
|
import { SitemapStream, streamToPromise } from 'sitemap';
|
|
21
21
|
import { Readable } from 'stream';
|
|
22
|
-
import { buildIcons
|
|
22
|
+
import { buildIcons } from './client-icons.js';
|
|
23
23
|
import Underpost from '../index.js';
|
|
24
24
|
import { buildDocs } from './client-build-docs.js';
|
|
25
25
|
|
|
@@ -65,16 +65,8 @@ const fullBuild = async ({
|
|
|
65
65
|
fs.removeSync(rootClientPath);
|
|
66
66
|
|
|
67
67
|
if (fs.existsSync(`./src/client/public/${publicClientId}`)) {
|
|
68
|
-
if (iconsBuild) {
|
|
69
|
-
|
|
70
|
-
if (!fs.existsSync(defaultBaseIconFolderPath)) fs.mkdirSync(defaultBaseIconFolderPath, { recursive: true });
|
|
71
|
-
const defaultBaseIconPath = `${defaultBaseIconFolderPath}/base-icon.png`;
|
|
72
|
-
if (!fs.existsSync(defaultBaseIconPath))
|
|
73
|
-
await buildTextImg(metadata.title, { debugFilename: defaultBaseIconPath });
|
|
74
|
-
|
|
75
|
-
if (!fs.existsSync(`./src/client/public/${publicClientId}/site.webmanifest`))
|
|
76
|
-
await buildIcons({ publicClientId, metadata });
|
|
77
|
-
}
|
|
68
|
+
if (iconsBuild === true) await buildIcons({ publicClientId, metadata });
|
|
69
|
+
|
|
78
70
|
fs.copySync(
|
|
79
71
|
`./src/client/public/${publicClientId}`,
|
|
80
72
|
rootClientPath /* {
|
|
@@ -535,7 +527,7 @@ Sitemap: https://${host}${path === '/' ? '' : path}/sitemap.xml`,
|
|
|
535
527
|
);
|
|
536
528
|
}
|
|
537
529
|
|
|
538
|
-
if (
|
|
530
|
+
if (fullBuildEnabled && !enableLiveRebuild && !process.argv.includes('l') && docsBuild) {
|
|
539
531
|
await buildDocs({
|
|
540
532
|
host,
|
|
541
533
|
path,
|
|
@@ -1,80 +1,17 @@
|
|
|
1
1
|
import { favicons } from 'favicons';
|
|
2
|
-
// TODO: search alternatives
|
|
3
|
-
// import textToImage from 'text-to-image';
|
|
4
2
|
import { loggerFactory } from './logger.js';
|
|
5
3
|
import fs from 'fs-extra';
|
|
6
|
-
import { getCapVariableName
|
|
7
|
-
import { FileFactory } from '../api/file/file.service.js';
|
|
8
|
-
import { svg, png, png3x } from 'font-awesome-assets';
|
|
4
|
+
import { getCapVariableName } from '../client/components/core/CommonJs.js';
|
|
9
5
|
|
|
10
6
|
const logger = loggerFactory(import.meta);
|
|
11
7
|
|
|
12
|
-
const faBase64Png = (faId = 'check', width = 100, height = 100, color = '#209e00') => {
|
|
13
|
-
const b64Src = png3x(faId, color, width, height);
|
|
14
|
-
return b64Src.split('src="data:image/png;base64,')[1].split('"')[0];
|
|
15
|
-
};
|
|
16
|
-
|
|
17
|
-
const defaultBaseTextImgOptions = {
|
|
18
|
-
debug: true,
|
|
19
|
-
fontFamily: 'Arial',
|
|
20
|
-
fontWeight: 'bold',
|
|
21
|
-
bgColor: 'black',
|
|
22
|
-
textColor: 'white',
|
|
23
|
-
debugFilename: 'src/client/public/text-image.png',
|
|
24
|
-
verticalAlign: 'center',
|
|
25
|
-
textAlign: 'center',
|
|
26
|
-
};
|
|
27
|
-
|
|
28
|
-
const defaultBaseTextImgOptionsSizes = {
|
|
29
|
-
'70x70': {
|
|
30
|
-
maxWidth: 70,
|
|
31
|
-
customHeight: 70,
|
|
32
|
-
fontSize: 25,
|
|
33
|
-
margin: 10,
|
|
34
|
-
},
|
|
35
|
-
'100x100': {
|
|
36
|
-
maxWidth: 100,
|
|
37
|
-
customHeight: 100,
|
|
38
|
-
fontSize: 30,
|
|
39
|
-
margin: 12,
|
|
40
|
-
},
|
|
41
|
-
'100x300': {
|
|
42
|
-
maxWidth: 300,
|
|
43
|
-
customHeight: 100,
|
|
44
|
-
fontSize: 30,
|
|
45
|
-
margin: 12,
|
|
46
|
-
},
|
|
47
|
-
'1200x1200': {
|
|
48
|
-
maxWidth: 1200,
|
|
49
|
-
customHeight: 1200,
|
|
50
|
-
fontSize: 500,
|
|
51
|
-
margin: 50,
|
|
52
|
-
},
|
|
53
|
-
};
|
|
54
|
-
|
|
55
|
-
const buildTextImg = async (text = 'APP', options, size = '1200x1200') => {
|
|
56
|
-
options = { ...defaultBaseTextImgOptions, ...defaultBaseTextImgOptionsSizes[size], ...options };
|
|
57
|
-
// await textToImage.generate(text, options);
|
|
58
|
-
};
|
|
59
|
-
|
|
60
|
-
const getBufferPngText = async ({ text, textColor, bgColor, size, debugFilename }) => {
|
|
61
|
-
if (!text) text = 'Hello World!';
|
|
62
|
-
if (!textColor) textColor = '#000000';
|
|
63
|
-
if (!bgColor) bgColor = '#ffffff';
|
|
64
|
-
if (!size) size = '100x300';
|
|
65
|
-
if (!debugFilename) debugFilename = `./${s4()}${s4()}${s4()}.png`;
|
|
66
|
-
await buildTextImg(text, { textColor, bgColor, size, debugFilename }, size);
|
|
67
|
-
if (!fs.existsSync(debugFilename)) return Buffer.alloc(0); // Return empty buffer if file not found
|
|
68
|
-
const bufferImage = fs.readFileSync(debugFilename);
|
|
69
|
-
fs.removeSync(debugFilename);
|
|
70
|
-
return bufferImage;
|
|
71
|
-
};
|
|
72
|
-
|
|
73
8
|
const buildIcons = async ({
|
|
74
9
|
publicClientId,
|
|
75
|
-
metadata: { title, description, keywords, author, thumbnail, themeColor },
|
|
10
|
+
metadata: { title, description, keywords, author, thumbnail, themeColor, baseBuildIconReference },
|
|
76
11
|
}) => {
|
|
77
|
-
const source =
|
|
12
|
+
const source = baseBuildIconReference
|
|
13
|
+
? baseBuildIconReference
|
|
14
|
+
: `src/client/public/${publicClientId}/assets/logo/base-icon.png`; // Source image(s). `string`, `buffer` or array of `string`
|
|
78
15
|
|
|
79
16
|
const configuration = {
|
|
80
17
|
path: '/', // Path for overriding default icons path. `string`
|
|
@@ -149,13 +86,4 @@ const buildIcons = async ({
|
|
|
149
86
|
}
|
|
150
87
|
};
|
|
151
88
|
|
|
152
|
-
|
|
153
|
-
const faId = 'user';
|
|
154
|
-
const tmpFilePath = `./tmp/${faId}-${s4() + s4()}.svg`;
|
|
155
|
-
fs.writeFileSync(tmpFilePath, svg(faId, '#f5f5f5d1'), 'utf8');
|
|
156
|
-
const file = await new File(FileFactory.svg(fs.readFileSync(tmpFilePath), `${faId}.svg`)).save();
|
|
157
|
-
fs.removeSync(tmpFilePath);
|
|
158
|
-
return file._id;
|
|
159
|
-
};
|
|
160
|
-
|
|
161
|
-
export { buildIcons, buildTextImg, defaultBaseTextImgOptions, faBase64Png, getBufferPngText, getDefaultProfileImageId };
|
|
89
|
+
export { buildIcons };
|