underpost 2.8.86 → 2.8.88
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 +39 -2
- package/.env.production +42 -2
- package/.env.test +39 -2
- package/.github/workflows/ghpkg.ci.yml +1 -1
- package/.github/workflows/npmpkg.ci.yml +1 -1
- package/.github/workflows/pwa-microservices-template-page.cd.yml +6 -5
- package/.github/workflows/pwa-microservices-template-test.ci.yml +1 -1
- package/.github/workflows/release.cd.yml +3 -3
- package/README.md +76 -2
- package/bin/build.js +5 -0
- package/bin/deploy.js +93 -27
- package/bin/file.js +8 -4
- package/bin/util.js +1 -56
- package/cli.md +16 -5
- package/conf.js +33 -7
- package/manifests/deployment/dd-default-development/deployment.yaml +2 -2
- package/manifests/deployment/dd-test-development/deployment.yaml +174 -0
- package/manifests/deployment/dd-test-development/proxy.yaml +51 -0
- package/manifests/deployment/mongo-express/deployment.yaml +12 -12
- package/manifests/maas/nvim.sh +91 -0
- package/package.json +8 -15
- package/src/api/core/core.router.js +2 -1
- package/src/api/default/default.controller.js +6 -1
- package/src/api/default/default.router.js +6 -2
- package/src/api/default/default.service.js +10 -1
- package/src/api/document/document.controller.js +66 -0
- package/src/api/document/document.model.js +51 -0
- package/src/api/document/document.router.js +24 -0
- package/src/api/document/document.service.js +125 -0
- package/src/api/file/file.controller.js +15 -1
- package/src/api/file/file.router.js +2 -1
- package/src/api/file/file.service.js +28 -8
- package/src/api/test/test.router.js +1 -1
- package/src/api/user/postman_collection.json +216 -0
- package/src/api/user/user.controller.js +25 -60
- package/src/api/user/user.model.js +29 -7
- package/src/api/user/user.router.js +40 -8
- package/src/api/user/user.service.js +86 -35
- package/src/cli/baremetal.js +33 -3
- package/src/cli/cloud-init.js +11 -0
- package/src/cli/cluster.js +4 -23
- package/src/cli/cron.js +0 -1
- package/src/cli/db.js +0 -19
- package/src/cli/deploy.js +67 -52
- package/src/cli/fs.js +1 -0
- package/src/cli/index.js +9 -1
- package/src/cli/lxd.js +7 -0
- package/src/cli/repository.js +44 -6
- package/src/cli/run.js +56 -9
- package/src/cli/ssh.js +20 -6
- package/src/client/Default.index.js +42 -1
- package/src/client/components/core/Account.js +10 -2
- package/src/client/components/core/AgGrid.js +30 -8
- package/src/client/components/core/Auth.js +99 -56
- package/src/client/components/core/BtnIcon.js +3 -2
- package/src/client/components/core/CalendarCore.js +2 -3
- package/src/client/components/core/CommonJs.js +1 -2
- package/src/client/components/core/Content.js +15 -12
- package/src/client/components/core/Css.js +2 -1
- package/src/client/components/core/CssCore.js +18 -1
- package/src/client/components/core/Docs.js +5 -5
- package/src/client/components/core/FileExplorer.js +3 -3
- package/src/client/components/core/FullScreen.js +19 -28
- package/src/client/components/core/Input.js +22 -16
- package/src/client/components/core/JoyStick.js +2 -2
- package/src/client/components/core/LoadingAnimation.js +2 -2
- package/src/client/components/core/LogIn.js +16 -23
- package/src/client/components/core/LogOut.js +5 -1
- package/src/client/components/core/Logger.js +4 -1
- package/src/client/components/core/Modal.js +102 -87
- package/src/client/components/core/ObjectLayerEngine.js +229 -4
- package/src/client/components/core/ObjectLayerEngineModal.js +442 -0
- package/src/client/components/core/Pagination.js +207 -0
- package/src/client/components/core/Panel.js +10 -10
- package/src/client/components/core/PanelForm.js +130 -33
- package/src/client/components/core/Recover.js +2 -2
- package/src/client/components/core/Router.js +210 -34
- package/src/client/components/core/SignUp.js +1 -2
- package/src/client/components/core/Stream.js +1 -1
- package/src/client/components/core/ToggleSwitch.js +15 -1
- package/src/client/components/core/VanillaJs.js +3 -84
- package/src/client/components/core/Worker.js +2 -2
- package/src/client/components/default/LogInDefault.js +0 -6
- package/src/client/components/default/LogOutDefault.js +0 -16
- package/src/client/components/default/MenuDefault.js +97 -44
- package/src/client/components/default/RoutesDefault.js +5 -2
- package/src/client/public/default/assets/mailer/api-user-default-avatar.png +0 -0
- package/src/client/services/core/core.service.js +8 -20
- package/src/client/services/default/default.management.js +115 -18
- package/src/client/services/default/default.service.js +13 -4
- package/src/client/services/document/document.service.js +97 -0
- package/src/client/services/file/file.service.js +2 -0
- package/src/client/services/test/test.service.js +3 -0
- package/src/client/services/user/user.management.js +6 -0
- package/src/client/services/user/user.service.js +15 -4
- package/src/client/ssr/Render.js +1 -1
- package/src/client/ssr/head/DefaultScripts.js +3 -0
- package/src/client/ssr/head/Seo.js +1 -0
- package/src/index.js +24 -2
- package/src/runtime/lampp/Lampp.js +89 -2
- package/src/runtime/xampp/Xampp.js +48 -1
- package/src/server/auth.js +519 -155
- package/src/server/backup.js +2 -2
- 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 +144 -141
- package/src/server/process.js +2 -1
- package/src/server/proxy.js +1 -1
- package/src/server/runtime.js +136 -288
- package/src/server/ssl.js +1 -2
- package/src/server/ssr.js +85 -0
- package/src/server/start.js +4 -4
- package/src/server/valkey.js +2 -1
- package/test/api.test.js +3 -2
- package/bin/cyberia0.js +0 -78
|
@@ -0,0 +1,442 @@
|
|
|
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 { s, append, hexToRgbA } from './VanillaJs.js';
|
|
8
|
+
import { getProxyPath } from './Router.js';
|
|
9
|
+
import { s4 } from './CommonJs.js';
|
|
10
|
+
import { Input } from './Input.js';
|
|
11
|
+
import { ToggleSwitch } from './ToggleSwitch.js';
|
|
12
|
+
import { ObjectLayerService } from '../../services/object-layer/object-layer.service.js';
|
|
13
|
+
|
|
14
|
+
const ObjectLayerEngineModal = {
|
|
15
|
+
templates: [
|
|
16
|
+
{
|
|
17
|
+
label: 'empty',
|
|
18
|
+
id: 'empty',
|
|
19
|
+
data: [],
|
|
20
|
+
},
|
|
21
|
+
],
|
|
22
|
+
RenderTemplate: (colorTemplate) => {
|
|
23
|
+
const ole = s('object-layer-engine');
|
|
24
|
+
if (!ole) {
|
|
25
|
+
return;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
if (colorTemplate.length === 0) {
|
|
29
|
+
ole.clear();
|
|
30
|
+
return;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
const matrix = colorTemplate.map((row) => row.map((hex) => [...hexToRgbA(hex), 255]));
|
|
34
|
+
ole.loadMatrix(matrix);
|
|
35
|
+
},
|
|
36
|
+
ObjectLayerData: {},
|
|
37
|
+
Render: async (options = { idModal: '' }) => {
|
|
38
|
+
await import(`${getProxyPath()}components/core/ObjectLayerEngine.js`);
|
|
39
|
+
// await import(`${getProxyPath()}components/core/WebComponent.js`);
|
|
40
|
+
const directionCodes = ['08', '18', '02', '12', '04', '14', '06', '16'];
|
|
41
|
+
const itemTypes = ['skin', 'weapon', 'armor', 'artifact', 'floor'];
|
|
42
|
+
const statTypes = ['effect', 'resistance', 'agility', 'range', 'intelligence', 'utility'];
|
|
43
|
+
let selectItemType = itemTypes[0];
|
|
44
|
+
let itemActivable = false;
|
|
45
|
+
let renderIsStateless = false;
|
|
46
|
+
let renderFrameDuration = 100;
|
|
47
|
+
|
|
48
|
+
for (const url of [
|
|
49
|
+
`${getProxyPath()}assets/templates/item-skin-08.json`,
|
|
50
|
+
`${getProxyPath()}assets/templates/item-skin-06.json`,
|
|
51
|
+
]) {
|
|
52
|
+
const id = url.split('/').pop().replace('.json', '');
|
|
53
|
+
ObjectLayerEngineModal.templates.push({
|
|
54
|
+
label: id,
|
|
55
|
+
id,
|
|
56
|
+
data: JSON.parse(await CoreService.getRaw({ url })).color,
|
|
57
|
+
});
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
const cells = 26;
|
|
61
|
+
const pixelSize = parseInt(320 / cells);
|
|
62
|
+
const idSectionA = 'template-section-a';
|
|
63
|
+
const idSectionB = 'template-section-b';
|
|
64
|
+
|
|
65
|
+
let directionsCodeBarRender = '';
|
|
66
|
+
|
|
67
|
+
for (const directionCode of directionCodes) {
|
|
68
|
+
setTimeout(() => {
|
|
69
|
+
EventsUI.onClick(`.direction-code-bar-frames-btn-${directionCode}`, async () => {
|
|
70
|
+
const image = await s('object-layer-engine').toBlob();
|
|
71
|
+
const json = s('object-layer-engine').exportMatrixJSON();
|
|
72
|
+
const id = `frame-capture-${s4()}-${s4()}`;
|
|
73
|
+
|
|
74
|
+
if (!ObjectLayerEngineModal.ObjectLayerData[directionCode])
|
|
75
|
+
ObjectLayerEngineModal.ObjectLayerData[directionCode] = [];
|
|
76
|
+
ObjectLayerEngineModal.ObjectLayerData[directionCode].push({ id, image, json });
|
|
77
|
+
|
|
78
|
+
append(
|
|
79
|
+
`.frames-${directionCode}`,
|
|
80
|
+
html`
|
|
81
|
+
<div class="in fll ${id}">
|
|
82
|
+
<img class="in fll direction-code-bar-frames-img" src="${URL.createObjectURL(image)}" />
|
|
83
|
+
${await BtnIcon.Render({
|
|
84
|
+
label: html`<i class="fa-solid fa-trash"></i>`,
|
|
85
|
+
class: `abs direction-code-bar-trash-btn direction-code-bar-trash-btn-${id}`,
|
|
86
|
+
})}
|
|
87
|
+
</div>
|
|
88
|
+
`,
|
|
89
|
+
);
|
|
90
|
+
|
|
91
|
+
EventsUI.onClick(`.direction-code-bar-trash-btn-${id}`, async () => {
|
|
92
|
+
s(`.${id}`).remove();
|
|
93
|
+
ObjectLayerEngineModal.ObjectLayerData[directionCode] = ObjectLayerEngineModal.ObjectLayerData[
|
|
94
|
+
directionCode
|
|
95
|
+
].filter((frame) => frame.id !== id);
|
|
96
|
+
});
|
|
97
|
+
});
|
|
98
|
+
|
|
99
|
+
EventsUI.onClick(`.ol-btn-save`, async () => {
|
|
100
|
+
const objectLayer = {
|
|
101
|
+
data: {
|
|
102
|
+
render: {
|
|
103
|
+
frames: {},
|
|
104
|
+
color: [],
|
|
105
|
+
frame_duration: 0,
|
|
106
|
+
is_stateless: false,
|
|
107
|
+
},
|
|
108
|
+
stats: {},
|
|
109
|
+
item: {},
|
|
110
|
+
},
|
|
111
|
+
};
|
|
112
|
+
for (const directionCode of directionCodes) {
|
|
113
|
+
const directions = ObjectLayerEngineModal.getDirectionsFromDirectionCode(directionCode);
|
|
114
|
+
for (const direction of directions) {
|
|
115
|
+
if (!objectLayer.data.render.frames[direction]) objectLayer.data.render.frames[direction] = [];
|
|
116
|
+
|
|
117
|
+
if (!(directionCode in ObjectLayerEngineModal.ObjectLayerData)) {
|
|
118
|
+
console.warn('No set directionCodeBarFrameData for directionCode', directionCode);
|
|
119
|
+
continue;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
for (const frameData of ObjectLayerEngineModal.ObjectLayerData[directionCode]) {
|
|
123
|
+
const { matrix } = JSON.parse(frameData.json);
|
|
124
|
+
const frameIndexColorMatrix = [];
|
|
125
|
+
let indexRow = -1;
|
|
126
|
+
for (const row of matrix) {
|
|
127
|
+
indexRow++;
|
|
128
|
+
frameIndexColorMatrix[indexRow] = [];
|
|
129
|
+
let indexCol = -1;
|
|
130
|
+
for (const value of row) {
|
|
131
|
+
indexCol++;
|
|
132
|
+
let colorIndex = objectLayer.data.render.color.findIndex(
|
|
133
|
+
(color) =>
|
|
134
|
+
color[0] === value[0] &&
|
|
135
|
+
color[1] === value[1] &&
|
|
136
|
+
color[2] === value[2] &&
|
|
137
|
+
color[3] === value[3],
|
|
138
|
+
);
|
|
139
|
+
if (colorIndex === -1) {
|
|
140
|
+
objectLayer.data.render.color.push(value);
|
|
141
|
+
colorIndex = objectLayer.data.render.color.length - 1;
|
|
142
|
+
}
|
|
143
|
+
frameIndexColorMatrix[indexRow][indexCol] = colorIndex;
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
objectLayer.data.render.frames[direction].push(frameIndexColorMatrix);
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
objectLayer.data.render.frame_duration = parseInt(s(`.ol-input-render-frame-duration`).value);
|
|
151
|
+
objectLayer.data.render.is_stateless = renderIsStateless;
|
|
152
|
+
objectLayer.data.stats = {
|
|
153
|
+
effect: parseInt(s(`.ol-input-item-stats-effect`).value),
|
|
154
|
+
resistance: parseInt(s(`.ol-input-item-stats-resistance`).value),
|
|
155
|
+
agility: parseInt(s(`.ol-input-item-stats-agility`).value),
|
|
156
|
+
range: parseInt(s(`.ol-input-item-stats-range`).value),
|
|
157
|
+
intelligence: parseInt(s(`.ol-input-item-stats-intelligence`).value),
|
|
158
|
+
utility: parseInt(s(`.ol-input-item-stats-utility`).value),
|
|
159
|
+
};
|
|
160
|
+
objectLayer.data.item = {
|
|
161
|
+
type: selectItemType,
|
|
162
|
+
activable: itemActivable,
|
|
163
|
+
id: s(`.ol-input-item-id`).value,
|
|
164
|
+
description: s(`.ol-input-item-description`).value,
|
|
165
|
+
};
|
|
166
|
+
console.warn('objectLayer', objectLayer);
|
|
167
|
+
|
|
168
|
+
// Upload images
|
|
169
|
+
{
|
|
170
|
+
for (const directionCode of Object.keys(ObjectLayerEngineModal.ObjectLayerData)) {
|
|
171
|
+
let frameIndex = -1;
|
|
172
|
+
for (const frame of ObjectLayerEngineModal.ObjectLayerData[directionCode]) {
|
|
173
|
+
frameIndex++;
|
|
174
|
+
const pngBlob = frame.image;
|
|
175
|
+
|
|
176
|
+
const form = new FormData();
|
|
177
|
+
form.append(directionCode, pngBlob, `${frameIndex}.png`);
|
|
178
|
+
|
|
179
|
+
const { status, data } = await ObjectLayerService.post({
|
|
180
|
+
id: `frame-image/${objectLayer.data.item.type}/${objectLayer.data.item.id}/${directionCode}`,
|
|
181
|
+
body: form,
|
|
182
|
+
headerId: 'file',
|
|
183
|
+
});
|
|
184
|
+
}
|
|
185
|
+
}
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
// Upload metadata
|
|
189
|
+
{
|
|
190
|
+
delete objectLayer.data.render.frames;
|
|
191
|
+
delete objectLayer.data.render.color;
|
|
192
|
+
const { status, data } = await ObjectLayerService.post({
|
|
193
|
+
id: `metadata/${objectLayer.data.item.type}/${objectLayer.data.item.id}`,
|
|
194
|
+
body: objectLayer,
|
|
195
|
+
});
|
|
196
|
+
}
|
|
197
|
+
});
|
|
198
|
+
});
|
|
199
|
+
directionsCodeBarRender += html`
|
|
200
|
+
<div class="in section-mp-border">
|
|
201
|
+
<div class="fl">
|
|
202
|
+
<div class="in fll">
|
|
203
|
+
<div class="in direction-code-bar-frames-title">${directionCode}</div>
|
|
204
|
+
<div class="in direction-code-bar-frames-btn">
|
|
205
|
+
${await BtnIcon.Render({
|
|
206
|
+
label: html`<i class="fa-solid fa-plus"></i>`,
|
|
207
|
+
class: `direction-code-bar-frames-btn-${directionCode}`,
|
|
208
|
+
})}
|
|
209
|
+
</div>
|
|
210
|
+
</div>
|
|
211
|
+
<div class="frames-${directionCode}"></div>
|
|
212
|
+
</div>
|
|
213
|
+
</div>
|
|
214
|
+
`;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
let statsInputsRender = '';
|
|
218
|
+
for (const statType of statTypes) {
|
|
219
|
+
statsInputsRender += html`
|
|
220
|
+
${await Input.Render({
|
|
221
|
+
id: `ol-input-item-stats-${statType}`,
|
|
222
|
+
label: html`<div class="inl" style="width: 120px; font-size: 16px; overflow: hidden">
|
|
223
|
+
<i class="fa-solid fa-chart-simple"></i> ${statType}
|
|
224
|
+
</div>`,
|
|
225
|
+
containerClass: 'inl',
|
|
226
|
+
type: 'number',
|
|
227
|
+
min: 0,
|
|
228
|
+
max: 10,
|
|
229
|
+
placeholder: true,
|
|
230
|
+
value: 0,
|
|
231
|
+
})}
|
|
232
|
+
`;
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
return html`
|
|
236
|
+
<style>
|
|
237
|
+
.direction-code-bar-frames-title {
|
|
238
|
+
font-weight: bold;
|
|
239
|
+
font-size: 1.2rem;
|
|
240
|
+
padding: 0.5rem;
|
|
241
|
+
}
|
|
242
|
+
.direction-code-bar-frames-img {
|
|
243
|
+
width: 100px;
|
|
244
|
+
height: auto;
|
|
245
|
+
margin: 3px;
|
|
246
|
+
}
|
|
247
|
+
.direction-code-bar-trash-btn {
|
|
248
|
+
top: 3px;
|
|
249
|
+
left: 3px;
|
|
250
|
+
background: red;
|
|
251
|
+
color: white;
|
|
252
|
+
}
|
|
253
|
+
.ol-btn-save {
|
|
254
|
+
padding: 0.5rem;
|
|
255
|
+
font-size: 30px;
|
|
256
|
+
font-weight: bold;
|
|
257
|
+
}
|
|
258
|
+
.ol-number-label {
|
|
259
|
+
width: 120px;
|
|
260
|
+
font-size: 16px;
|
|
261
|
+
overflow: hidden;
|
|
262
|
+
font-family: 'retro-font';
|
|
263
|
+
}
|
|
264
|
+
.sub-title-modal {
|
|
265
|
+
color: #ffcc00;
|
|
266
|
+
}
|
|
267
|
+
</style>
|
|
268
|
+
${borderChar(2, 'black', ['.sub-title-modal'])}
|
|
269
|
+
|
|
270
|
+
<div class="in section-mp section-mp-border">
|
|
271
|
+
<div class="in sub-title-modal"><i class="fa-solid fa-table-cells-large"></i> Frame editor</div>
|
|
272
|
+
|
|
273
|
+
<object-layer-engine id="ole" width="${cells}" height="${cells}" pixel-size="${pixelSize}">
|
|
274
|
+
</object-layer-engine>
|
|
275
|
+
</div>
|
|
276
|
+
|
|
277
|
+
<div class="in section-mp section-mp-border">
|
|
278
|
+
<div class="in sub-title-modal"><i class="fa-solid fa-database"></i> Render data</div>
|
|
279
|
+
${dynamicCol({ containerSelector: options.idModal, id: idSectionA })}
|
|
280
|
+
|
|
281
|
+
<div class="fl">
|
|
282
|
+
<div class="in fll ${idSectionA}-col-a">
|
|
283
|
+
<div class="in section-mp">
|
|
284
|
+
${await DropDown.Render({
|
|
285
|
+
value: ObjectLayerEngineModal.templates[0].id,
|
|
286
|
+
label: html`${Translate.Render('select-template')}`,
|
|
287
|
+
data: ObjectLayerEngineModal.templates.map((template) => {
|
|
288
|
+
return {
|
|
289
|
+
value: template.id,
|
|
290
|
+
display: html`<i class="fa-solid fa-paint-roller"></i> ${template.label}`,
|
|
291
|
+
onClick: async () => {
|
|
292
|
+
ObjectLayerEngineModal.RenderTemplate(template.data);
|
|
293
|
+
},
|
|
294
|
+
};
|
|
295
|
+
}),
|
|
296
|
+
})}
|
|
297
|
+
</div>
|
|
298
|
+
</div>
|
|
299
|
+
<div class="in fll ${idSectionA}-col-b">
|
|
300
|
+
<div class="in section-mp-border" style="width: 135px;">
|
|
301
|
+
${await Input.Render({
|
|
302
|
+
id: `ol-input-render-frame-duration`,
|
|
303
|
+
label: html`<div class="inl ol-number-label">
|
|
304
|
+
<i class="fa-solid fa-chart-simple"></i> Frame duration
|
|
305
|
+
</div>`,
|
|
306
|
+
containerClass: 'inl',
|
|
307
|
+
type: 'number',
|
|
308
|
+
min: 100,
|
|
309
|
+
max: 1000,
|
|
310
|
+
placeholder: true,
|
|
311
|
+
value: renderFrameDuration,
|
|
312
|
+
})}
|
|
313
|
+
</div>
|
|
314
|
+
<div class="in section-mp">
|
|
315
|
+
${await ToggleSwitch.Render({
|
|
316
|
+
id: 'ol-toggle-render-is-stateless',
|
|
317
|
+
wrapper: true,
|
|
318
|
+
wrapperLabel: html`${Translate.Render('is-stateless')}`,
|
|
319
|
+
disabledOnClick: true,
|
|
320
|
+
checked: renderIsStateless,
|
|
321
|
+
on: {
|
|
322
|
+
unchecked: () => {
|
|
323
|
+
renderIsStateless = false;
|
|
324
|
+
console.warn('renderIsStateless', renderIsStateless);
|
|
325
|
+
},
|
|
326
|
+
checked: () => {
|
|
327
|
+
renderIsStateless = true;
|
|
328
|
+
console.warn('renderIsStateless', renderIsStateless);
|
|
329
|
+
},
|
|
330
|
+
},
|
|
331
|
+
})}
|
|
332
|
+
</div>
|
|
333
|
+
</div>
|
|
334
|
+
</div>
|
|
335
|
+
${directionsCodeBarRender}
|
|
336
|
+
</div>
|
|
337
|
+
${dynamicCol({ containerSelector: options.idModal, id: idSectionB, type: 'a-50-b-50' })}
|
|
338
|
+
|
|
339
|
+
<div class="fl">
|
|
340
|
+
<div class="in fll ${idSectionB}-col-a">
|
|
341
|
+
<div class="in section-mp section-mp-border">
|
|
342
|
+
<div class="in sub-title-modal"><i class="fa-solid fa-database"></i> Item data</div>
|
|
343
|
+
${await Input.Render({
|
|
344
|
+
id: `ol-input-item-id`,
|
|
345
|
+
label: html`<i class="fa-solid fa-pen-to-square"></i> ${Translate.Render('item-id')}`,
|
|
346
|
+
containerClass: '',
|
|
347
|
+
placeholder: true,
|
|
348
|
+
})}
|
|
349
|
+
${await Input.Render({
|
|
350
|
+
id: `ol-input-item-description`,
|
|
351
|
+
label: html`<i class="fa-solid fa-pen-to-square"></i> ${Translate.Render('item-description')}`,
|
|
352
|
+
containerClass: '',
|
|
353
|
+
placeholder: true,
|
|
354
|
+
})}
|
|
355
|
+
<div class="in section-mp">
|
|
356
|
+
${await DropDown.Render({
|
|
357
|
+
value: itemTypes[0],
|
|
358
|
+
label: html`${Translate.Render('select-item-type')}`,
|
|
359
|
+
data: itemTypes.map((itemType) => {
|
|
360
|
+
return {
|
|
361
|
+
value: itemType,
|
|
362
|
+
display: html`${itemType}`,
|
|
363
|
+
onClick: async () => {
|
|
364
|
+
console.warn('itemType click', itemType);
|
|
365
|
+
selectItemType = itemType;
|
|
366
|
+
},
|
|
367
|
+
};
|
|
368
|
+
}),
|
|
369
|
+
})}
|
|
370
|
+
</div>
|
|
371
|
+
<div class="in section-mp">
|
|
372
|
+
${await ToggleSwitch.Render({
|
|
373
|
+
id: 'ol-toggle-item-activable',
|
|
374
|
+
wrapper: true,
|
|
375
|
+
wrapperLabel: html`${Translate.Render('item-activable')}`,
|
|
376
|
+
disabledOnClick: true,
|
|
377
|
+
checked: itemActivable,
|
|
378
|
+
on: {
|
|
379
|
+
unchecked: () => {
|
|
380
|
+
itemActivable = false;
|
|
381
|
+
console.warn('itemActivable', itemActivable);
|
|
382
|
+
},
|
|
383
|
+
checked: () => {
|
|
384
|
+
itemActivable = true;
|
|
385
|
+
console.warn('itemActivable', itemActivable);
|
|
386
|
+
},
|
|
387
|
+
},
|
|
388
|
+
})}
|
|
389
|
+
</div>
|
|
390
|
+
</div>
|
|
391
|
+
</div>
|
|
392
|
+
<div class="in fll ${idSectionB}-col-b">
|
|
393
|
+
<div class="in section-mp section-mp-border">
|
|
394
|
+
<div class="in sub-title-modal"><i class="fa-solid fa-database"></i> Stats data</div>
|
|
395
|
+
${statsInputsRender}
|
|
396
|
+
</div>
|
|
397
|
+
</div>
|
|
398
|
+
</div>
|
|
399
|
+
|
|
400
|
+
<div class="in section-mp">
|
|
401
|
+
${await BtnIcon.Render({
|
|
402
|
+
label: html`<i class="fa-solid fa-save"></i> ${Translate.Render('save')}`,
|
|
403
|
+
class: `in flr ol-btn-save`,
|
|
404
|
+
})}
|
|
405
|
+
</div>
|
|
406
|
+
`;
|
|
407
|
+
},
|
|
408
|
+
getDirectionsFromDirectionCode(directionCode = '08') {
|
|
409
|
+
let objectLayerFrameDirections = [];
|
|
410
|
+
|
|
411
|
+
switch (directionCode) {
|
|
412
|
+
case '08':
|
|
413
|
+
objectLayerFrameDirections = ['down_idle', 'none_idle', 'default_idle'];
|
|
414
|
+
break;
|
|
415
|
+
case '18':
|
|
416
|
+
objectLayerFrameDirections = ['down_walking'];
|
|
417
|
+
break;
|
|
418
|
+
case '02':
|
|
419
|
+
objectLayerFrameDirections = ['up_idle'];
|
|
420
|
+
break;
|
|
421
|
+
case '12':
|
|
422
|
+
objectLayerFrameDirections = ['up_walking'];
|
|
423
|
+
break;
|
|
424
|
+
case '04':
|
|
425
|
+
objectLayerFrameDirections = ['left_idle', 'up_left_idle', 'down_left_idle'];
|
|
426
|
+
break;
|
|
427
|
+
case '14':
|
|
428
|
+
objectLayerFrameDirections = ['left_walking', 'up_left_walking', 'down_left_walking'];
|
|
429
|
+
break;
|
|
430
|
+
case '06':
|
|
431
|
+
objectLayerFrameDirections = ['right_idle', 'up_right_idle', 'down_right_idle'];
|
|
432
|
+
break;
|
|
433
|
+
case '16':
|
|
434
|
+
objectLayerFrameDirections = ['right_walking', 'up_right_walking', 'down_right_walking'];
|
|
435
|
+
break;
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
return objectLayerFrameDirections;
|
|
439
|
+
},
|
|
440
|
+
};
|
|
441
|
+
|
|
442
|
+
export { ObjectLayerEngineModal };
|
|
@@ -0,0 +1,207 @@
|
|
|
1
|
+
import { getQueryParams, setQueryParams } from './Router.js';
|
|
2
|
+
|
|
3
|
+
class AgPagination extends HTMLElement {
|
|
4
|
+
constructor() {
|
|
5
|
+
super();
|
|
6
|
+
this.attachShadow({ mode: 'open' });
|
|
7
|
+
this._gridId = null;
|
|
8
|
+
const queryParams = getQueryParams();
|
|
9
|
+
this._currentPage = parseInt(queryParams.page, 10) || 1;
|
|
10
|
+
this._limit = parseInt(queryParams.limit, 10) || 10;
|
|
11
|
+
this._totalPages = 1;
|
|
12
|
+
this._totalItems = 0;
|
|
13
|
+
this.handlePageChange = this.handlePageChange.bind(this);
|
|
14
|
+
this.handleLimitChange = this.handleLimitChange.bind(this);
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
static get observedAttributes() {
|
|
18
|
+
return ['grid-id', 'current-page', 'total-pages', 'total-items', 'limit'];
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
attributeChangedCallback(name, oldValue, newValue) {
|
|
22
|
+
switch (name) {
|
|
23
|
+
case 'grid-id':
|
|
24
|
+
this._gridId = newValue;
|
|
25
|
+
break;
|
|
26
|
+
case 'current-page':
|
|
27
|
+
this._currentPage = parseInt(newValue, 10) || this._currentPage;
|
|
28
|
+
break;
|
|
29
|
+
case 'total-pages':
|
|
30
|
+
this._totalPages = parseInt(newValue, 10) || 1;
|
|
31
|
+
break;
|
|
32
|
+
case 'total-items':
|
|
33
|
+
this._totalItems = parseInt(newValue, 10) || 0;
|
|
34
|
+
break;
|
|
35
|
+
case 'limit':
|
|
36
|
+
this._limit = parseInt(newValue, 10) || this._limit;
|
|
37
|
+
break;
|
|
38
|
+
}
|
|
39
|
+
this.update();
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
connectedCallback() {
|
|
43
|
+
this.render();
|
|
44
|
+
this.addEventListeners();
|
|
45
|
+
this.update();
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
disconnectedCallback() {
|
|
49
|
+
// Event listeners on shadow DOM are garbage collected with the component
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
handlePageChange(newPage) {
|
|
53
|
+
if (newPage < 1 || newPage > this._totalPages || newPage === this._currentPage) {
|
|
54
|
+
return;
|
|
55
|
+
}
|
|
56
|
+
this._currentPage = newPage;
|
|
57
|
+
setQueryParams({ page: newPage, limit: this._limit });
|
|
58
|
+
this.dispatchEvent(new CustomEvent('page-change', { detail: { page: newPage } }));
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
handleLimitChange(event) {
|
|
62
|
+
const newLimit = parseInt(event.target.value, 10);
|
|
63
|
+
if (newLimit === this._limit) {
|
|
64
|
+
return;
|
|
65
|
+
}
|
|
66
|
+
this._limit = newLimit;
|
|
67
|
+
this._currentPage = 1; // Reset to first page on limit change
|
|
68
|
+
setQueryParams({ page: 1, limit: newLimit });
|
|
69
|
+
this.dispatchEvent(new CustomEvent('limit-change', { detail: { limit: newLimit } }));
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
update() {
|
|
73
|
+
if (!this.shadowRoot.querySelector('#page-info')) return;
|
|
74
|
+
|
|
75
|
+
const isFirstPage = this._currentPage === 1;
|
|
76
|
+
const isLastPage = this._currentPage === this._totalPages;
|
|
77
|
+
|
|
78
|
+
this.shadowRoot.querySelector('#first-page').disabled = isFirstPage;
|
|
79
|
+
this.shadowRoot.querySelector('#prev-page').disabled = isFirstPage;
|
|
80
|
+
this.shadowRoot.querySelector('#next-page').disabled = isLastPage;
|
|
81
|
+
this.shadowRoot.querySelector('#last-page').disabled = isLastPage;
|
|
82
|
+
|
|
83
|
+
const startItem = this._totalItems > 0 ? (this._currentPage - 1) * this._limit + 1 : 0;
|
|
84
|
+
const endItem = Math.min(this._currentPage * this._limit, this._totalItems);
|
|
85
|
+
|
|
86
|
+
this.shadowRoot.querySelector('#summary-info').textContent = `${startItem} - ${endItem} of ${this._totalItems}`;
|
|
87
|
+
this.shadowRoot.querySelector('#page-info').textContent = `Page ${this._currentPage} of ${this._totalPages}`;
|
|
88
|
+
|
|
89
|
+
const limitSelector = this.shadowRoot.querySelector('#limit-selector');
|
|
90
|
+
if (limitSelector.value != this._limit) {
|
|
91
|
+
limitSelector.value = this._limit;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
this.renderPageButtons();
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
renderPageButtons() {
|
|
98
|
+
const pageButtonsContainer = this.shadowRoot.querySelector('#page-buttons');
|
|
99
|
+
pageButtonsContainer.innerHTML = '';
|
|
100
|
+
|
|
101
|
+
const maxButtons = 5;
|
|
102
|
+
let startPage = Math.max(1, this._currentPage - Math.floor(maxButtons / 2));
|
|
103
|
+
let endPage = Math.min(this._totalPages, startPage + maxButtons - 1);
|
|
104
|
+
|
|
105
|
+
if (endPage - startPage + 1 < maxButtons) {
|
|
106
|
+
startPage = Math.max(1, endPage - maxButtons + 1);
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
for (let i = startPage; i <= endPage; i++) {
|
|
110
|
+
const button = document.createElement('button');
|
|
111
|
+
button.textContent = i;
|
|
112
|
+
button.disabled = i === this._currentPage;
|
|
113
|
+
if (i === this._currentPage) {
|
|
114
|
+
button.classList.add('active');
|
|
115
|
+
}
|
|
116
|
+
button.addEventListener('click', () => this.handlePageChange(i));
|
|
117
|
+
pageButtonsContainer.appendChild(button);
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
addEventListeners() {
|
|
122
|
+
this.shadowRoot.querySelector('#first-page').addEventListener('click', () => this.handlePageChange(1));
|
|
123
|
+
this.shadowRoot
|
|
124
|
+
.querySelector('#prev-page')
|
|
125
|
+
.addEventListener('click', () => this.handlePageChange(this._currentPage - 1));
|
|
126
|
+
this.shadowRoot
|
|
127
|
+
.querySelector('#next-page')
|
|
128
|
+
.addEventListener('click', () => this.handlePageChange(this._currentPage + 1));
|
|
129
|
+
this.shadowRoot
|
|
130
|
+
.querySelector('#last-page')
|
|
131
|
+
.addEventListener('click', () => this.handlePageChange(this._totalPages));
|
|
132
|
+
this.shadowRoot.querySelector('#limit-selector').addEventListener('change', this.handleLimitChange);
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
render() {
|
|
136
|
+
this.shadowRoot.innerHTML = html`
|
|
137
|
+
<style>
|
|
138
|
+
:host {
|
|
139
|
+
display: flex;
|
|
140
|
+
align-items: center;
|
|
141
|
+
justify-content: center;
|
|
142
|
+
padding: 8px;
|
|
143
|
+
font-family: sans-serif;
|
|
144
|
+
font-size: 14px;
|
|
145
|
+
gap: 8px;
|
|
146
|
+
}
|
|
147
|
+
button {
|
|
148
|
+
border: 1px solid #ccc;
|
|
149
|
+
background-color: #f0f0f0;
|
|
150
|
+
padding: 6px 12px;
|
|
151
|
+
cursor: pointer;
|
|
152
|
+
border-radius: 4px;
|
|
153
|
+
}
|
|
154
|
+
button:disabled {
|
|
155
|
+
cursor: not-allowed;
|
|
156
|
+
opacity: 0.5;
|
|
157
|
+
}
|
|
158
|
+
button.active {
|
|
159
|
+
border-color: #007bff;
|
|
160
|
+
background-color: #007bff;
|
|
161
|
+
color: white;
|
|
162
|
+
}
|
|
163
|
+
#page-info {
|
|
164
|
+
min-width: 80px;
|
|
165
|
+
text-align: center;
|
|
166
|
+
}
|
|
167
|
+
#page-buttons {
|
|
168
|
+
display: flex;
|
|
169
|
+
gap: 4px;
|
|
170
|
+
}
|
|
171
|
+
.summary-panel,
|
|
172
|
+
.page-summary-panel {
|
|
173
|
+
display: flex;
|
|
174
|
+
align-items: center;
|
|
175
|
+
gap: 8px;
|
|
176
|
+
}
|
|
177
|
+
#limit-selector {
|
|
178
|
+
border: 1px solid #ccc;
|
|
179
|
+
background-color: #f0f0f0;
|
|
180
|
+
padding: 6px 12px;
|
|
181
|
+
border-radius: 4px;
|
|
182
|
+
}
|
|
183
|
+
</style>
|
|
184
|
+
<div class="summary-panel">
|
|
185
|
+
<span id="summary-info"></span>
|
|
186
|
+
</div>
|
|
187
|
+
<button id="first-page">First</button>
|
|
188
|
+
<button id="prev-page">Previous</button>
|
|
189
|
+
<div class="page-summary-panel">
|
|
190
|
+
<div id="page-buttons"></div>
|
|
191
|
+
<span id="page-info"></span>
|
|
192
|
+
</div>
|
|
193
|
+
<button id="next-page">Next</button>
|
|
194
|
+
<button id="last-page">Last</button>
|
|
195
|
+
<select id="limit-selector">
|
|
196
|
+
<option value="10">10</option>
|
|
197
|
+
<option value="20">20</option>
|
|
198
|
+
<option value="50">50</option>
|
|
199
|
+
<option value="100">100</option>
|
|
200
|
+
</select>
|
|
201
|
+
`;
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
customElements.define('ag-pagination', AgPagination);
|
|
206
|
+
|
|
207
|
+
export { AgPagination };
|