react-aiops 0.1.3 → 0.1.4
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/components/ComponentDialog.d.ts.map +1 -1
- package/dist/components/NodeCallout.d.ts.map +1 -1
- package/dist/components/Server3D.d.ts +3 -1
- package/dist/components/Server3D.d.ts.map +1 -1
- package/dist/components/ServiceNode.d.ts.map +1 -1
- package/dist/components/index.d.ts +1 -1
- package/dist/components/index.d.ts.map +1 -1
- package/dist/index.js +470 -428
- package/dist/types.d.ts +12 -2
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { jsxs as d, jsx as e, Fragment as Ce } from "react/jsx-runtime";
|
|
2
|
-
import J, { createContext as Xe, useContext as ve, useState as
|
|
2
|
+
import J, { createContext as Xe, useContext as ve, useState as I, useEffect as Ee, useMemo as Et, useRef as ee } from "react";
|
|
3
3
|
const Tt = {
|
|
4
4
|
info: { color: "#00ff88", bg: "rgba(0, 255, 136, 0.1)", border: "#00ff88", icon: "✅" },
|
|
5
5
|
warning: { color: "#ff8c00", bg: "rgba(255, 140, 0, 0.1)", border: "#ff8c00", icon: "⚠️" },
|
|
@@ -13,7 +13,7 @@ function At({
|
|
|
13
13
|
metrics: r,
|
|
14
14
|
alerts: a
|
|
15
15
|
}) {
|
|
16
|
-
const s = n === "critical" || n === "offline", l = n === "warning",
|
|
16
|
+
const s = n === "critical" || n === "offline", l = n === "warning", h = r ?? [
|
|
17
17
|
{
|
|
18
18
|
label: "Uptime",
|
|
19
19
|
value: s ? "92.14%" : "99.98%",
|
|
@@ -115,10 +115,10 @@ function At({
|
|
|
115
115
|
fontSize: 13,
|
|
116
116
|
color: "#a0b0c0"
|
|
117
117
|
},
|
|
118
|
-
children:
|
|
118
|
+
children: h.map((p, f) => /* @__PURE__ */ d("div", { style: { display: "flex", justifyContent: "space-between" }, children: [
|
|
119
119
|
/* @__PURE__ */ e("span", { children: p.label }),
|
|
120
120
|
/* @__PURE__ */ e("span", { style: { color: p.color }, children: p.value })
|
|
121
|
-
] },
|
|
121
|
+
] }, f))
|
|
122
122
|
}
|
|
123
123
|
),
|
|
124
124
|
/* @__PURE__ */ d(
|
|
@@ -145,7 +145,7 @@ function At({
|
|
|
145
145
|
children: "SYSTEM ALERTS"
|
|
146
146
|
}
|
|
147
147
|
),
|
|
148
|
-
c.map((p,
|
|
148
|
+
c.map((p, f) => {
|
|
149
149
|
const y = Tt[p.level];
|
|
150
150
|
return /* @__PURE__ */ d(
|
|
151
151
|
"div",
|
|
@@ -167,7 +167,7 @@ function At({
|
|
|
167
167
|
/* @__PURE__ */ e("span", { children: p.message })
|
|
168
168
|
]
|
|
169
169
|
},
|
|
170
|
-
|
|
170
|
+
f
|
|
171
171
|
);
|
|
172
172
|
})
|
|
173
173
|
]
|
|
@@ -250,39 +250,39 @@ function It({
|
|
|
250
250
|
sceneWidth: i = 660,
|
|
251
251
|
sceneHeight: r = 600
|
|
252
252
|
}) {
|
|
253
|
-
const { type: a, name: s, status: l, ex:
|
|
253
|
+
const { type: a, name: s, status: l, ex: h, ey: c, context: p = {} } = t, f = st(l), y = h >= i / 2, u = c >= r / 2, g = {
|
|
254
254
|
position: "fixed",
|
|
255
255
|
...y ? { right: 28 } : { left: 28 },
|
|
256
|
-
...
|
|
257
|
-
}, m = y ? 40 : -40, x =
|
|
258
|
-
let
|
|
256
|
+
...u ? { bottom: 110 } : { top: 72 }
|
|
257
|
+
}, m = y ? 40 : -40, x = u ? 30 : -30, v = t.dialogMetrics ?? p.dialogMetrics;
|
|
258
|
+
let $;
|
|
259
259
|
if (v && v.length > 0)
|
|
260
|
-
|
|
261
|
-
const A =
|
|
260
|
+
$ = v.map((b, k) => {
|
|
261
|
+
const A = b.warnAt ?? 70, R = b.critAt ?? 85;
|
|
262
262
|
return {
|
|
263
|
-
id:
|
|
264
|
-
label:
|
|
265
|
-
sublabel:
|
|
266
|
-
value:
|
|
267
|
-
unit:
|
|
268
|
-
status: Le(l,
|
|
269
|
-
icon:
|
|
270
|
-
delay:
|
|
271
|
-
colorOverride:
|
|
263
|
+
id: b.id,
|
|
264
|
+
label: b.label,
|
|
265
|
+
sublabel: b.sublabel,
|
|
266
|
+
value: b.value,
|
|
267
|
+
unit: b.unit ?? "%",
|
|
268
|
+
status: Le(l, b.value, A, R),
|
|
269
|
+
icon: b.icon ?? "cpu",
|
|
270
|
+
delay: k,
|
|
271
|
+
colorOverride: b.color,
|
|
272
272
|
warnAt: A,
|
|
273
|
-
critAt:
|
|
273
|
+
critAt: R
|
|
274
274
|
};
|
|
275
275
|
});
|
|
276
276
|
else {
|
|
277
|
-
const
|
|
278
|
-
|
|
277
|
+
const b = p.cpuLoad ?? p.traffic ?? 50, k = p.memLoad ?? p.queueDepth ?? 60, A = p.capacity ?? 72, R = Le(l, b, 70, 85), L = Le(l, k, 75, 88), z = Le(l, A, 75, 90);
|
|
278
|
+
$ = [
|
|
279
279
|
{
|
|
280
280
|
id: "cpu",
|
|
281
281
|
label: a === "dispatcher" ? "TRAFFIC" : a === "messageServer" ? "QUEUE" : "CPU",
|
|
282
282
|
sublabel: a === "dispatcher" ? "PORT LOAD" : a === "messageServer" ? "QUEUE DEPTH" : "PROCESSOR",
|
|
283
|
-
value:
|
|
283
|
+
value: b,
|
|
284
284
|
unit: "%",
|
|
285
|
-
status:
|
|
285
|
+
status: R,
|
|
286
286
|
icon: "cpu",
|
|
287
287
|
delay: 0
|
|
288
288
|
},
|
|
@@ -290,9 +290,9 @@ function It({
|
|
|
290
290
|
id: "mem",
|
|
291
291
|
label: "MEMORY",
|
|
292
292
|
sublabel: a === "database" ? "BUFFER POOL" : "HEAP USAGE",
|
|
293
|
-
value:
|
|
293
|
+
value: k,
|
|
294
294
|
unit: "%",
|
|
295
|
-
status:
|
|
295
|
+
status: L,
|
|
296
296
|
icon: "mem",
|
|
297
297
|
delay: 1
|
|
298
298
|
},
|
|
@@ -302,7 +302,7 @@ function It({
|
|
|
302
302
|
sublabel: a === "database" ? "TABLESPACE" : "DISK I/O",
|
|
303
303
|
value: A,
|
|
304
304
|
unit: "%",
|
|
305
|
-
status:
|
|
305
|
+
status: z,
|
|
306
306
|
icon: "disk",
|
|
307
307
|
delay: 2
|
|
308
308
|
}
|
|
@@ -317,7 +317,7 @@ function It({
|
|
|
317
317
|
background: "linear-gradient(170deg, rgba(2, 10, 22, 0.96) 0%, rgba(2, 6, 14, 0.98) 100%)",
|
|
318
318
|
backdropFilter: "blur(20px)",
|
|
319
319
|
WebkitBackdropFilter: "blur(20px)",
|
|
320
|
-
border: `1.5px solid ${
|
|
320
|
+
border: `1.5px solid ${f}44`,
|
|
321
321
|
borderRadius: 14,
|
|
322
322
|
fontFamily: "'Courier New', monospace",
|
|
323
323
|
overflow: "hidden",
|
|
@@ -327,9 +327,9 @@ function It({
|
|
|
327
327
|
pointerEvents: o ? "auto" : "none",
|
|
328
328
|
zIndex: 9999,
|
|
329
329
|
animation: o ? "comp-dialog-border-glow 3s ease-in-out infinite" : "none",
|
|
330
|
-
"--dialog-color":
|
|
330
|
+
"--dialog-color": f
|
|
331
331
|
},
|
|
332
|
-
onClick: (
|
|
332
|
+
onClick: (b) => b.stopPropagation(),
|
|
333
333
|
children: [
|
|
334
334
|
/* @__PURE__ */ e(
|
|
335
335
|
"div",
|
|
@@ -340,8 +340,8 @@ function It({
|
|
|
340
340
|
left: 0,
|
|
341
341
|
right: 0,
|
|
342
342
|
height: 2,
|
|
343
|
-
background: `linear-gradient(90deg, transparent 2%, ${
|
|
344
|
-
boxShadow: `0 0 12px ${
|
|
343
|
+
background: `linear-gradient(90deg, transparent 2%, ${f}aa 30%, #fff 50%, ${f}aa 70%, transparent 98%)`,
|
|
344
|
+
boxShadow: `0 0 12px ${f}, 0 0 24px ${f}44`,
|
|
345
345
|
animation: o ? "holo-scan 3.5s linear infinite" : "none",
|
|
346
346
|
pointerEvents: "none",
|
|
347
347
|
zIndex: 10
|
|
@@ -355,8 +355,8 @@ function It({
|
|
|
355
355
|
position: "absolute",
|
|
356
356
|
inset: 0,
|
|
357
357
|
backgroundImage: `
|
|
358
|
-
linear-gradient(${
|
|
359
|
-
linear-gradient(90deg, ${
|
|
358
|
+
linear-gradient(${f}06 1px, transparent 1px),
|
|
359
|
+
linear-gradient(90deg, ${f}06 1px, transparent 1px)
|
|
360
360
|
`,
|
|
361
361
|
backgroundSize: "20px 20px",
|
|
362
362
|
pointerEvents: "none",
|
|
@@ -368,37 +368,37 @@ function It({
|
|
|
368
368
|
{
|
|
369
369
|
top: 0,
|
|
370
370
|
left: 0,
|
|
371
|
-
borderTop: `2px solid ${
|
|
372
|
-
borderLeft: `2px solid ${
|
|
371
|
+
borderTop: `2px solid ${f}66`,
|
|
372
|
+
borderLeft: `2px solid ${f}66`,
|
|
373
373
|
borderRadius: "14px 0 0 0"
|
|
374
374
|
},
|
|
375
375
|
{
|
|
376
376
|
top: 0,
|
|
377
377
|
right: 0,
|
|
378
|
-
borderTop: `2px solid ${
|
|
379
|
-
borderRight: `2px solid ${
|
|
378
|
+
borderTop: `2px solid ${f}66`,
|
|
379
|
+
borderRight: `2px solid ${f}66`,
|
|
380
380
|
borderRadius: "0 14px 0 0"
|
|
381
381
|
},
|
|
382
382
|
{
|
|
383
383
|
bottom: 0,
|
|
384
384
|
left: 0,
|
|
385
|
-
borderBottom: `2px solid ${
|
|
386
|
-
borderLeft: `2px solid ${
|
|
385
|
+
borderBottom: `2px solid ${f}66`,
|
|
386
|
+
borderLeft: `2px solid ${f}66`,
|
|
387
387
|
borderRadius: "0 0 0 14px"
|
|
388
388
|
},
|
|
389
389
|
{
|
|
390
390
|
bottom: 0,
|
|
391
391
|
right: 0,
|
|
392
|
-
borderBottom: `2px solid ${
|
|
393
|
-
borderRight: `2px solid ${
|
|
392
|
+
borderBottom: `2px solid ${f}66`,
|
|
393
|
+
borderRight: `2px solid ${f}66`,
|
|
394
394
|
borderRadius: "0 0 14px 0"
|
|
395
395
|
}
|
|
396
|
-
].map((
|
|
396
|
+
].map((b, k) => /* @__PURE__ */ e(
|
|
397
397
|
"div",
|
|
398
398
|
{
|
|
399
|
-
style: { position: "absolute", width: 18, height: 18, pointerEvents: "none", ...
|
|
399
|
+
style: { position: "absolute", width: 18, height: 18, pointerEvents: "none", ...b }
|
|
400
400
|
},
|
|
401
|
-
|
|
401
|
+
k
|
|
402
402
|
)),
|
|
403
403
|
/* @__PURE__ */ d(
|
|
404
404
|
"div",
|
|
@@ -408,8 +408,8 @@ function It({
|
|
|
408
408
|
alignItems: "center",
|
|
409
409
|
justifyContent: "space-between",
|
|
410
410
|
padding: "18px 22px",
|
|
411
|
-
borderBottom: `1px solid ${
|
|
412
|
-
background: `linear-gradient(180deg, ${
|
|
411
|
+
borderBottom: `1px solid ${f}22`,
|
|
412
|
+
background: `linear-gradient(180deg, ${f}12 0%, transparent 100%)`,
|
|
413
413
|
position: "relative",
|
|
414
414
|
zIndex: 2
|
|
415
415
|
},
|
|
@@ -423,8 +423,8 @@ function It({
|
|
|
423
423
|
width: 10,
|
|
424
424
|
height: 10,
|
|
425
425
|
borderRadius: "50%",
|
|
426
|
-
background:
|
|
427
|
-
boxShadow: `0 0 12px ${
|
|
426
|
+
background: f,
|
|
427
|
+
boxShadow: `0 0 12px ${f}, 0 0 24px ${f}66`,
|
|
428
428
|
animation: l === "warning" || l === "critical" ? "holo-led-blink 1.5s infinite" : "none"
|
|
429
429
|
}
|
|
430
430
|
}
|
|
@@ -436,7 +436,7 @@ function It({
|
|
|
436
436
|
position: "absolute",
|
|
437
437
|
inset: -4,
|
|
438
438
|
borderRadius: "50%",
|
|
439
|
-
border: `1px solid ${
|
|
439
|
+
border: `1px solid ${f}44`,
|
|
440
440
|
animation: l === "warning" || l === "critical" ? "holo-ring-pulse 2s ease-in-out infinite" : "none"
|
|
441
441
|
}
|
|
442
442
|
}
|
|
@@ -449,13 +449,13 @@ function It({
|
|
|
449
449
|
style: {
|
|
450
450
|
fontSize: 16,
|
|
451
451
|
fontWeight: 700,
|
|
452
|
-
color:
|
|
452
|
+
color: f,
|
|
453
453
|
letterSpacing: "0.12em",
|
|
454
454
|
textTransform: "uppercase",
|
|
455
455
|
whiteSpace: "nowrap",
|
|
456
456
|
overflow: "hidden",
|
|
457
457
|
textOverflow: "ellipsis",
|
|
458
|
-
textShadow: `0 0 10px ${
|
|
458
|
+
textShadow: `0 0 10px ${f}88, 0 0 20px ${f}44`
|
|
459
459
|
},
|
|
460
460
|
children: s
|
|
461
461
|
}
|
|
@@ -465,7 +465,7 @@ function It({
|
|
|
465
465
|
{
|
|
466
466
|
style: {
|
|
467
467
|
fontSize: 9,
|
|
468
|
-
color: `${
|
|
468
|
+
color: `${f}88`,
|
|
469
469
|
letterSpacing: "0.2em",
|
|
470
470
|
textTransform: "uppercase"
|
|
471
471
|
},
|
|
@@ -477,16 +477,16 @@ function It({
|
|
|
477
477
|
/* @__PURE__ */ e(
|
|
478
478
|
"button",
|
|
479
479
|
{
|
|
480
|
-
onClick: (
|
|
481
|
-
|
|
480
|
+
onClick: (b) => {
|
|
481
|
+
b.stopPropagation(), n();
|
|
482
482
|
},
|
|
483
483
|
style: {
|
|
484
484
|
width: 34,
|
|
485
485
|
height: 34,
|
|
486
486
|
borderRadius: 8,
|
|
487
|
-
border: `1px solid ${
|
|
488
|
-
background: `linear-gradient(135deg, rgba(0,0,0,0.5) 0%, ${
|
|
489
|
-
color:
|
|
487
|
+
border: `1px solid ${f}44`,
|
|
488
|
+
background: `linear-gradient(135deg, rgba(0,0,0,0.5) 0%, ${f}08 100%)`,
|
|
489
|
+
color: f,
|
|
490
490
|
fontSize: 18,
|
|
491
491
|
cursor: "pointer",
|
|
492
492
|
display: "flex",
|
|
@@ -496,11 +496,11 @@ function It({
|
|
|
496
496
|
lineHeight: 1,
|
|
497
497
|
flexShrink: 0
|
|
498
498
|
},
|
|
499
|
-
onMouseEnter: (
|
|
500
|
-
|
|
499
|
+
onMouseEnter: (b) => {
|
|
500
|
+
b.currentTarget.style.background = `${f}22`, b.currentTarget.style.boxShadow = `0 0 12px ${f}44`;
|
|
501
501
|
},
|
|
502
|
-
onMouseLeave: (
|
|
503
|
-
|
|
502
|
+
onMouseLeave: (b) => {
|
|
503
|
+
b.currentTarget.style.background = `linear-gradient(135deg, rgba(0,0,0,0.5) 0%, ${f}08 100%)`, b.currentTarget.style.boxShadow = "none";
|
|
504
504
|
},
|
|
505
505
|
children: "×"
|
|
506
506
|
}
|
|
@@ -519,7 +519,7 @@ function It({
|
|
|
519
519
|
position: "relative",
|
|
520
520
|
zIndex: 2
|
|
521
521
|
},
|
|
522
|
-
children:
|
|
522
|
+
children: $.map((b) => /* @__PURE__ */ e(Ot, { metric: b, visible: o, accentColor: f }, b.id))
|
|
523
523
|
}
|
|
524
524
|
),
|
|
525
525
|
/* @__PURE__ */ d(
|
|
@@ -527,14 +527,14 @@ function It({
|
|
|
527
527
|
{
|
|
528
528
|
style: {
|
|
529
529
|
padding: "12px 22px",
|
|
530
|
-
borderTop: `1px solid ${
|
|
531
|
-
background: `${
|
|
530
|
+
borderTop: `1px solid ${f}18`,
|
|
531
|
+
background: `${f}06`,
|
|
532
532
|
display: "flex",
|
|
533
533
|
alignItems: "center",
|
|
534
534
|
justifyContent: "space-between",
|
|
535
535
|
fontSize: 9,
|
|
536
536
|
letterSpacing: "0.18em",
|
|
537
|
-
color: `${
|
|
537
|
+
color: `${f}66`,
|
|
538
538
|
textTransform: "uppercase",
|
|
539
539
|
position: "relative",
|
|
540
540
|
zIndex: 2
|
|
@@ -553,8 +553,8 @@ function It({
|
|
|
553
553
|
width: 5,
|
|
554
554
|
height: 5,
|
|
555
555
|
borderRadius: "50%",
|
|
556
|
-
background: l === "online" ? "#00ff88" :
|
|
557
|
-
boxShadow: `0 0 6px ${l === "online" ? "#00ff88" :
|
|
556
|
+
background: l === "online" ? "#00ff88" : f,
|
|
557
|
+
boxShadow: `0 0 6px ${l === "online" ? "#00ff88" : f}`,
|
|
558
558
|
animation: l === "warning" || l === "critical" ? "holo-led-blink 1.5s infinite" : "none"
|
|
559
559
|
}
|
|
560
560
|
}
|
|
@@ -573,7 +573,18 @@ function Ot({
|
|
|
573
573
|
visible: n,
|
|
574
574
|
accentColor: o
|
|
575
575
|
}) {
|
|
576
|
-
const {
|
|
576
|
+
const {
|
|
577
|
+
label: i,
|
|
578
|
+
sublabel: r,
|
|
579
|
+
value: a,
|
|
580
|
+
unit: s,
|
|
581
|
+
status: l,
|
|
582
|
+
icon: h,
|
|
583
|
+
delay: c,
|
|
584
|
+
colorOverride: p,
|
|
585
|
+
warnAt: f = 70,
|
|
586
|
+
critAt: y = 85
|
|
587
|
+
} = t, u = p ?? Lt(a, f, y), g = p ?? st(l);
|
|
577
588
|
return /* @__PURE__ */ d(
|
|
578
589
|
"div",
|
|
579
590
|
{
|
|
@@ -604,7 +615,7 @@ function Ot({
|
|
|
604
615
|
animation: n ? `comp-dialog-icon-pop 0.5s ${Ve} ${0.35 + c * 0.12}s both` : "none"
|
|
605
616
|
},
|
|
606
617
|
children: [
|
|
607
|
-
/* @__PURE__ */ e(Dt, { type:
|
|
618
|
+
/* @__PURE__ */ e(Dt, { type: h, color: g }),
|
|
608
619
|
(l === "warning" || l === "critical") && /* @__PURE__ */ e(
|
|
609
620
|
"div",
|
|
610
621
|
{
|
|
@@ -667,8 +678,8 @@ function Ot({
|
|
|
667
678
|
style: {
|
|
668
679
|
fontSize: 20,
|
|
669
680
|
fontWeight: 700,
|
|
670
|
-
color:
|
|
671
|
-
textShadow: `0 0 8px ${
|
|
681
|
+
color: u,
|
|
682
|
+
textShadow: `0 0 8px ${u}44`,
|
|
672
683
|
fontFamily: "'Courier New', monospace"
|
|
673
684
|
},
|
|
674
685
|
children: [
|
|
@@ -700,8 +711,8 @@ function Ot({
|
|
|
700
711
|
width: `${a}%`,
|
|
701
712
|
height: "100%",
|
|
702
713
|
borderRadius: 3,
|
|
703
|
-
background: `linear-gradient(90deg, ${
|
|
704
|
-
boxShadow: `0 0 8px ${
|
|
714
|
+
background: `linear-gradient(90deg, ${u}66, ${u})`,
|
|
715
|
+
boxShadow: `0 0 8px ${u}44`,
|
|
705
716
|
transformOrigin: "left center",
|
|
706
717
|
animation: n ? `comp-dialog-metric-fill 0.8s ${_e} ${0.4 + c * 0.12}s both` : "none"
|
|
707
718
|
}
|
|
@@ -712,7 +723,7 @@ function Ot({
|
|
|
712
723
|
{
|
|
713
724
|
style: {
|
|
714
725
|
position: "absolute",
|
|
715
|
-
left: `${
|
|
726
|
+
left: `${f}%`,
|
|
716
727
|
top: 0,
|
|
717
728
|
bottom: 0,
|
|
718
729
|
width: 1,
|
|
@@ -737,13 +748,25 @@ function Ot({
|
|
|
737
748
|
}
|
|
738
749
|
),
|
|
739
750
|
/* @__PURE__ */ d("div", { style: { position: "relative", height: 10, marginTop: 2 }, children: [
|
|
740
|
-
/* @__PURE__ */ e("span", { style: { position: "absolute", left: 0, fontSize: 6, color: "rgba(255,255,255,0.15)", letterSpacing: "0.1em" }, children: "0" }),
|
|
741
751
|
/* @__PURE__ */ e(
|
|
742
752
|
"span",
|
|
743
753
|
{
|
|
744
754
|
style: {
|
|
745
755
|
position: "absolute",
|
|
746
|
-
left:
|
|
756
|
+
left: 0,
|
|
757
|
+
fontSize: 6,
|
|
758
|
+
color: "rgba(255,255,255,0.15)",
|
|
759
|
+
letterSpacing: "0.1em"
|
|
760
|
+
},
|
|
761
|
+
children: "0"
|
|
762
|
+
}
|
|
763
|
+
),
|
|
764
|
+
/* @__PURE__ */ e(
|
|
765
|
+
"span",
|
|
766
|
+
{
|
|
767
|
+
style: {
|
|
768
|
+
position: "absolute",
|
|
769
|
+
left: `${f}%`,
|
|
747
770
|
transform: "translateX(-50%)",
|
|
748
771
|
fontSize: 6,
|
|
749
772
|
color: "rgba(255,140,0,0.3)",
|
|
@@ -766,7 +789,19 @@ function Ot({
|
|
|
766
789
|
children: "CRIT"
|
|
767
790
|
}
|
|
768
791
|
),
|
|
769
|
-
/* @__PURE__ */ e(
|
|
792
|
+
/* @__PURE__ */ e(
|
|
793
|
+
"span",
|
|
794
|
+
{
|
|
795
|
+
style: {
|
|
796
|
+
position: "absolute",
|
|
797
|
+
right: 0,
|
|
798
|
+
fontSize: 6,
|
|
799
|
+
color: "rgba(255,255,255,0.15)",
|
|
800
|
+
letterSpacing: "0.1em"
|
|
801
|
+
},
|
|
802
|
+
children: "100"
|
|
803
|
+
}
|
|
804
|
+
)
|
|
770
805
|
] })
|
|
771
806
|
] })
|
|
772
807
|
]
|
|
@@ -874,64 +909,64 @@ function Wt({
|
|
|
874
909
|
selectedComponent: a,
|
|
875
910
|
drillAnimPhase: s,
|
|
876
911
|
rotateY: l = 20,
|
|
877
|
-
autoRotateComponents:
|
|
912
|
+
autoRotateComponents: h = !0,
|
|
878
913
|
componentScale: c = 0.35,
|
|
879
914
|
drillZoom: p = 3.3,
|
|
880
|
-
autoRotateCarousel:
|
|
915
|
+
autoRotateCarousel: f = !0,
|
|
881
916
|
carouselSpeed: y = 6e-3,
|
|
882
|
-
width:
|
|
917
|
+
width: u = 950,
|
|
883
918
|
height: g = 790,
|
|
884
919
|
onSelectSystem: m,
|
|
885
920
|
onBackgroundClick: x,
|
|
886
921
|
onComponentClick: v,
|
|
887
|
-
onCloseDrill:
|
|
888
|
-
selectedSystemStatus:
|
|
889
|
-
selectedSystemDbSync:
|
|
922
|
+
onCloseDrill: $,
|
|
923
|
+
selectedSystemStatus: b = "online",
|
|
924
|
+
selectedSystemDbSync: k = !0,
|
|
890
925
|
selectedSystemMetrics: A,
|
|
891
|
-
selectedSystemAlerts:
|
|
926
|
+
selectedSystemAlerts: R
|
|
892
927
|
}) {
|
|
893
|
-
const [
|
|
928
|
+
const [L, z] = I(0);
|
|
894
929
|
Ee(() => {
|
|
895
|
-
let
|
|
896
|
-
if ((o === "compact" || o === "collapsing") &&
|
|
897
|
-
const
|
|
898
|
-
|
|
930
|
+
let D;
|
|
931
|
+
if ((o === "compact" || o === "collapsing") && f) {
|
|
932
|
+
const H = () => {
|
|
933
|
+
z((ne) => ne + y), D = requestAnimationFrame(H);
|
|
899
934
|
};
|
|
900
|
-
|
|
935
|
+
D = requestAnimationFrame(H);
|
|
901
936
|
}
|
|
902
|
-
return () => cancelAnimationFrame(
|
|
903
|
-
}, [o,
|
|
904
|
-
const
|
|
937
|
+
return () => cancelAnimationFrame(D);
|
|
938
|
+
}, [o, f, y]);
|
|
939
|
+
const F = J.Children.toArray(t), X = F.length, M = Et(() => ({
|
|
905
940
|
totalSystems: X,
|
|
906
|
-
carouselRotation:
|
|
941
|
+
carouselRotation: L,
|
|
907
942
|
viewState: o,
|
|
908
943
|
animPhase: i,
|
|
909
944
|
selectedSystem: r,
|
|
910
945
|
selectedComponent: a,
|
|
911
946
|
rotateY: l,
|
|
912
|
-
autoRotateComponents:
|
|
947
|
+
autoRotateComponents: h,
|
|
913
948
|
componentScale: c,
|
|
914
949
|
drillZoom: p,
|
|
915
950
|
onSelectSystem: m,
|
|
916
951
|
onComponentClick: v,
|
|
917
|
-
containerWidth:
|
|
952
|
+
containerWidth: u
|
|
918
953
|
}), [
|
|
919
954
|
X,
|
|
920
|
-
|
|
955
|
+
L,
|
|
921
956
|
o,
|
|
922
957
|
i,
|
|
923
958
|
r,
|
|
924
959
|
a,
|
|
925
960
|
l,
|
|
926
|
-
|
|
961
|
+
h,
|
|
927
962
|
c,
|
|
928
963
|
p,
|
|
929
964
|
m,
|
|
930
965
|
v,
|
|
931
|
-
|
|
932
|
-
]), te =
|
|
933
|
-
return /* @__PURE__ */ d(Ge.Provider, { value:
|
|
934
|
-
/* @__PURE__ */ d("div", { style: { position: "relative", width:
|
|
966
|
+
u
|
|
967
|
+
]), te = F.map((D, H) => /* @__PURE__ */ e(Ke.Provider, { value: { index: H }, children: D }, H)), ie = o === "expanded" || o === "expanding" && i >= 4;
|
|
968
|
+
return /* @__PURE__ */ d(Ge.Provider, { value: M, children: [
|
|
969
|
+
/* @__PURE__ */ d("div", { style: { position: "relative", width: u, height: g, margin: "0 auto", flexShrink: 0 }, children: [
|
|
935
970
|
n && (o === "compact" || o === "collapsing") && /* @__PURE__ */ e(
|
|
936
971
|
"img",
|
|
937
972
|
{
|
|
@@ -954,24 +989,24 @@ function Wt({
|
|
|
954
989
|
),
|
|
955
990
|
te
|
|
956
991
|
] }),
|
|
957
|
-
r && /* @__PURE__ */ e("div", { onClick: (
|
|
992
|
+
r && /* @__PURE__ */ e("div", { onClick: (D) => D.stopPropagation(), children: /* @__PURE__ */ e(
|
|
958
993
|
At,
|
|
959
994
|
{
|
|
960
995
|
name: r,
|
|
961
|
-
status:
|
|
962
|
-
dbSync:
|
|
996
|
+
status: b,
|
|
997
|
+
dbSync: k,
|
|
963
998
|
visible: ie && !a,
|
|
964
999
|
metrics: A,
|
|
965
|
-
alerts:
|
|
1000
|
+
alerts: R
|
|
966
1001
|
}
|
|
967
1002
|
) }),
|
|
968
|
-
a && /* @__PURE__ */ e("div", { onClick: (
|
|
1003
|
+
a && /* @__PURE__ */ e("div", { onClick: (D) => D.stopPropagation(), children: /* @__PURE__ */ e(
|
|
969
1004
|
It,
|
|
970
1005
|
{
|
|
971
1006
|
component: a,
|
|
972
|
-
onClose:
|
|
1007
|
+
onClose: $,
|
|
973
1008
|
visible: s >= 0.3,
|
|
974
|
-
sceneWidth:
|
|
1009
|
+
sceneWidth: u,
|
|
975
1010
|
sceneHeight: g
|
|
976
1011
|
}
|
|
977
1012
|
) })
|
|
@@ -1270,24 +1305,24 @@ function dt({
|
|
|
1270
1305
|
_index: a,
|
|
1271
1306
|
_totalSystems: s,
|
|
1272
1307
|
_carouselRotation: l,
|
|
1273
|
-
_viewState:
|
|
1308
|
+
_viewState: h,
|
|
1274
1309
|
_animPhase: c,
|
|
1275
1310
|
_selectedSystem: p,
|
|
1276
|
-
_selectedComponent:
|
|
1311
|
+
_selectedComponent: f,
|
|
1277
1312
|
_rotateY: y,
|
|
1278
|
-
_autoRotateComponents:
|
|
1313
|
+
_autoRotateComponents: u,
|
|
1279
1314
|
_componentScale: g,
|
|
1280
1315
|
_drillZoom: m,
|
|
1281
1316
|
_onSelectSystem: x,
|
|
1282
1317
|
_onComponentClick: v,
|
|
1283
|
-
_containerWidth:
|
|
1318
|
+
_containerWidth: $
|
|
1284
1319
|
}) {
|
|
1285
|
-
const
|
|
1320
|
+
const b = ve(Ge), k = ve(Ke), A = a ?? k.index, R = s ?? b?.totalSystems ?? 1, L = l ?? b?.carouselRotation ?? 0, z = h ?? b?.viewState ?? "compact", F = c ?? b?.animPhase ?? 0, X = p ?? b?.selectedSystem ?? null, M = f ?? b?.selectedComponent ?? null, te = y ?? b?.rotateY ?? 20, ie = u ?? b?.autoRotateComponents ?? !0, D = g ?? b?.componentScale ?? 0.35, H = m ?? b?.drillZoom ?? 3.3, ne = x ?? b?.onSelectSystem, Se = v ?? b?.onComponentClick, $e = $ ?? b?.containerWidth ?? 950, Q = X === t, N = Q && (z === "expanded" || z === "expanding" && F >= 1), C = !N, ke = ($e - Ft) / 2, oe = it + ke, le = A / R * Math.PI * 2 + L, Ne = 420, Te = 160, Re = oe + Math.cos(le) * Ne, se = 450 + Math.sin(le) * Te, mt = Math.round(se), Be = !Q && (z === "expanding" || z === "expanded"), xt = Be ? 0 : 1, Pe = C ? 0.3 + (Math.sin(le) + 1) * 0.1 : 1, vt = C ? Pe : D, Ae = z === "compact" || z === "collapsing" ? "none" : "all 1s cubic-bezier(0.34, 1.56, 0.64, 1)", tt = Q && M, Fe = tt ? H : 1, wt = M?.ex ?? 330, St = M?.ey ?? 300, { size: $t = 90, color: kt = "#00e5ff", widthRatio: Rt = 3 } = i ?? {}, Pt = {
|
|
1286
1321
|
name: t,
|
|
1287
1322
|
isSelected: Q,
|
|
1288
|
-
isExpandedPos:
|
|
1323
|
+
isExpandedPos: N,
|
|
1289
1324
|
isCompact: C,
|
|
1290
|
-
animPhase:
|
|
1325
|
+
animPhase: F,
|
|
1291
1326
|
compactCx: Re,
|
|
1292
1327
|
compactCy: se,
|
|
1293
1328
|
groupScale: Pe,
|
|
@@ -1296,7 +1331,7 @@ function dt({
|
|
|
1296
1331
|
rotateY: te,
|
|
1297
1332
|
autoRotateComponents: ie,
|
|
1298
1333
|
onComponentClick: Se,
|
|
1299
|
-
selectedComponentName:
|
|
1334
|
+
selectedComponentName: M?.name ?? null,
|
|
1300
1335
|
expandedOffsetX: ke
|
|
1301
1336
|
};
|
|
1302
1337
|
return /* @__PURE__ */ e(ae.Provider, { value: Pt, children: /* @__PURE__ */ d(
|
|
@@ -1389,9 +1424,9 @@ function dt({
|
|
|
1389
1424
|
{
|
|
1390
1425
|
style: {
|
|
1391
1426
|
position: "absolute",
|
|
1392
|
-
left:
|
|
1393
|
-
top:
|
|
1394
|
-
transform: `translate(-50%, -50%) scale(${
|
|
1427
|
+
left: N ? oe : Re,
|
|
1428
|
+
top: N ? 48 : se - 180,
|
|
1429
|
+
transform: `translate(-50%, -50%) scale(${N ? 1.2 : Pe * 1.5})`,
|
|
1395
1430
|
opacity: 1,
|
|
1396
1431
|
pointerEvents: "none",
|
|
1397
1432
|
zIndex: 100,
|
|
@@ -1415,7 +1450,7 @@ function dt({
|
|
|
1415
1450
|
style: {
|
|
1416
1451
|
position: "absolute",
|
|
1417
1452
|
top: 0,
|
|
1418
|
-
left:
|
|
1453
|
+
left: N ? ke : 0,
|
|
1419
1454
|
width: 660,
|
|
1420
1455
|
height: 640,
|
|
1421
1456
|
pointerEvents: "none",
|
|
@@ -1429,7 +1464,7 @@ function dt({
|
|
|
1429
1464
|
y1: j.from[1],
|
|
1430
1465
|
x2: j.to[0],
|
|
1431
1466
|
y2: j.to[1],
|
|
1432
|
-
show: Q &&
|
|
1467
|
+
show: Q && F >= (j.visibleAtPhase ?? 0),
|
|
1433
1468
|
color: j.color,
|
|
1434
1469
|
dur: j.duration
|
|
1435
1470
|
},
|
|
@@ -1442,9 +1477,9 @@ function dt({
|
|
|
1442
1477
|
{
|
|
1443
1478
|
style: {
|
|
1444
1479
|
position: "absolute",
|
|
1445
|
-
left:
|
|
1446
|
-
top:
|
|
1447
|
-
transform: `translate(-50%, -50%) scaleX(${
|
|
1480
|
+
left: N ? oe : Re,
|
|
1481
|
+
top: N ? 570 : se + 70,
|
|
1482
|
+
transform: `translate(-50%, -50%) scaleX(${N ? 1 : 0.4}) scaleY(${N ? 1 : 0.6}) scale(${N ? 1 : Pe})`,
|
|
1448
1483
|
transition: Ae,
|
|
1449
1484
|
zIndex: 1
|
|
1450
1485
|
},
|
|
@@ -1465,33 +1500,34 @@ function T({
|
|
|
1465
1500
|
color: a = "#00e5ff",
|
|
1466
1501
|
label: s,
|
|
1467
1502
|
subLabel: l,
|
|
1468
|
-
delay:
|
|
1503
|
+
delay: h = "0s",
|
|
1469
1504
|
componentInfo: c,
|
|
1470
1505
|
visibleAtPhase: p = 0,
|
|
1471
|
-
fixedScale:
|
|
1506
|
+
fixedScale: f,
|
|
1472
1507
|
bare: y = !1
|
|
1473
1508
|
}) {
|
|
1474
|
-
const
|
|
1475
|
-
if (!
|
|
1509
|
+
const u = ve(ae);
|
|
1510
|
+
if (!u)
|
|
1476
1511
|
throw new Error("ServiceNode must be used inside a <Service> component.");
|
|
1477
1512
|
const {
|
|
1478
1513
|
isExpandedPos: g,
|
|
1479
1514
|
animPhase: m,
|
|
1480
1515
|
compactCx: x,
|
|
1481
1516
|
compactCy: v,
|
|
1482
|
-
groupScale:
|
|
1483
|
-
effectiveScale:
|
|
1484
|
-
transitionValue:
|
|
1517
|
+
groupScale: $,
|
|
1518
|
+
effectiveScale: b,
|
|
1519
|
+
transitionValue: k,
|
|
1485
1520
|
onComponentClick: A,
|
|
1486
|
-
selectedComponentName:
|
|
1487
|
-
expandedOffsetX:
|
|
1488
|
-
} =
|
|
1521
|
+
selectedComponentName: R,
|
|
1522
|
+
expandedOffsetX: L
|
|
1523
|
+
} = u, F = p === 0 || u.isSelected && m >= p ? 1 : 0, X = x + o.x, M = v + o.y, te = g ? t + L : X, ie = g ? n : M, D = f !== void 0 ? f : u.isCompact ? $ : b, H = !!c && !!R && c.name === R, ne = c?.status ? w[c.status]?.color ?? a : a, Se = c?.status === "offline" ? "#4a6a8a" : ne, $e = c && g && A ? () => A({
|
|
1489
1524
|
type: c.type,
|
|
1490
1525
|
name: c.name,
|
|
1491
1526
|
status: c.status,
|
|
1492
1527
|
ex: c.ex ?? t,
|
|
1493
1528
|
ey: c.ey ?? n,
|
|
1494
1529
|
context: c.context,
|
|
1530
|
+
dialogMetrics: c.dialogMetrics,
|
|
1495
1531
|
subComponents: c.subComponents,
|
|
1496
1532
|
graphSeries: c.graphSeries
|
|
1497
1533
|
}) : void 0;
|
|
@@ -1502,11 +1538,11 @@ function T({
|
|
|
1502
1538
|
position: "absolute",
|
|
1503
1539
|
left: te,
|
|
1504
1540
|
top: ie,
|
|
1505
|
-
transform: `translate(-50%, -50%) scale(${
|
|
1506
|
-
opacity:
|
|
1541
|
+
transform: `translate(-50%, -50%) scale(${D})`,
|
|
1542
|
+
opacity: F,
|
|
1507
1543
|
zIndex: i,
|
|
1508
|
-
transition:
|
|
1509
|
-
pointerEvents: g &&
|
|
1544
|
+
transition: k || "all 1s cubic-bezier(0.34, 1.56, 0.64, 1)",
|
|
1545
|
+
pointerEvents: g && F >= 0.5 ? "auto" : "none"
|
|
1510
1546
|
},
|
|
1511
1547
|
children: y ? r : /* @__PURE__ */ e(
|
|
1512
1548
|
Ht,
|
|
@@ -1514,11 +1550,11 @@ function T({
|
|
|
1514
1550
|
statusColor: Se,
|
|
1515
1551
|
label: s,
|
|
1516
1552
|
subLabel: l,
|
|
1517
|
-
delay:
|
|
1553
|
+
delay: h,
|
|
1518
1554
|
showLabels: g,
|
|
1519
|
-
isCompact:
|
|
1555
|
+
isCompact: u.isCompact,
|
|
1520
1556
|
onClick: $e,
|
|
1521
|
-
isSelected:
|
|
1557
|
+
isSelected: H,
|
|
1522
1558
|
children: r
|
|
1523
1559
|
}
|
|
1524
1560
|
)
|
|
@@ -1534,9 +1570,9 @@ function Ht({
|
|
|
1534
1570
|
showLabels: a = !0,
|
|
1535
1571
|
isCompact: s = !1,
|
|
1536
1572
|
onClick: l,
|
|
1537
|
-
isSelected:
|
|
1573
|
+
isSelected: h = !1
|
|
1538
1574
|
}) {
|
|
1539
|
-
const [c, p] =
|
|
1575
|
+
const [c, p] = I(!1), f = h ? `brightness(1.5) drop-shadow(0 0 24px ${n}cc) drop-shadow(0 0 8px ${n}88)` : c && l ? `brightness(1.2) drop-shadow(0 0 12px ${n}77)` : "";
|
|
1540
1576
|
return /* @__PURE__ */ d(
|
|
1541
1577
|
"div",
|
|
1542
1578
|
{
|
|
@@ -1547,7 +1583,7 @@ function Ht({
|
|
|
1547
1583
|
style: {
|
|
1548
1584
|
cursor: l ? "pointer" : void 0,
|
|
1549
1585
|
transition: "filter 0.3s ease",
|
|
1550
|
-
filter:
|
|
1586
|
+
filter: f
|
|
1551
1587
|
},
|
|
1552
1588
|
onMouseEnter: () => p(!0),
|
|
1553
1589
|
onMouseLeave: () => p(!1),
|
|
@@ -1621,7 +1657,7 @@ function ct({ synced: t, latencyMs: n }) {
|
|
|
1621
1657
|
] })
|
|
1622
1658
|
] });
|
|
1623
1659
|
}
|
|
1624
|
-
function
|
|
1660
|
+
function W({
|
|
1625
1661
|
ex: t,
|
|
1626
1662
|
ey: n,
|
|
1627
1663
|
status: o,
|
|
@@ -1630,23 +1666,23 @@ function D({
|
|
|
1630
1666
|
offsetX: a,
|
|
1631
1667
|
offsetY: s,
|
|
1632
1668
|
isVisible: l,
|
|
1633
|
-
align:
|
|
1669
|
+
align: h = "right",
|
|
1634
1670
|
internalRef: c
|
|
1635
1671
|
}) {
|
|
1636
|
-
const
|
|
1672
|
+
const p = ve(ae), f = p?.expandedOffsetX ?? 0;
|
|
1637
1673
|
if (o === "online") return null;
|
|
1638
|
-
const y = w[o]?.color ?? w.warning.color,
|
|
1639
|
-
let
|
|
1640
|
-
if (
|
|
1641
|
-
const
|
|
1642
|
-
|
|
1674
|
+
const y = l && !!p?.isExpandedPos, u = w[o]?.color ?? w.warning.color, g = Math.abs(a) > Math.abs(s), m = t + f + (g ? Math.sign(a) * 45 : 0), x = n + (g ? 0 : Math.sign(s) * 40), v = t + f + a, $ = n + s;
|
|
1675
|
+
let b = "";
|
|
1676
|
+
if (g) {
|
|
1677
|
+
const L = m + (v - m) / 2;
|
|
1678
|
+
b = `M ${m} ${x} L ${L} ${x} L ${L} ${$} L ${v} ${$}`;
|
|
1643
1679
|
} else {
|
|
1644
|
-
const
|
|
1645
|
-
|
|
1680
|
+
const L = x + ($ - x) / 2;
|
|
1681
|
+
b = `M ${m} ${x} L ${m} ${L} L ${v} ${L} L ${v} ${$}`;
|
|
1646
1682
|
}
|
|
1647
|
-
let
|
|
1648
|
-
|
|
1649
|
-
const
|
|
1683
|
+
let k = "translate(0, -50%)";
|
|
1684
|
+
h === "left" && (k = "translate(-100%, -50%)"), h === "top" && (k = "translate(-50%, -100%)"), h === "bottom" && (k = "translate(-50%, 0)");
|
|
1685
|
+
const A = h === "left" ? -8 : h === "right" ? 8 : 0, R = h === "top" ? -8 : h === "bottom" ? 8 : 0;
|
|
1650
1686
|
return /* @__PURE__ */ d(
|
|
1651
1687
|
"div",
|
|
1652
1688
|
{
|
|
@@ -1657,7 +1693,7 @@ function D({
|
|
|
1657
1693
|
width: "100%",
|
|
1658
1694
|
height: "100%",
|
|
1659
1695
|
pointerEvents: "none",
|
|
1660
|
-
opacity:
|
|
1696
|
+
opacity: y ? 1 : 0,
|
|
1661
1697
|
transition: "opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.8s",
|
|
1662
1698
|
zIndex: 150
|
|
1663
1699
|
},
|
|
@@ -1677,12 +1713,12 @@ function D({
|
|
|
1677
1713
|
children: /* @__PURE__ */ e(
|
|
1678
1714
|
"path",
|
|
1679
1715
|
{
|
|
1680
|
-
d:
|
|
1716
|
+
d: b,
|
|
1681
1717
|
fill: "none",
|
|
1682
|
-
stroke:
|
|
1718
|
+
stroke: u,
|
|
1683
1719
|
strokeWidth: "1.5",
|
|
1684
1720
|
strokeDasharray: "5 4",
|
|
1685
|
-
style: { filter: `drop-shadow(0 0 4px ${
|
|
1721
|
+
style: { filter: `drop-shadow(0 0 4px ${u})`, opacity: 0.55 }
|
|
1686
1722
|
}
|
|
1687
1723
|
)
|
|
1688
1724
|
}
|
|
@@ -1692,14 +1728,14 @@ function D({
|
|
|
1692
1728
|
{
|
|
1693
1729
|
style: {
|
|
1694
1730
|
position: "absolute",
|
|
1695
|
-
left:
|
|
1696
|
-
top:
|
|
1697
|
-
transform:
|
|
1698
|
-
marginLeft:
|
|
1699
|
-
marginTop:
|
|
1731
|
+
left: v,
|
|
1732
|
+
top: $,
|
|
1733
|
+
transform: k,
|
|
1734
|
+
marginLeft: A,
|
|
1735
|
+
marginTop: R,
|
|
1700
1736
|
background: "repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.03) 2px, rgba(255,255,255,0.03) 4px), rgba(2, 8, 16, 0.82)",
|
|
1701
|
-
border: `1px solid ${
|
|
1702
|
-
borderLeft: `2px solid ${
|
|
1737
|
+
border: `1px solid ${u}55`,
|
|
1738
|
+
borderLeft: `2px solid ${u}`,
|
|
1703
1739
|
backdropFilter: "blur(8px)",
|
|
1704
1740
|
WebkitBackdropFilter: "blur(8px)",
|
|
1705
1741
|
padding: "6px 10px",
|
|
@@ -1707,7 +1743,7 @@ function D({
|
|
|
1707
1743
|
color: "#fff",
|
|
1708
1744
|
fontFamily: "'Courier New', monospace",
|
|
1709
1745
|
width: 140,
|
|
1710
|
-
boxShadow: `0 4px 12px rgba(0,0,0,0.4), 0 0 8px ${
|
|
1746
|
+
boxShadow: `0 4px 12px rgba(0,0,0,0.4), 0 0 8px ${u}22 inset`
|
|
1711
1747
|
},
|
|
1712
1748
|
children: [
|
|
1713
1749
|
/* @__PURE__ */ d(
|
|
@@ -1727,8 +1763,8 @@ function D({
|
|
|
1727
1763
|
width: 4,
|
|
1728
1764
|
height: 4,
|
|
1729
1765
|
borderRadius: "50%",
|
|
1730
|
-
background:
|
|
1731
|
-
boxShadow: `0 0 6px ${
|
|
1766
|
+
background: u,
|
|
1767
|
+
boxShadow: `0 0 6px ${u}`,
|
|
1732
1768
|
animation: "holo-led-blink 1.5s infinite"
|
|
1733
1769
|
}
|
|
1734
1770
|
}
|
|
@@ -1737,12 +1773,12 @@ function D({
|
|
|
1737
1773
|
"div",
|
|
1738
1774
|
{
|
|
1739
1775
|
style: {
|
|
1740
|
-
color:
|
|
1776
|
+
color: u,
|
|
1741
1777
|
fontWeight: "600",
|
|
1742
1778
|
fontSize: 10,
|
|
1743
1779
|
letterSpacing: "1px",
|
|
1744
1780
|
textTransform: "uppercase",
|
|
1745
|
-
textShadow: `0 0 4px ${
|
|
1781
|
+
textShadow: `0 0 4px ${u}88`
|
|
1746
1782
|
},
|
|
1747
1783
|
children: c ? `${i} · ${c}` : i
|
|
1748
1784
|
}
|
|
@@ -1768,16 +1804,17 @@ function D({
|
|
|
1768
1804
|
}
|
|
1769
1805
|
);
|
|
1770
1806
|
}
|
|
1771
|
-
const q = 140,
|
|
1807
|
+
const q = 140, U = 240, Z = 160, de = qe(q, U, Z);
|
|
1772
1808
|
function Ut({
|
|
1773
1809
|
cfg: t,
|
|
1774
1810
|
name: n,
|
|
1775
1811
|
cpuLoad: o,
|
|
1776
1812
|
memLoad: i,
|
|
1777
1813
|
status: r,
|
|
1778
|
-
compact: a
|
|
1814
|
+
compact: a,
|
|
1815
|
+
brandLabel: s
|
|
1779
1816
|
}) {
|
|
1780
|
-
const
|
|
1817
|
+
const l = Math.ceil(o / 100 * 3), h = r === "offline" ? "#4a6a8a" : t.color, c = [
|
|
1781
1818
|
{ color: t.color, on: r !== "offline", label: "PWR" },
|
|
1782
1819
|
{ color: t.color, on: r === "online" || r === "warning", label: "NET" },
|
|
1783
1820
|
{ color: t.color, on: o > 15, label: "DSK" },
|
|
@@ -1788,7 +1825,7 @@ function Ut({
|
|
|
1788
1825
|
{
|
|
1789
1826
|
style: {
|
|
1790
1827
|
width: q,
|
|
1791
|
-
height:
|
|
1828
|
+
height: U,
|
|
1792
1829
|
background: a ? we : Qe,
|
|
1793
1830
|
position: "relative",
|
|
1794
1831
|
overflow: "hidden",
|
|
@@ -1827,7 +1864,7 @@ function Ut({
|
|
|
1827
1864
|
},
|
|
1828
1865
|
children: [
|
|
1829
1866
|
/* @__PURE__ */ d("div", { style: { display: "flex", justifyContent: "space-between", alignItems: "center" }, children: [
|
|
1830
|
-
/* @__PURE__ */ e("span", { style: { fontSize: 7, color: t.color + "55", letterSpacing: "0.22em" }, children:
|
|
1867
|
+
/* @__PURE__ */ e("span", { style: { fontSize: 7, color: t.color + "55", letterSpacing: "0.22em" }, children: s }),
|
|
1831
1868
|
/* @__PURE__ */ e(
|
|
1832
1869
|
"div",
|
|
1833
1870
|
{
|
|
@@ -1863,26 +1900,26 @@ function Ut({
|
|
|
1863
1900
|
{
|
|
1864
1901
|
style: {
|
|
1865
1902
|
fontSize: 7,
|
|
1866
|
-
color:
|
|
1903
|
+
color: h,
|
|
1867
1904
|
letterSpacing: "0.08em",
|
|
1868
|
-
textShadow: `0 0 4px ${
|
|
1905
|
+
textShadow: `0 0 4px ${h}66`
|
|
1869
1906
|
},
|
|
1870
1907
|
children: n
|
|
1871
1908
|
}
|
|
1872
1909
|
),
|
|
1873
|
-
/* @__PURE__ */ e("div", { style: { display: "flex", gap: 5 }, children:
|
|
1910
|
+
/* @__PURE__ */ e("div", { style: { display: "flex", gap: 5 }, children: c.map((p, f) => /* @__PURE__ */ e(
|
|
1874
1911
|
"div",
|
|
1875
1912
|
{
|
|
1876
1913
|
style: {
|
|
1877
1914
|
width: 4,
|
|
1878
1915
|
height: 4,
|
|
1879
1916
|
borderRadius: "50%",
|
|
1880
|
-
background:
|
|
1881
|
-
boxShadow:
|
|
1882
|
-
animation:
|
|
1917
|
+
background: p.on ? p.color : "#0a1830",
|
|
1918
|
+
boxShadow: p.on ? `0 0 6px ${p.color}, 0 0 12px ${p.color}88` : "none",
|
|
1919
|
+
animation: p.on && f === 1 ? "holo-led-blink 2.5s linear infinite" : "none"
|
|
1883
1920
|
}
|
|
1884
1921
|
},
|
|
1885
|
-
|
|
1922
|
+
f
|
|
1886
1923
|
)) })
|
|
1887
1924
|
] })
|
|
1888
1925
|
]
|
|
@@ -1949,8 +1986,8 @@ function Ut({
|
|
|
1949
1986
|
}
|
|
1950
1987
|
}
|
|
1951
1988
|
),
|
|
1952
|
-
Array.from({ length: 3 }, (
|
|
1953
|
-
const
|
|
1989
|
+
Array.from({ length: 3 }, (p, f) => {
|
|
1990
|
+
const y = f < l;
|
|
1954
1991
|
return /* @__PURE__ */ d(
|
|
1955
1992
|
"div",
|
|
1956
1993
|
{
|
|
@@ -1958,7 +1995,7 @@ function Ut({
|
|
|
1958
1995
|
position: "absolute",
|
|
1959
1996
|
left: 8,
|
|
1960
1997
|
right: 8,
|
|
1961
|
-
top: 75 +
|
|
1998
|
+
top: 75 + f * 31,
|
|
1962
1999
|
height: 27,
|
|
1963
2000
|
background: "linear-gradient(90deg, #040a16, #030710, #040a16)",
|
|
1964
2001
|
border: "1px solid #1a2d40",
|
|
@@ -1977,8 +2014,8 @@ function Ut({
|
|
|
1977
2014
|
height: 5,
|
|
1978
2015
|
borderRadius: "50%",
|
|
1979
2016
|
flexShrink: 0,
|
|
1980
|
-
background:
|
|
1981
|
-
boxShadow:
|
|
2017
|
+
background: y ? t.color : "#08142a",
|
|
2018
|
+
boxShadow: y ? `0 0 6px ${t.color}, 0 0 12px ${t.color}66` : "none"
|
|
1982
2019
|
}
|
|
1983
2020
|
}
|
|
1984
2021
|
),
|
|
@@ -1994,7 +2031,7 @@ function Ut({
|
|
|
1994
2031
|
position: "relative",
|
|
1995
2032
|
overflow: "hidden"
|
|
1996
2033
|
},
|
|
1997
|
-
children:
|
|
2034
|
+
children: y && /* @__PURE__ */ e(
|
|
1998
2035
|
"div",
|
|
1999
2036
|
{
|
|
2000
2037
|
style: {
|
|
@@ -2002,7 +2039,7 @@ function Ut({
|
|
|
2002
2039
|
top: 0,
|
|
2003
2040
|
left: 0,
|
|
2004
2041
|
bottom: 0,
|
|
2005
|
-
width: `${30 + o / 100 * 45 +
|
|
2042
|
+
width: `${30 + o / 100 * 45 + f * 8}%`,
|
|
2006
2043
|
background: `linear-gradient(90deg, ${t.color}22, transparent)`
|
|
2007
2044
|
}
|
|
2008
2045
|
}
|
|
@@ -2025,7 +2062,7 @@ function Ut({
|
|
|
2025
2062
|
)
|
|
2026
2063
|
]
|
|
2027
2064
|
},
|
|
2028
|
-
|
|
2065
|
+
f
|
|
2029
2066
|
);
|
|
2030
2067
|
}),
|
|
2031
2068
|
/* @__PURE__ */ e(
|
|
@@ -2054,7 +2091,7 @@ function Ut({
|
|
|
2054
2091
|
alignItems: "center"
|
|
2055
2092
|
},
|
|
2056
2093
|
children: [
|
|
2057
|
-
[0, 1].map((
|
|
2094
|
+
[0, 1].map((p) => /* @__PURE__ */ e(
|
|
2058
2095
|
"div",
|
|
2059
2096
|
{
|
|
2060
2097
|
style: {
|
|
@@ -2065,7 +2102,7 @@ function Ut({
|
|
|
2065
2102
|
borderRadius: "1px 1px 2px 2px"
|
|
2066
2103
|
}
|
|
2067
2104
|
},
|
|
2068
|
-
|
|
2105
|
+
p
|
|
2069
2106
|
)),
|
|
2070
2107
|
/* @__PURE__ */ e(
|
|
2071
2108
|
"div",
|
|
@@ -2095,7 +2132,7 @@ function Ut({
|
|
|
2095
2132
|
/* @__PURE__ */ e("div", { style: { flex: 1, display: "flex", flexDirection: "column", gap: 4 }, children: [
|
|
2096
2133
|
{ val: o, color: t.color },
|
|
2097
2134
|
{ val: i, color: t.color + "bb" }
|
|
2098
|
-
].map((
|
|
2135
|
+
].map((p, f) => /* @__PURE__ */ e(
|
|
2099
2136
|
"div",
|
|
2100
2137
|
{
|
|
2101
2138
|
style: {
|
|
@@ -2108,15 +2145,15 @@ function Ut({
|
|
|
2108
2145
|
"div",
|
|
2109
2146
|
{
|
|
2110
2147
|
style: {
|
|
2111
|
-
width: `${
|
|
2148
|
+
width: `${p.val}%`,
|
|
2112
2149
|
height: "100%",
|
|
2113
|
-
background: `linear-gradient(90deg, ${
|
|
2150
|
+
background: `linear-gradient(90deg, ${p.color}55, ${p.color})`,
|
|
2114
2151
|
borderRadius: 1.5
|
|
2115
2152
|
}
|
|
2116
2153
|
}
|
|
2117
2154
|
)
|
|
2118
2155
|
},
|
|
2119
|
-
|
|
2156
|
+
f
|
|
2120
2157
|
)) })
|
|
2121
2158
|
]
|
|
2122
2159
|
}
|
|
@@ -2149,7 +2186,7 @@ function Ut({
|
|
|
2149
2186
|
overflow: "hidden",
|
|
2150
2187
|
opacity: 0.22
|
|
2151
2188
|
},
|
|
2152
|
-
children: Array.from({ length: 100 }).map((
|
|
2189
|
+
children: Array.from({ length: 100 }).map((p, f) => /* @__PURE__ */ e(
|
|
2153
2190
|
"div",
|
|
2154
2191
|
{
|
|
2155
2192
|
style: {
|
|
@@ -2159,7 +2196,7 @@ function Ut({
|
|
|
2159
2196
|
background: "#2a6090"
|
|
2160
2197
|
}
|
|
2161
2198
|
},
|
|
2162
|
-
|
|
2199
|
+
f
|
|
2163
2200
|
))
|
|
2164
2201
|
}
|
|
2165
2202
|
),
|
|
@@ -2186,7 +2223,7 @@ function Yt() {
|
|
|
2186
2223
|
{
|
|
2187
2224
|
style: {
|
|
2188
2225
|
width: q,
|
|
2189
|
-
height:
|
|
2226
|
+
height: U,
|
|
2190
2227
|
background: "linear-gradient(180deg, #040c1a 0%, #030810 100%)",
|
|
2191
2228
|
position: "relative",
|
|
2192
2229
|
overflow: "hidden",
|
|
@@ -2294,15 +2331,15 @@ function Yt() {
|
|
|
2294
2331
|
}
|
|
2295
2332
|
);
|
|
2296
2333
|
}
|
|
2297
|
-
function ot({ side: t, color: n }) {
|
|
2298
|
-
const
|
|
2334
|
+
function ot({ side: t, color: n, brandLabel: o }) {
|
|
2335
|
+
const i = t === "right";
|
|
2299
2336
|
return /* @__PURE__ */ d(
|
|
2300
2337
|
"div",
|
|
2301
2338
|
{
|
|
2302
2339
|
style: {
|
|
2303
2340
|
width: Z,
|
|
2304
|
-
height:
|
|
2305
|
-
background:
|
|
2341
|
+
height: U,
|
|
2342
|
+
background: i ? "linear-gradient(90deg, #040c1c 0%, #071428 60%, #040c1c 100%)" : "linear-gradient(90deg, #040c1c 0%, #071428 40%, #040c1c 100%)",
|
|
2306
2343
|
position: "relative",
|
|
2307
2344
|
overflow: "hidden"
|
|
2308
2345
|
},
|
|
@@ -2320,13 +2357,13 @@ function ot({ side: t, color: n }) {
|
|
|
2320
2357
|
}
|
|
2321
2358
|
}
|
|
2322
2359
|
),
|
|
2323
|
-
[8,
|
|
2360
|
+
[8, U - 20].map((r) => /* @__PURE__ */ e(
|
|
2324
2361
|
"div",
|
|
2325
2362
|
{
|
|
2326
2363
|
style: {
|
|
2327
2364
|
position: "absolute",
|
|
2328
|
-
top:
|
|
2329
|
-
left:
|
|
2365
|
+
top: r,
|
|
2366
|
+
left: i ? 10 : Z - 18,
|
|
2330
2367
|
width: 8,
|
|
2331
2368
|
height: 8,
|
|
2332
2369
|
borderRadius: 1,
|
|
@@ -2335,23 +2372,23 @@ function ot({ side: t, color: n }) {
|
|
|
2335
2372
|
boxShadow: "inset 0 1px 2px rgba(0,0,0,0.8)"
|
|
2336
2373
|
}
|
|
2337
2374
|
},
|
|
2338
|
-
|
|
2375
|
+
r
|
|
2339
2376
|
)),
|
|
2340
2377
|
/* @__PURE__ */ e(
|
|
2341
2378
|
"div",
|
|
2342
2379
|
{
|
|
2343
2380
|
style: {
|
|
2344
2381
|
position: "absolute",
|
|
2345
|
-
top:
|
|
2346
|
-
bottom:
|
|
2347
|
-
left:
|
|
2348
|
-
right:
|
|
2382
|
+
top: U * 0.35,
|
|
2383
|
+
bottom: U * 0.15,
|
|
2384
|
+
left: i ? 22 : 18,
|
|
2385
|
+
right: i ? 18 : 22,
|
|
2349
2386
|
display: "flex",
|
|
2350
2387
|
flexDirection: "column",
|
|
2351
2388
|
gap: 5,
|
|
2352
2389
|
justifyContent: "center"
|
|
2353
2390
|
},
|
|
2354
|
-
children: Array.from({ length: 6 }).map((
|
|
2391
|
+
children: Array.from({ length: 6 }).map((r, a) => /* @__PURE__ */ e(
|
|
2355
2392
|
"div",
|
|
2356
2393
|
{
|
|
2357
2394
|
style: {
|
|
@@ -2362,17 +2399,17 @@ function ot({ side: t, color: n }) {
|
|
|
2362
2399
|
boxShadow: "inset 0 1px 2px rgba(0,0,0,0.5)"
|
|
2363
2400
|
}
|
|
2364
2401
|
},
|
|
2365
|
-
|
|
2402
|
+
a
|
|
2366
2403
|
))
|
|
2367
2404
|
}
|
|
2368
2405
|
),
|
|
2369
|
-
/* @__PURE__ */
|
|
2406
|
+
/* @__PURE__ */ d(
|
|
2370
2407
|
"div",
|
|
2371
2408
|
{
|
|
2372
2409
|
style: {
|
|
2373
2410
|
position: "absolute",
|
|
2374
|
-
top:
|
|
2375
|
-
left:
|
|
2411
|
+
top: U * 0.18,
|
|
2412
|
+
left: i ? 12 : Z - 78,
|
|
2376
2413
|
fontSize: 7,
|
|
2377
2414
|
color: "#1a3050",
|
|
2378
2415
|
letterSpacing: "0.2em",
|
|
@@ -2380,7 +2417,10 @@ function ot({ side: t, color: n }) {
|
|
|
2380
2417
|
whiteSpace: "nowrap",
|
|
2381
2418
|
fontFamily: "'Courier New', monospace"
|
|
2382
2419
|
},
|
|
2383
|
-
children:
|
|
2420
|
+
children: [
|
|
2421
|
+
o,
|
|
2422
|
+
" SYS"
|
|
2423
|
+
]
|
|
2384
2424
|
}
|
|
2385
2425
|
)
|
|
2386
2426
|
]
|
|
@@ -2476,29 +2516,30 @@ function ue({
|
|
|
2476
2516
|
status: a = "online",
|
|
2477
2517
|
name: s = "SRV-001",
|
|
2478
2518
|
cpuLoad: l = 67,
|
|
2479
|
-
memLoad:
|
|
2480
|
-
|
|
2519
|
+
memLoad: h = 82,
|
|
2520
|
+
brandLabel: c = "BUSAUD",
|
|
2521
|
+
_compact: p
|
|
2481
2522
|
}) {
|
|
2482
|
-
const [
|
|
2523
|
+
const [f, y] = I(n), u = ee(0), g = ee(0);
|
|
2483
2524
|
Ee(() => {
|
|
2484
2525
|
if (!r) {
|
|
2485
|
-
|
|
2526
|
+
y(n);
|
|
2486
2527
|
return;
|
|
2487
2528
|
}
|
|
2488
|
-
const
|
|
2489
|
-
|
|
2529
|
+
const x = (v) => {
|
|
2530
|
+
g.current && y(($) => $ + (v - g.current) * 0.027), g.current = v, u.current = requestAnimationFrame(x);
|
|
2490
2531
|
};
|
|
2491
|
-
return
|
|
2492
|
-
cancelAnimationFrame(
|
|
2532
|
+
return u.current = requestAnimationFrame(x), () => {
|
|
2533
|
+
cancelAnimationFrame(u.current), g.current = 0;
|
|
2493
2534
|
};
|
|
2494
2535
|
}, [r, n]);
|
|
2495
|
-
const
|
|
2536
|
+
const m = w[a] ?? w.online;
|
|
2496
2537
|
return /* @__PURE__ */ d(
|
|
2497
2538
|
"div",
|
|
2498
2539
|
{
|
|
2499
2540
|
style: {
|
|
2500
2541
|
width: q * i,
|
|
2501
|
-
height:
|
|
2542
|
+
height: U * i,
|
|
2502
2543
|
position: "relative",
|
|
2503
2544
|
display: "flex",
|
|
2504
2545
|
alignItems: "center",
|
|
@@ -2516,17 +2557,17 @@ function ue({
|
|
|
2516
2557
|
zIndex: 110,
|
|
2517
2558
|
pointerEvents: "none",
|
|
2518
2559
|
animation: "holo-led-blink 1.5s infinite",
|
|
2519
|
-
filter: `drop-shadow(0 0 10px ${
|
|
2560
|
+
filter: `drop-shadow(0 0 10px ${m.color})`
|
|
2520
2561
|
},
|
|
2521
2562
|
children: /* @__PURE__ */ d("svg", { width: "44", height: "44", viewBox: "0 0 28 28", fill: "none", children: [
|
|
2522
2563
|
/* @__PURE__ */ e(
|
|
2523
2564
|
"path",
|
|
2524
2565
|
{
|
|
2525
2566
|
d: "M14 3L1.5 25.5h25L14 3z",
|
|
2526
|
-
stroke:
|
|
2567
|
+
stroke: m.color,
|
|
2527
2568
|
strokeWidth: "2",
|
|
2528
2569
|
strokeLinejoin: "round",
|
|
2529
|
-
fill:
|
|
2570
|
+
fill: m.color + "22"
|
|
2530
2571
|
}
|
|
2531
2572
|
),
|
|
2532
2573
|
/* @__PURE__ */ e(
|
|
@@ -2536,12 +2577,12 @@ function ue({
|
|
|
2536
2577
|
y1: "11",
|
|
2537
2578
|
x2: "14",
|
|
2538
2579
|
y2: "18",
|
|
2539
|
-
stroke:
|
|
2580
|
+
stroke: m.color,
|
|
2540
2581
|
strokeWidth: "2.5",
|
|
2541
2582
|
strokeLinecap: "round"
|
|
2542
2583
|
}
|
|
2543
2584
|
),
|
|
2544
|
-
/* @__PURE__ */ e("circle", { cx: "14", cy: "21.5", r: "1.5", fill:
|
|
2585
|
+
/* @__PURE__ */ e("circle", { cx: "14", cy: "21.5", r: "1.5", fill: m.color })
|
|
2545
2586
|
] })
|
|
2546
2587
|
}
|
|
2547
2588
|
),
|
|
@@ -2551,8 +2592,8 @@ function ue({
|
|
|
2551
2592
|
style: {
|
|
2552
2593
|
position: "absolute",
|
|
2553
2594
|
width: q * 1.4 * i,
|
|
2554
|
-
height:
|
|
2555
|
-
background: `radial-gradient(ellipse, ${
|
|
2595
|
+
height: U * 0.8 * i,
|
|
2596
|
+
background: `radial-gradient(ellipse, ${m.glow} 0%, transparent 65%)`,
|
|
2556
2597
|
filter: `blur(${Math.round(45 * i)}px)`,
|
|
2557
2598
|
pointerEvents: "none",
|
|
2558
2599
|
top: "40%",
|
|
@@ -2575,27 +2616,28 @@ function ue({
|
|
|
2575
2616
|
{
|
|
2576
2617
|
style: {
|
|
2577
2618
|
width: q,
|
|
2578
|
-
height:
|
|
2619
|
+
height: U,
|
|
2579
2620
|
position: "relative",
|
|
2580
2621
|
transformStyle: "preserve-3d",
|
|
2581
|
-
transform: `rotateX(${t}deg) rotateY(${
|
|
2622
|
+
transform: `rotateX(${t}deg) rotateY(${f}deg) rotateZ(${o}deg)`,
|
|
2582
2623
|
transition: r ? "none" : "transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94)"
|
|
2583
2624
|
},
|
|
2584
2625
|
children: [
|
|
2585
2626
|
/* @__PURE__ */ e("div", { style: de.front, children: /* @__PURE__ */ e(
|
|
2586
2627
|
Ut,
|
|
2587
2628
|
{
|
|
2588
|
-
cfg:
|
|
2629
|
+
cfg: m,
|
|
2589
2630
|
name: s,
|
|
2590
2631
|
cpuLoad: l,
|
|
2591
|
-
memLoad:
|
|
2632
|
+
memLoad: h,
|
|
2592
2633
|
status: a,
|
|
2593
|
-
compact:
|
|
2634
|
+
compact: p,
|
|
2635
|
+
brandLabel: c
|
|
2594
2636
|
}
|
|
2595
2637
|
) }),
|
|
2596
2638
|
/* @__PURE__ */ e("div", { style: de.back, children: /* @__PURE__ */ e(Yt, {}) }),
|
|
2597
|
-
/* @__PURE__ */ e("div", { style: de.left, children: /* @__PURE__ */ e(ot, { side: "left", color:
|
|
2598
|
-
/* @__PURE__ */ e("div", { style: de.right, children: /* @__PURE__ */ e(ot, { side: "right", color:
|
|
2639
|
+
/* @__PURE__ */ e("div", { style: de.left, children: /* @__PURE__ */ e(ot, { side: "left", color: m.color, brandLabel: c }) }),
|
|
2640
|
+
/* @__PURE__ */ e("div", { style: de.right, children: /* @__PURE__ */ e(ot, { side: "right", color: m.color, brandLabel: c }) }),
|
|
2599
2641
|
/* @__PURE__ */ e("div", { style: de.top, children: /* @__PURE__ */ e(Vt, { cpuLoad: l }) }),
|
|
2600
2642
|
/* @__PURE__ */ e("div", { style: de.bottom, children: /* @__PURE__ */ e(
|
|
2601
2643
|
"div",
|
|
@@ -2630,7 +2672,7 @@ function _t({
|
|
|
2630
2672
|
}) {
|
|
2631
2673
|
return /* @__PURE__ */ d(Ce, { children: [
|
|
2632
2674
|
Ue.map((s, l) => {
|
|
2633
|
-
const
|
|
2675
|
+
const h = Ye(s), c = l === 0, p = Math.round(4 + h * 9), f = Math.round(12 + h * 22), y = Math.round(28 + h * 44), u = Math.round(h * 0.55 * 255).toString(16).padStart(2, "0");
|
|
2634
2676
|
return /* @__PURE__ */ e(
|
|
2635
2677
|
"div",
|
|
2636
2678
|
{
|
|
@@ -2642,8 +2684,8 @@ function _t({
|
|
|
2642
2684
|
top: t,
|
|
2643
2685
|
transform: `rotateY(${s}deg) translateZ(${re}px)`,
|
|
2644
2686
|
backfaceVisibility: "hidden",
|
|
2645
|
-
background: c ? a ? "linear-gradient(180deg, rgb(0,28,62), rgb(0,18,44))" : "linear-gradient(180deg, rgba(0,28,62,0.70), rgba(0,18,44,0.76))" : `rgb(${p},${
|
|
2646
|
-
borderLeft: `1px solid ${o.color}${
|
|
2687
|
+
background: c ? a ? "linear-gradient(180deg, rgb(0,28,62), rgb(0,18,44))" : "linear-gradient(180deg, rgba(0,28,62,0.70), rgba(0,18,44,0.76))" : `rgb(${p},${f},${y})`,
|
|
2688
|
+
borderLeft: `1px solid ${o.color}${u}`,
|
|
2647
2689
|
boxShadow: c ? `inset 0 0 18px ${o.color}28` : "none"
|
|
2648
2690
|
},
|
|
2649
2691
|
children: c && /* @__PURE__ */ d(Ce, { children: [
|
|
@@ -2788,7 +2830,7 @@ function _t({
|
|
|
2788
2830
|
}
|
|
2789
2831
|
),
|
|
2790
2832
|
i && Ue.map((s, l) => {
|
|
2791
|
-
const
|
|
2833
|
+
const h = Ye(s);
|
|
2792
2834
|
return /* @__PURE__ */ e(
|
|
2793
2835
|
"div",
|
|
2794
2836
|
{
|
|
@@ -2802,14 +2844,14 @@ function _t({
|
|
|
2802
2844
|
backfaceVisibility: "hidden",
|
|
2803
2845
|
background: o.color,
|
|
2804
2846
|
boxShadow: `0 0 8px ${o.color}, 0 0 18px ${o.color}aa, 0 0 30px ${o.glow}`,
|
|
2805
|
-
opacity:
|
|
2847
|
+
opacity: h * 0.9
|
|
2806
2848
|
}
|
|
2807
2849
|
},
|
|
2808
2850
|
`rng${n}${l}`
|
|
2809
2851
|
);
|
|
2810
2852
|
}),
|
|
2811
2853
|
i && Ue.map((s, l) => {
|
|
2812
|
-
const
|
|
2854
|
+
const h = Ye(s), c = Math.round(2 + h * 4), p = Math.round(5 + h * 10), f = Math.round(12 + h * 20);
|
|
2813
2855
|
return /* @__PURE__ */ e(
|
|
2814
2856
|
"div",
|
|
2815
2857
|
{
|
|
@@ -2821,7 +2863,7 @@ function _t({
|
|
|
2821
2863
|
top: t + he,
|
|
2822
2864
|
transform: `rotateY(${s}deg) translateZ(${re}px)`,
|
|
2823
2865
|
backfaceVisibility: "hidden",
|
|
2824
|
-
background: `rgb(${c},${p},${
|
|
2866
|
+
background: `rgb(${c},${p},${f})`
|
|
2825
2867
|
}
|
|
2826
2868
|
},
|
|
2827
2869
|
`gap${n}${l}`
|
|
@@ -2841,17 +2883,17 @@ function Oe({
|
|
|
2841
2883
|
// connections = 284,
|
|
2842
2884
|
_compact: l
|
|
2843
2885
|
}) {
|
|
2844
|
-
const [
|
|
2886
|
+
const [h, c] = I(n), p = ee(0), f = ee(0);
|
|
2845
2887
|
Ee(() => {
|
|
2846
2888
|
if (!r) {
|
|
2847
2889
|
c(n);
|
|
2848
2890
|
return;
|
|
2849
2891
|
}
|
|
2850
|
-
const
|
|
2851
|
-
|
|
2892
|
+
const u = (g) => {
|
|
2893
|
+
f.current && c((m) => m + (g - f.current) * 0.027), f.current = g, p.current = requestAnimationFrame(u);
|
|
2852
2894
|
};
|
|
2853
|
-
return p.current = requestAnimationFrame(
|
|
2854
|
-
cancelAnimationFrame(p.current),
|
|
2895
|
+
return p.current = requestAnimationFrame(u), () => {
|
|
2896
|
+
cancelAnimationFrame(p.current), f.current = 0;
|
|
2855
2897
|
};
|
|
2856
2898
|
}, [r, n]);
|
|
2857
2899
|
const y = w[a] ?? w.online;
|
|
@@ -2948,20 +2990,20 @@ function Oe({
|
|
|
2948
2990
|
height: He,
|
|
2949
2991
|
position: "relative",
|
|
2950
2992
|
transformStyle: "preserve-3d",
|
|
2951
|
-
transform: `rotateX(${t}deg) rotateY(${
|
|
2993
|
+
transform: `rotateX(${t}deg) rotateY(${h}deg) rotateZ(${o}deg)`,
|
|
2952
2994
|
transition: r ? "none" : "transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94)"
|
|
2953
2995
|
},
|
|
2954
|
-
children: [0, 1, 2].map((
|
|
2996
|
+
children: [0, 1, 2].map((u) => /* @__PURE__ */ e(
|
|
2955
2997
|
_t,
|
|
2956
2998
|
{
|
|
2957
|
-
diskY:
|
|
2958
|
-
diskIdx:
|
|
2999
|
+
diskY: u * (he + Ze),
|
|
3000
|
+
diskIdx: u,
|
|
2959
3001
|
cfg: y,
|
|
2960
|
-
hasRingBelow:
|
|
3002
|
+
hasRingBelow: u < 2,
|
|
2961
3003
|
capacity: s,
|
|
2962
3004
|
compact: l
|
|
2963
3005
|
},
|
|
2964
|
-
|
|
3006
|
+
u
|
|
2965
3007
|
))
|
|
2966
3008
|
}
|
|
2967
3009
|
)
|
|
@@ -2971,7 +3013,7 @@ function Oe({
|
|
|
2971
3013
|
}
|
|
2972
3014
|
);
|
|
2973
3015
|
}
|
|
2974
|
-
const G = 190,
|
|
3016
|
+
const G = 190, Y = 72, be = 120, pe = qe(G, Y, be);
|
|
2975
3017
|
function jt({
|
|
2976
3018
|
cfg: t,
|
|
2977
3019
|
name: n,
|
|
@@ -2985,7 +3027,7 @@ function jt({
|
|
|
2985
3027
|
{
|
|
2986
3028
|
style: {
|
|
2987
3029
|
width: G,
|
|
2988
|
-
height:
|
|
3030
|
+
height: Y,
|
|
2989
3031
|
background: r ? we : Qe,
|
|
2990
3032
|
position: "relative",
|
|
2991
3033
|
overflow: "hidden",
|
|
@@ -3071,8 +3113,8 @@ function jt({
|
|
|
3071
3113
|
gap: 10
|
|
3072
3114
|
},
|
|
3073
3115
|
children: [
|
|
3074
|
-
/* @__PURE__ */ e("div", { style: { display: "flex", gap: 3, alignItems: "center" }, children: Array.from({ length: 8 }, (l,
|
|
3075
|
-
const c =
|
|
3116
|
+
/* @__PURE__ */ e("div", { style: { display: "flex", gap: 3, alignItems: "center" }, children: Array.from({ length: 8 }, (l, h) => {
|
|
3117
|
+
const c = h < a, p = s[h];
|
|
3076
3118
|
return /* @__PURE__ */ d(
|
|
3077
3119
|
"div",
|
|
3078
3120
|
{
|
|
@@ -3124,13 +3166,13 @@ function jt({
|
|
|
3124
3166
|
background: c ? t.color : "#0a1830",
|
|
3125
3167
|
boxShadow: c ? `0 0 5px ${t.color}` : "none",
|
|
3126
3168
|
animation: c ? "holo-led-blink 1.8s linear infinite" : "none",
|
|
3127
|
-
animationDelay: `${
|
|
3169
|
+
animationDelay: `${h * 0.2}s`
|
|
3128
3170
|
}
|
|
3129
3171
|
}
|
|
3130
3172
|
)
|
|
3131
3173
|
]
|
|
3132
3174
|
},
|
|
3133
|
-
|
|
3175
|
+
h
|
|
3134
3176
|
);
|
|
3135
3177
|
}) }),
|
|
3136
3178
|
/* @__PURE__ */ e(
|
|
@@ -3240,7 +3282,7 @@ function Xt() {
|
|
|
3240
3282
|
{
|
|
3241
3283
|
style: {
|
|
3242
3284
|
width: G,
|
|
3243
|
-
height:
|
|
3285
|
+
height: Y,
|
|
3244
3286
|
background: "linear-gradient(180deg, #040c1a, #030810)",
|
|
3245
3287
|
position: "relative",
|
|
3246
3288
|
overflow: "hidden",
|
|
@@ -3255,7 +3297,7 @@ function Xt() {
|
|
|
3255
3297
|
{
|
|
3256
3298
|
style: {
|
|
3257
3299
|
width: 40,
|
|
3258
|
-
height:
|
|
3300
|
+
height: Y - 16,
|
|
3259
3301
|
background: "#020710",
|
|
3260
3302
|
border: "1px solid #1a2d40",
|
|
3261
3303
|
borderRadius: 2,
|
|
@@ -3311,7 +3353,7 @@ function Xt() {
|
|
|
3311
3353
|
style: {
|
|
3312
3354
|
marginLeft: "auto",
|
|
3313
3355
|
width: 12,
|
|
3314
|
-
height:
|
|
3356
|
+
height: Y - 16,
|
|
3315
3357
|
background: "#020710",
|
|
3316
3358
|
border: "1px solid #1a3050",
|
|
3317
3359
|
borderRadius: 1
|
|
@@ -3328,7 +3370,7 @@ function rt({ side: t, color: n }) {
|
|
|
3328
3370
|
{
|
|
3329
3371
|
style: {
|
|
3330
3372
|
width: be,
|
|
3331
|
-
height:
|
|
3373
|
+
height: Y,
|
|
3332
3374
|
background: t === "right" ? "linear-gradient(90deg, #04091a 0%, #071428 60%, #040c1c 100%)" : "linear-gradient(90deg, #040c1c 0%, #071428 40%, #04091a 100%)",
|
|
3333
3375
|
position: "relative",
|
|
3334
3376
|
overflow: "hidden"
|
|
@@ -3352,8 +3394,8 @@ function rt({ side: t, color: n }) {
|
|
|
3352
3394
|
{
|
|
3353
3395
|
style: {
|
|
3354
3396
|
position: "absolute",
|
|
3355
|
-
top:
|
|
3356
|
-
bottom:
|
|
3397
|
+
top: Y * 0.25,
|
|
3398
|
+
bottom: Y * 0.25,
|
|
3357
3399
|
left: 14,
|
|
3358
3400
|
right: 14,
|
|
3359
3401
|
display: "flex",
|
|
@@ -3447,20 +3489,20 @@ function pt({
|
|
|
3447
3489
|
status: a = "online",
|
|
3448
3490
|
name: s = "WEB-DISP-01",
|
|
3449
3491
|
traffic: l = 78,
|
|
3450
|
-
activeRoutes:
|
|
3492
|
+
activeRoutes: h = 12,
|
|
3451
3493
|
_compact: c
|
|
3452
3494
|
}) {
|
|
3453
|
-
const [p,
|
|
3495
|
+
const [p, f] = I(n), y = ee(0), u = ee(0);
|
|
3454
3496
|
Ee(() => {
|
|
3455
3497
|
if (!r) {
|
|
3456
|
-
|
|
3498
|
+
f(n);
|
|
3457
3499
|
return;
|
|
3458
3500
|
}
|
|
3459
3501
|
const m = (x) => {
|
|
3460
|
-
|
|
3502
|
+
u.current && f((v) => v + (x - u.current) * 0.027), u.current = x, y.current = requestAnimationFrame(m);
|
|
3461
3503
|
};
|
|
3462
3504
|
return y.current = requestAnimationFrame(m), () => {
|
|
3463
|
-
cancelAnimationFrame(y.current),
|
|
3505
|
+
cancelAnimationFrame(y.current), u.current = 0;
|
|
3464
3506
|
};
|
|
3465
3507
|
}, [r, n]);
|
|
3466
3508
|
const g = w[a] ?? w.online;
|
|
@@ -3469,7 +3511,7 @@ function pt({
|
|
|
3469
3511
|
{
|
|
3470
3512
|
style: {
|
|
3471
3513
|
width: G * i,
|
|
3472
|
-
height:
|
|
3514
|
+
height: Y * i,
|
|
3473
3515
|
position: "relative",
|
|
3474
3516
|
display: "flex",
|
|
3475
3517
|
alignItems: "center",
|
|
@@ -3530,7 +3572,7 @@ function pt({
|
|
|
3530
3572
|
style: {
|
|
3531
3573
|
position: "absolute",
|
|
3532
3574
|
width: G * 1.3 * i,
|
|
3533
|
-
height:
|
|
3575
|
+
height: Y * 2 * i,
|
|
3534
3576
|
background: `radial-gradient(ellipse, ${g.glow} 0%, transparent 65%)`,
|
|
3535
3577
|
filter: `blur(${Math.round(40 * i)}px)`,
|
|
3536
3578
|
pointerEvents: "none",
|
|
@@ -3554,7 +3596,7 @@ function pt({
|
|
|
3554
3596
|
{
|
|
3555
3597
|
style: {
|
|
3556
3598
|
width: G,
|
|
3557
|
-
height:
|
|
3599
|
+
height: Y,
|
|
3558
3600
|
position: "relative",
|
|
3559
3601
|
transformStyle: "preserve-3d",
|
|
3560
3602
|
transform: `rotateX(${t}deg) rotateY(${p}deg) rotateZ(${o}deg)`,
|
|
@@ -3567,7 +3609,7 @@ function pt({
|
|
|
3567
3609
|
cfg: g,
|
|
3568
3610
|
name: s,
|
|
3569
3611
|
traffic: l,
|
|
3570
|
-
activeRoutes:
|
|
3612
|
+
activeRoutes: h,
|
|
3571
3613
|
compact: c
|
|
3572
3614
|
}
|
|
3573
3615
|
) }),
|
|
@@ -3585,7 +3627,7 @@ function pt({
|
|
|
3585
3627
|
}
|
|
3586
3628
|
);
|
|
3587
3629
|
}
|
|
3588
|
-
const K = 190,
|
|
3630
|
+
const K = 190, V = 72, ge = 120, fe = qe(K, V, ge), at = {
|
|
3589
3631
|
online: { color: "#bb55ff", glow: "rgba(187,85,255,0.50)" },
|
|
3590
3632
|
warning: { color: "#ff8c00", glow: "rgba(255,140,0,0.50)" },
|
|
3591
3633
|
critical: { color: "#ff2255", glow: "rgba(255,34,85,0.50)" },
|
|
@@ -3605,7 +3647,7 @@ function qt({
|
|
|
3605
3647
|
{
|
|
3606
3648
|
style: {
|
|
3607
3649
|
width: K,
|
|
3608
|
-
height:
|
|
3650
|
+
height: V,
|
|
3609
3651
|
background: a ? we : Qe,
|
|
3610
3652
|
position: "relative",
|
|
3611
3653
|
overflow: "hidden",
|
|
@@ -3691,7 +3733,7 @@ function qt({
|
|
|
3691
3733
|
gap: 10
|
|
3692
3734
|
},
|
|
3693
3735
|
children: [
|
|
3694
|
-
/* @__PURE__ */ e("div", { style: { display: "flex", gap: 3, alignItems: "center" }, children: Array.from({ length: 5 }, (
|
|
3736
|
+
/* @__PURE__ */ e("div", { style: { display: "flex", gap: 3, alignItems: "center" }, children: Array.from({ length: 5 }, (h, c) => {
|
|
3695
3737
|
const p = c < r;
|
|
3696
3738
|
return /* @__PURE__ */ d(
|
|
3697
3739
|
"div",
|
|
@@ -3823,14 +3865,14 @@ function qt({
|
|
|
3823
3865
|
{ label: "INST", val: r, unit: "conn" },
|
|
3824
3866
|
{ label: "ENQUEUE", val: Math.round(o * 2.4), unit: "msgs" },
|
|
3825
3867
|
{ label: "DISP", val: Math.round(i * 0.1), unit: "/s" }
|
|
3826
|
-
].map((
|
|
3827
|
-
/* @__PURE__ */ e("span", { style: { fontSize: 6, color: "#1e3a5a", letterSpacing: "0.08em" }, children:
|
|
3868
|
+
].map((h) => /* @__PURE__ */ d("div", { style: { display: "flex", gap: 3 }, children: [
|
|
3869
|
+
/* @__PURE__ */ e("span", { style: { fontSize: 6, color: "#1e3a5a", letterSpacing: "0.08em" }, children: h.label }),
|
|
3828
3870
|
/* @__PURE__ */ d("span", { style: { fontSize: 6, color: s + "88" }, children: [
|
|
3829
|
-
|
|
3871
|
+
h.val,
|
|
3830
3872
|
" ",
|
|
3831
|
-
|
|
3873
|
+
h.unit
|
|
3832
3874
|
] })
|
|
3833
|
-
] },
|
|
3875
|
+
] }, h.label))
|
|
3834
3876
|
}
|
|
3835
3877
|
),
|
|
3836
3878
|
/* @__PURE__ */ e(
|
|
@@ -3856,7 +3898,7 @@ function Gt() {
|
|
|
3856
3898
|
{
|
|
3857
3899
|
style: {
|
|
3858
3900
|
width: K,
|
|
3859
|
-
height:
|
|
3901
|
+
height: V,
|
|
3860
3902
|
background: "linear-gradient(180deg, #040c1a, #030810)",
|
|
3861
3903
|
position: "relative",
|
|
3862
3904
|
overflow: "hidden",
|
|
@@ -3871,7 +3913,7 @@ function Gt() {
|
|
|
3871
3913
|
{
|
|
3872
3914
|
style: {
|
|
3873
3915
|
width: 40,
|
|
3874
|
-
height:
|
|
3916
|
+
height: V - 16,
|
|
3875
3917
|
background: "#020710",
|
|
3876
3918
|
border: "1px solid #1a2d40",
|
|
3877
3919
|
borderRadius: 2,
|
|
@@ -3927,7 +3969,7 @@ function Gt() {
|
|
|
3927
3969
|
style: {
|
|
3928
3970
|
marginLeft: "auto",
|
|
3929
3971
|
width: 12,
|
|
3930
|
-
height:
|
|
3972
|
+
height: V - 16,
|
|
3931
3973
|
background: "#020710",
|
|
3932
3974
|
border: "1px solid #1a3050",
|
|
3933
3975
|
borderRadius: 1
|
|
@@ -3944,7 +3986,7 @@ function lt({ side: t, color: n }) {
|
|
|
3944
3986
|
{
|
|
3945
3987
|
style: {
|
|
3946
3988
|
width: ge,
|
|
3947
|
-
height:
|
|
3989
|
+
height: V,
|
|
3948
3990
|
background: t === "right" ? "linear-gradient(90deg, #04091a 0%, #071428 60%, #040c1c 100%)" : "linear-gradient(90deg, #040c1c 0%, #071428 40%, #04091a 100%)",
|
|
3949
3991
|
position: "relative",
|
|
3950
3992
|
overflow: "hidden"
|
|
@@ -3968,8 +4010,8 @@ function lt({ side: t, color: n }) {
|
|
|
3968
4010
|
{
|
|
3969
4011
|
style: {
|
|
3970
4012
|
position: "absolute",
|
|
3971
|
-
top:
|
|
3972
|
-
bottom:
|
|
4013
|
+
top: V * 0.25,
|
|
4014
|
+
bottom: V * 0.25,
|
|
3973
4015
|
left: 14,
|
|
3974
4016
|
right: 14,
|
|
3975
4017
|
display: "flex",
|
|
@@ -4063,21 +4105,21 @@ function Zt({
|
|
|
4063
4105
|
status: a = "online",
|
|
4064
4106
|
name: s = "MSG-SRV-01",
|
|
4065
4107
|
queueDepth: l = 45,
|
|
4066
|
-
msgsPerSec:
|
|
4108
|
+
msgsPerSec: h = 230,
|
|
4067
4109
|
instances: c = 3,
|
|
4068
4110
|
_compact: p
|
|
4069
4111
|
}) {
|
|
4070
|
-
const [
|
|
4112
|
+
const [f, y] = I(n), u = ee(0), g = ee(0);
|
|
4071
4113
|
Ee(() => {
|
|
4072
4114
|
if (!r) {
|
|
4073
4115
|
y(n);
|
|
4074
4116
|
return;
|
|
4075
4117
|
}
|
|
4076
4118
|
const x = (v) => {
|
|
4077
|
-
g.current && y((
|
|
4119
|
+
g.current && y(($) => $ + (v - g.current) * 0.027), g.current = v, u.current = requestAnimationFrame(x);
|
|
4078
4120
|
};
|
|
4079
|
-
return
|
|
4080
|
-
cancelAnimationFrame(
|
|
4121
|
+
return u.current = requestAnimationFrame(x), () => {
|
|
4122
|
+
cancelAnimationFrame(u.current), g.current = 0;
|
|
4081
4123
|
};
|
|
4082
4124
|
}, [r, n]);
|
|
4083
4125
|
const m = at[a] ?? at.online;
|
|
@@ -4086,7 +4128,7 @@ function Zt({
|
|
|
4086
4128
|
{
|
|
4087
4129
|
style: {
|
|
4088
4130
|
width: K * i,
|
|
4089
|
-
height:
|
|
4131
|
+
height: V * i,
|
|
4090
4132
|
position: "relative",
|
|
4091
4133
|
display: "flex",
|
|
4092
4134
|
alignItems: "center",
|
|
@@ -4147,7 +4189,7 @@ function Zt({
|
|
|
4147
4189
|
style: {
|
|
4148
4190
|
position: "absolute",
|
|
4149
4191
|
width: K * 1.3 * i,
|
|
4150
|
-
height:
|
|
4192
|
+
height: V * 2 * i,
|
|
4151
4193
|
background: `radial-gradient(ellipse, ${m.glow} 0%, transparent 65%)`,
|
|
4152
4194
|
filter: `blur(${Math.round(40 * i)}px)`,
|
|
4153
4195
|
pointerEvents: "none",
|
|
@@ -4171,10 +4213,10 @@ function Zt({
|
|
|
4171
4213
|
{
|
|
4172
4214
|
style: {
|
|
4173
4215
|
width: K,
|
|
4174
|
-
height:
|
|
4216
|
+
height: V,
|
|
4175
4217
|
position: "relative",
|
|
4176
4218
|
transformStyle: "preserve-3d",
|
|
4177
|
-
transform: `rotateX(${t}deg) rotateY(${
|
|
4219
|
+
transform: `rotateX(${t}deg) rotateY(${f}deg) rotateZ(${o}deg)`,
|
|
4178
4220
|
transition: r ? "none" : "transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94)"
|
|
4179
4221
|
},
|
|
4180
4222
|
children: [
|
|
@@ -4184,7 +4226,7 @@ function Zt({
|
|
|
4184
4226
|
cfg: m,
|
|
4185
4227
|
name: s,
|
|
4186
4228
|
queueDepth: l,
|
|
4187
|
-
msgsPerSec:
|
|
4229
|
+
msgsPerSec: h,
|
|
4188
4230
|
instances: c,
|
|
4189
4231
|
compact: p
|
|
4190
4232
|
}
|
|
@@ -4322,8 +4364,8 @@ function P(t, n, o = 24) {
|
|
|
4322
4364
|
});
|
|
4323
4365
|
}
|
|
4324
4366
|
function Jt({ data: t, color: n, height: o = 28 }) {
|
|
4325
|
-
const r = o, a = Math.max(...t, 1), s = t.map((l,
|
|
4326
|
-
const c =
|
|
4367
|
+
const r = o, a = Math.max(...t, 1), s = t.map((l, h) => {
|
|
4368
|
+
const c = h / (t.length - 1) * 120, p = r - l / a * (r - 4) - 2;
|
|
4327
4369
|
return `${c},${p}`;
|
|
4328
4370
|
}).join(" ");
|
|
4329
4371
|
return /* @__PURE__ */ e("svg", { width: 120, height: r, style: { display: "block", overflow: "visible" }, children: /* @__PURE__ */ e(
|
|
@@ -4347,7 +4389,7 @@ function ei({
|
|
|
4347
4389
|
animPhase: r,
|
|
4348
4390
|
series: a
|
|
4349
4391
|
}) {
|
|
4350
|
-
const s = i === "critical" || i === "offline" ? "#ff2255" : i === "warning" ? "#ff8c00" : "#00e5ff", l = a ? a.map((p) => ({ ...p })) : ti(t, o),
|
|
4392
|
+
const s = i === "critical" || i === "offline" ? "#ff2255" : i === "warning" ? "#ff8c00" : "#00e5ff", l = a ? a.map((p) => ({ ...p })) : ti(t, o), h = r >= 0.3 ? 0 : -280, c = r >= 0.2 ? 1 : 0;
|
|
4351
4393
|
return /* @__PURE__ */ d(
|
|
4352
4394
|
"div",
|
|
4353
4395
|
{
|
|
@@ -4361,7 +4403,7 @@ function ei({
|
|
|
4361
4403
|
display: "flex",
|
|
4362
4404
|
flexDirection: "column",
|
|
4363
4405
|
overflow: "hidden",
|
|
4364
|
-
transform: `translateX(${
|
|
4406
|
+
transform: `translateX(${h}px)`,
|
|
4365
4407
|
opacity: c,
|
|
4366
4408
|
transition: "transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease"
|
|
4367
4409
|
},
|
|
@@ -4383,7 +4425,7 @@ function ei({
|
|
|
4383
4425
|
]
|
|
4384
4426
|
}
|
|
4385
4427
|
),
|
|
4386
|
-
/* @__PURE__ */ e("div", { style: { flex: 1, overflowY: "auto", padding: "12px 10px", display: "flex", flexDirection: "column", gap: 16 }, children: l.map((p,
|
|
4428
|
+
/* @__PURE__ */ e("div", { style: { flex: 1, overflowY: "auto", padding: "12px 10px", display: "flex", flexDirection: "column", gap: 16 }, children: l.map((p, f) => /* @__PURE__ */ d(
|
|
4387
4429
|
"div",
|
|
4388
4430
|
{
|
|
4389
4431
|
style: {
|
|
@@ -4391,7 +4433,7 @@ function ei({
|
|
|
4391
4433
|
background: "rgba(0, 20, 40, 0.35)",
|
|
4392
4434
|
border: `1px solid ${p.color}22`,
|
|
4393
4435
|
borderRadius: 6,
|
|
4394
|
-
transition: `opacity 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) ${
|
|
4436
|
+
transition: `opacity 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) ${f * 0.04}s`,
|
|
4395
4437
|
opacity: r >= 0.5 ? 1 : 0
|
|
4396
4438
|
},
|
|
4397
4439
|
children: [
|
|
@@ -4851,7 +4893,7 @@ function ut({
|
|
|
4851
4893
|
}
|
|
4852
4894
|
);
|
|
4853
4895
|
}
|
|
4854
|
-
function
|
|
4896
|
+
function O({
|
|
4855
4897
|
color: t = "#00e5ff",
|
|
4856
4898
|
label: n = "THREAD",
|
|
4857
4899
|
status: o = "online"
|
|
@@ -4942,7 +4984,7 @@ function Ie({
|
|
|
4942
4984
|
)
|
|
4943
4985
|
] });
|
|
4944
4986
|
}
|
|
4945
|
-
function
|
|
4987
|
+
function B({
|
|
4946
4988
|
color: t = "#00e5ff",
|
|
4947
4989
|
label: n = "PORT-1",
|
|
4948
4990
|
status: o = "online"
|
|
@@ -5153,7 +5195,7 @@ function ri({
|
|
|
5153
5195
|
}) {
|
|
5154
5196
|
const a = w[n]?.color ?? w.online.color, s = "#ff8c00";
|
|
5155
5197
|
if (t === "server") {
|
|
5156
|
-
const l = o.cpuLoad ?? 50,
|
|
5198
|
+
const l = o.cpuLoad ?? 50, h = o.memLoad ?? 60, c = [
|
|
5157
5199
|
{
|
|
5158
5200
|
key: "cpu0",
|
|
5159
5201
|
delay: 0,
|
|
@@ -5191,7 +5233,7 @@ function ri({
|
|
|
5191
5233
|
color: "#8855ee",
|
|
5192
5234
|
label: "HEAP-0",
|
|
5193
5235
|
status: i[2]?.status,
|
|
5194
|
-
usedPercent:
|
|
5236
|
+
usedPercent: h,
|
|
5195
5237
|
delay: "0.1s"
|
|
5196
5238
|
}
|
|
5197
5239
|
)
|
|
@@ -5205,7 +5247,7 @@ function ri({
|
|
|
5205
5247
|
color: "#8855ee",
|
|
5206
5248
|
label: "HEAP-1",
|
|
5207
5249
|
status: i[3]?.status,
|
|
5208
|
-
usedPercent:
|
|
5250
|
+
usedPercent: h * 0.85,
|
|
5209
5251
|
delay: "0.3s"
|
|
5210
5252
|
}
|
|
5211
5253
|
)
|
|
@@ -5244,7 +5286,7 @@ function ri({
|
|
|
5244
5286
|
{
|
|
5245
5287
|
key: "thread",
|
|
5246
5288
|
delay: 7,
|
|
5247
|
-
el: /* @__PURE__ */ e(
|
|
5289
|
+
el: /* @__PURE__ */ e(O, { color: a, label: "THREAD-POOL", status: i[7]?.status })
|
|
5248
5290
|
},
|
|
5249
5291
|
{
|
|
5250
5292
|
key: "net",
|
|
@@ -5263,13 +5305,13 @@ function ri({
|
|
|
5263
5305
|
alignItems: "center",
|
|
5264
5306
|
padding: 24
|
|
5265
5307
|
},
|
|
5266
|
-
children: c.map(({ key: p, delay:
|
|
5308
|
+
children: c.map(({ key: p, delay: f, el: y }) => /* @__PURE__ */ e(
|
|
5267
5309
|
"div",
|
|
5268
5310
|
{
|
|
5269
5311
|
style: {
|
|
5270
|
-
opacity: r >= 0.2 +
|
|
5271
|
-
transform: `scale(${r >= 0.2 +
|
|
5272
|
-
transition: `opacity 0.4s ${E} ${
|
|
5312
|
+
opacity: r >= 0.2 + f * 0.08 ? 1 : 0,
|
|
5313
|
+
transform: `scale(${r >= 0.2 + f * 0.08 ? 1 : 0.6})`,
|
|
5314
|
+
transition: `opacity 0.4s ${E} ${f * 0.06}s, transform 0.45s ${E} ${f * 0.06}s`
|
|
5273
5315
|
},
|
|
5274
5316
|
children: y
|
|
5275
5317
|
},
|
|
@@ -5279,7 +5321,7 @@ function ri({
|
|
|
5279
5321
|
);
|
|
5280
5322
|
}
|
|
5281
5323
|
if (t === "dispatcher") {
|
|
5282
|
-
const l = Array.from({ length: 8 }, (
|
|
5324
|
+
const l = Array.from({ length: 8 }, (h, c) => {
|
|
5283
5325
|
const p = i[c];
|
|
5284
5326
|
return /* @__PURE__ */ e(
|
|
5285
5327
|
"div",
|
|
@@ -5289,7 +5331,7 @@ function ri({
|
|
|
5289
5331
|
transform: `scale(${r >= 0.25 + c * 0.04 ? 1 : 0.5})`,
|
|
5290
5332
|
transition: `opacity 0.35s ${E} ${c * 0.04}s, transform 0.4s ${E} ${c * 0.04}s`
|
|
5291
5333
|
},
|
|
5292
|
-
children: /* @__PURE__ */ e(
|
|
5334
|
+
children: /* @__PURE__ */ e(B, { color: a, label: `PORT-${c + 1}`, status: p?.status })
|
|
5293
5335
|
},
|
|
5294
5336
|
`p${c}`
|
|
5295
5337
|
);
|
|
@@ -5315,7 +5357,7 @@ function ri({
|
|
|
5315
5357
|
transform: `scale(${r >= 0.7 ? 1 : 0.6})`,
|
|
5316
5358
|
transition: `all 0.4s ${E} 0.3s`
|
|
5317
5359
|
},
|
|
5318
|
-
children: /* @__PURE__ */ e(
|
|
5360
|
+
children: /* @__PURE__ */ e(O, { color: a, label: "HTTP-WORKER", status: i[8]?.status })
|
|
5319
5361
|
}
|
|
5320
5362
|
),
|
|
5321
5363
|
/* @__PURE__ */ e(
|
|
@@ -5326,7 +5368,7 @@ function ri({
|
|
|
5326
5368
|
transform: `scale(${r >= 0.8 ? 1 : 0.6})`,
|
|
5327
5369
|
transition: `all 0.4s ${E} 0.4s`
|
|
5328
5370
|
},
|
|
5329
|
-
children: /* @__PURE__ */ e(
|
|
5371
|
+
children: /* @__PURE__ */ e(O, { color: "#bb55ff", label: "HTTPS-WORKER", status: i[9]?.status })
|
|
5330
5372
|
}
|
|
5331
5373
|
)
|
|
5332
5374
|
] })
|
|
@@ -5355,7 +5397,7 @@ function ri({
|
|
|
5355
5397
|
transform: `scale(${r >= 0.25 + l * 0.1 ? 1 : 0.6})`,
|
|
5356
5398
|
transition: `all 0.4s ${E} ${l * 0.08}s`
|
|
5357
5399
|
},
|
|
5358
|
-
children: /* @__PURE__ */ e(
|
|
5400
|
+
children: /* @__PURE__ */ e(B, { color: "#bb55ff", label: `INST-${l}`, status: i[l]?.status })
|
|
5359
5401
|
},
|
|
5360
5402
|
l
|
|
5361
5403
|
)),
|
|
@@ -5367,7 +5409,7 @@ function ri({
|
|
|
5367
5409
|
transform: `scale(${r >= 0.6 ? 1 : 0.6})`,
|
|
5368
5410
|
transition: `all 0.4s ${E} 0.25s`
|
|
5369
5411
|
},
|
|
5370
|
-
children: /* @__PURE__ */ e(
|
|
5412
|
+
children: /* @__PURE__ */ e(O, { color: "#bb55ff", label: "QUEUE-0", status: i[3]?.status })
|
|
5371
5413
|
}
|
|
5372
5414
|
),
|
|
5373
5415
|
[4, 5, 6].map((l) => /* @__PURE__ */ e(
|
|
@@ -5379,7 +5421,7 @@ function ri({
|
|
|
5379
5421
|
transition: `all 0.4s ${E} ${0.35 + (l - 4) * 0.05}s`
|
|
5380
5422
|
},
|
|
5381
5423
|
children: /* @__PURE__ */ e(
|
|
5382
|
-
|
|
5424
|
+
O,
|
|
5383
5425
|
{
|
|
5384
5426
|
color: "#bb55ff",
|
|
5385
5427
|
label: `WORKER-${l - 3}`,
|
|
@@ -5406,25 +5448,25 @@ function ri({
|
|
|
5406
5448
|
padding: 24
|
|
5407
5449
|
},
|
|
5408
5450
|
children: [
|
|
5409
|
-
[0, 1, 2].map((
|
|
5451
|
+
[0, 1, 2].map((h) => /* @__PURE__ */ e(
|
|
5410
5452
|
"div",
|
|
5411
5453
|
{
|
|
5412
5454
|
style: {
|
|
5413
|
-
opacity: r >= 0.2 +
|
|
5414
|
-
transform: `scale(${r >= 0.2 +
|
|
5415
|
-
transition: `all 0.45s ${E} ${
|
|
5455
|
+
opacity: r >= 0.2 + h * 0.12 ? 1 : 0,
|
|
5456
|
+
transform: `scale(${r >= 0.2 + h * 0.12 ? 1 : 0.5})`,
|
|
5457
|
+
transition: `all 0.45s ${E} ${h * 0.1}s`
|
|
5416
5458
|
},
|
|
5417
5459
|
children: /* @__PURE__ */ e(
|
|
5418
5460
|
Ie,
|
|
5419
5461
|
{
|
|
5420
5462
|
color: s,
|
|
5421
|
-
label: `PLATTER-${
|
|
5422
|
-
status: i[
|
|
5463
|
+
label: `PLATTER-${h}`,
|
|
5464
|
+
status: i[h]?.status,
|
|
5423
5465
|
capacityPercent: l
|
|
5424
5466
|
}
|
|
5425
5467
|
)
|
|
5426
5468
|
},
|
|
5427
|
-
|
|
5469
|
+
h
|
|
5428
5470
|
)),
|
|
5429
5471
|
/* @__PURE__ */ e(
|
|
5430
5472
|
"div",
|
|
@@ -5434,7 +5476,7 @@ function ri({
|
|
|
5434
5476
|
transform: `scale(${r >= 0.6 ? 1 : 0.6})`,
|
|
5435
5477
|
transition: `all 0.4s ${E} 0.3s`
|
|
5436
5478
|
},
|
|
5437
|
-
children: /* @__PURE__ */ e(
|
|
5479
|
+
children: /* @__PURE__ */ e(O, { color: s, label: "CONN-POOL", status: i[3]?.status })
|
|
5438
5480
|
}
|
|
5439
5481
|
),
|
|
5440
5482
|
/* @__PURE__ */ e(
|
|
@@ -5445,7 +5487,7 @@ function ri({
|
|
|
5445
5487
|
transform: `scale(${r >= 0.75 ? 1 : 0.6})`,
|
|
5446
5488
|
transition: `all 0.4s ${E} 0.4s`
|
|
5447
5489
|
},
|
|
5448
|
-
children: /* @__PURE__ */ e(
|
|
5490
|
+
children: /* @__PURE__ */ e(O, { color: "#00ff88", label: "QUERY-CACHE", status: i[4]?.status })
|
|
5449
5491
|
}
|
|
5450
5492
|
)
|
|
5451
5493
|
]
|
|
@@ -5464,7 +5506,7 @@ function wi({
|
|
|
5464
5506
|
subComponents: s,
|
|
5465
5507
|
graphSeries: l
|
|
5466
5508
|
}) {
|
|
5467
|
-
const
|
|
5509
|
+
const h = ii(t, n, o, a), c = w[o]?.color ?? w.online.color, p = r >= 0.1 ? 1 : r * 10, f = r >= 0.2 ? "-50%" : "0%", y = r >= 0.2 ? "50%" : "0%", u = r >= 0.25 ? Math.min(1, (r - 0.25) * 1.5) : 0;
|
|
5468
5510
|
return /* @__PURE__ */ d(
|
|
5469
5511
|
"div",
|
|
5470
5512
|
{
|
|
@@ -5537,7 +5579,7 @@ function wi({
|
|
|
5537
5579
|
background: "linear-gradient(90deg, rgba(2, 8, 20, 0.98) 0%, rgba(2, 12, 28, 0.95) 100%)",
|
|
5538
5580
|
borderRight: `2px solid ${c}44`,
|
|
5539
5581
|
boxShadow: "4px 0 32px rgba(0,0,0,0.6)",
|
|
5540
|
-
transform: `translateX(${
|
|
5582
|
+
transform: `translateX(${f})`,
|
|
5541
5583
|
transition: `transform 0.7s ${E}`
|
|
5542
5584
|
}
|
|
5543
5585
|
}
|
|
@@ -5575,7 +5617,7 @@ function wi({
|
|
|
5575
5617
|
boxShadow: `0 0 40px ${c}18, inset 0 0 60px rgba(0,0,0,0.4)`,
|
|
5576
5618
|
display: "flex",
|
|
5577
5619
|
flexDirection: "column",
|
|
5578
|
-
opacity:
|
|
5620
|
+
opacity: u >= 0.1 ? 1 : 0,
|
|
5579
5621
|
transition: `opacity 0.5s ${E} 0.2s`
|
|
5580
5622
|
},
|
|
5581
5623
|
children: [
|
|
@@ -5664,15 +5706,15 @@ function wi({
|
|
|
5664
5706
|
}
|
|
5665
5707
|
}
|
|
5666
5708
|
),
|
|
5667
|
-
/* @__PURE__ */ e("div", { style: { flex: 1, padding: "8px 0 24px" }, children: s ? /* @__PURE__ */ e(oi, { items: s, revealPhase:
|
|
5709
|
+
/* @__PURE__ */ e("div", { style: { flex: 1, padding: "8px 0 24px" }, children: s ? /* @__PURE__ */ e(oi, { items: s, revealPhase: u }) : /* @__PURE__ */ e(
|
|
5668
5710
|
ri,
|
|
5669
5711
|
{
|
|
5670
5712
|
type: t,
|
|
5671
5713
|
name: n,
|
|
5672
5714
|
status: o,
|
|
5673
5715
|
context: a,
|
|
5674
|
-
internal:
|
|
5675
|
-
revealPhase:
|
|
5716
|
+
internal: h,
|
|
5717
|
+
revealPhase: u
|
|
5676
5718
|
}
|
|
5677
5719
|
) })
|
|
5678
5720
|
]
|
|
@@ -5695,28 +5737,28 @@ function Si({
|
|
|
5695
5737
|
fontFamily: s,
|
|
5696
5738
|
children: l
|
|
5697
5739
|
}) {
|
|
5698
|
-
const [
|
|
5699
|
-
|
|
5740
|
+
const [h] = I(20), [c] = I(!1), [p] = I(!0), [f] = I(0.45), [y] = I(3.3), [u, g] = I("compact"), [m, x] = I(0), [v, $] = I(null), [b, k] = I(null), [A, R] = I(0), L = (C) => {
|
|
5741
|
+
u === "compact" && ($(C), g("expanding"), x(0), setTimeout(() => x(1), 50), setTimeout(() => x(2), 800), setTimeout(() => x(3), 1200), setTimeout(() => x(4), 1600), setTimeout(() => x(5), 2e3), setTimeout(() => {
|
|
5700
5742
|
x(6), g("expanded");
|
|
5701
5743
|
}, 2400));
|
|
5702
|
-
},
|
|
5703
|
-
|
|
5744
|
+
}, z = () => {
|
|
5745
|
+
b ? (k(null), R(0)) : u === "expanded" && (g("collapsing"), x(0), $(null), setTimeout(() => {
|
|
5704
5746
|
g((C) => C === "collapsing" ? "compact" : C);
|
|
5705
5747
|
}, 1e3));
|
|
5706
|
-
},
|
|
5707
|
-
|
|
5748
|
+
}, F = (C) => {
|
|
5749
|
+
k(C), R(0);
|
|
5708
5750
|
};
|
|
5709
5751
|
J.useEffect(() => {
|
|
5710
|
-
if (!
|
|
5752
|
+
if (!b) return;
|
|
5711
5753
|
const C = performance.now(), ke = 1200, oe = () => {
|
|
5712
5754
|
const Ne = performance.now() - C, Te = Math.min(1, Ne / ke);
|
|
5713
|
-
|
|
5755
|
+
R(Te), Te < 1 && requestAnimationFrame(oe);
|
|
5714
5756
|
}, le = requestAnimationFrame(oe);
|
|
5715
5757
|
return () => cancelAnimationFrame(le);
|
|
5716
|
-
}, [
|
|
5758
|
+
}, [b]);
|
|
5717
5759
|
const X = () => {
|
|
5718
|
-
|
|
5719
|
-
},
|
|
5760
|
+
k(null), R(0);
|
|
5761
|
+
}, M = o.find((C) => C.name === v), te = M?.status ?? "online", ie = M?.dbSync ?? !0, D = M?.metrics, H = M?.alerts, ne = 330, Se = 340, $e = b ? 1.15 : 1, Q = b ? -(b.ex - ne) * 0.06 : 0, N = b ? -(b.ey - Se) * 0.06 : 0;
|
|
5720
5762
|
return /* @__PURE__ */ d("div", { className: "app", style: s ? { fontFamily: s } : void 0, children: [
|
|
5721
5763
|
/* @__PURE__ */ e(
|
|
5722
5764
|
"div",
|
|
@@ -5731,7 +5773,7 @@ function Si({
|
|
|
5731
5773
|
backgroundPosition: "center center",
|
|
5732
5774
|
backgroundRepeat: "no-repeat",
|
|
5733
5775
|
transition: "transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1)",
|
|
5734
|
-
transform: `translate(${Q}px, ${
|
|
5776
|
+
transform: `translate(${Q}px, ${N}px) scale(${$e})`,
|
|
5735
5777
|
willChange: "transform"
|
|
5736
5778
|
}
|
|
5737
5779
|
}
|
|
@@ -5748,32 +5790,32 @@ function Si({
|
|
|
5748
5790
|
{
|
|
5749
5791
|
className: "scene",
|
|
5750
5792
|
style: {
|
|
5751
|
-
cursor:
|
|
5793
|
+
cursor: u === "expanded" ? "zoom-out" : "default"
|
|
5752
5794
|
},
|
|
5753
|
-
onClick:
|
|
5795
|
+
onClick: z,
|
|
5754
5796
|
children: /* @__PURE__ */ e(
|
|
5755
5797
|
Wt,
|
|
5756
5798
|
{
|
|
5757
|
-
viewState:
|
|
5799
|
+
viewState: u,
|
|
5758
5800
|
animPhase: m,
|
|
5759
5801
|
selectedSystem: v,
|
|
5760
|
-
selectedComponent:
|
|
5802
|
+
selectedComponent: b,
|
|
5761
5803
|
drillAnimPhase: A,
|
|
5762
|
-
rotateY:
|
|
5804
|
+
rotateY: h,
|
|
5763
5805
|
autoRotateComponents: c,
|
|
5764
|
-
componentScale:
|
|
5806
|
+
componentScale: f,
|
|
5765
5807
|
drillZoom: y,
|
|
5766
5808
|
autoRotateCarousel: p,
|
|
5767
5809
|
carouselSpeed: a,
|
|
5768
5810
|
logoUrl: r,
|
|
5769
|
-
onSelectSystem:
|
|
5770
|
-
onBackgroundClick:
|
|
5771
|
-
onComponentClick:
|
|
5811
|
+
onSelectSystem: L,
|
|
5812
|
+
onBackgroundClick: z,
|
|
5813
|
+
onComponentClick: F,
|
|
5772
5814
|
onCloseDrill: X,
|
|
5773
5815
|
selectedSystemStatus: te,
|
|
5774
5816
|
selectedSystemDbSync: ie,
|
|
5775
|
-
selectedSystemMetrics:
|
|
5776
|
-
selectedSystemAlerts:
|
|
5817
|
+
selectedSystemMetrics: D,
|
|
5818
|
+
selectedSystemAlerts: H,
|
|
5777
5819
|
children: l
|
|
5778
5820
|
}
|
|
5779
5821
|
)
|
|
@@ -5791,16 +5833,16 @@ function bt(t) {
|
|
|
5791
5833
|
return t === "critical" || t === "offline" ? "#ff2255" : t === "warning" ? "#ff8c00" : "#00e5ff";
|
|
5792
5834
|
}
|
|
5793
5835
|
function me(t, n, o) {
|
|
5794
|
-
const i = t === "online" ? "online" : t, r = bt(t), a = o?.cpuLoad ?? 50, s = o?.memLoad ?? 60, l = i === "critical" || i === "warning" && a > 80 ? i : "online",
|
|
5836
|
+
const i = t === "online" ? "online" : t, r = bt(t), a = o?.cpuLoad ?? 50, s = o?.memLoad ?? 60, l = i === "critical" || i === "warning" && a > 80 ? i : "online", h = i === "warning" && s > 85 ? "warning" : i === "critical" ? "critical" : "online", c = i === "critical" && n === "APP-03" ? "critical" : "online", p = i === "offline" ? "offline" : "online";
|
|
5795
5837
|
return [
|
|
5796
5838
|
{ id: "cpu-0", label: "CPU-0", status: l, detail: i === "critical" ? "Core overload" : i === "warning" ? "Load spike" : void 0, element: /* @__PURE__ */ e(De, { color: r, label: "CPU-0", status: l, load: a }) },
|
|
5797
5839
|
{ id: "cpu-1", label: "CPU-1", status: "online", element: /* @__PURE__ */ e(De, { color: r, label: "CPU-1", status: "online", load: a * 0.7 }) },
|
|
5798
|
-
{ id: "heap-0", label: "HEAP-0", status:
|
|
5840
|
+
{ id: "heap-0", label: "HEAP-0", status: h, detail: h === "warning" ? "Memory heap usage" : h === "critical" ? "OOM risk" : void 0, element: /* @__PURE__ */ e(We, { color: "#8855ee", label: "HEAP-0", status: h, usedPercent: s }) },
|
|
5799
5841
|
{ id: "heap-1", label: "HEAP-1", status: "online", element: /* @__PURE__ */ e(We, { color: "#8855ee", label: "HEAP-1", status: "online", usedPercent: s * 0.85 }) },
|
|
5800
5842
|
{ id: "drive-1", label: "DRIVE-1", status: "online", element: /* @__PURE__ */ e(ye, { color: r, label: "DRIVE-1", status: "online", activity: !0 }) },
|
|
5801
5843
|
{ id: "drive-2", label: "DRIVE-2", status: "online", element: /* @__PURE__ */ e(ye, { color: r, label: "DRIVE-2", status: "online", activity: a > 30 }) },
|
|
5802
5844
|
{ id: "drive-3", label: "DRIVE-3", status: "online", element: /* @__PURE__ */ e(ye, { color: r, label: "DRIVE-3", status: "online", activity: a > 50 }) },
|
|
5803
|
-
{ id: "thread-pool", label: "THREAD-POOL", status: c, detail: c === "critical" ? "Thread exhaustion" : void 0, element: /* @__PURE__ */ e(
|
|
5845
|
+
{ id: "thread-pool", label: "THREAD-POOL", status: c, detail: c === "critical" ? "Thread exhaustion" : void 0, element: /* @__PURE__ */ e(O, { color: r, label: "THREAD-POOL", status: c }) },
|
|
5804
5846
|
{ id: "network", label: "NET", status: p, element: /* @__PURE__ */ e(ut, { color: r, label: "NET", status: p }) }
|
|
5805
5847
|
];
|
|
5806
5848
|
}
|
|
@@ -5820,16 +5862,16 @@ function xe(t) {
|
|
|
5820
5862
|
function gt(t, n, o) {
|
|
5821
5863
|
const i = t === "online" ? "online" : t, r = bt(t), a = i === "critical" || i === "offline" ? i : "online", s = i === "warning" ? "warning" : "online", l = i === "critical" ? "critical" : "online";
|
|
5822
5864
|
return [
|
|
5823
|
-
{ id: "port-1", label: "PORT-1", status: "online", element: /* @__PURE__ */ e(
|
|
5824
|
-
{ id: "port-2", label: "PORT-2", status: "online", element: /* @__PURE__ */ e(
|
|
5825
|
-
{ id: "port-3", label: "PORT-3", status: a, detail: i === "critical" ? "Gateway timeout" : i === "offline" ? "Unreachable" : void 0, element: /* @__PURE__ */ e(
|
|
5826
|
-
{ id: "port-4", label: "PORT-4", status: "online", element: /* @__PURE__ */ e(
|
|
5827
|
-
{ id: "port-5", label: "PORT-5", status: s, detail: s === "warning" ? "Latency spike" : void 0, element: /* @__PURE__ */ e(
|
|
5828
|
-
{ id: "port-6", label: "PORT-6", status: "online", element: /* @__PURE__ */ e(
|
|
5829
|
-
{ id: "port-7", label: "PORT-7", status: "online", element: /* @__PURE__ */ e(
|
|
5830
|
-
{ id: "port-8", label: "PORT-8", status: "online", element: /* @__PURE__ */ e(
|
|
5831
|
-
{ id: "http-worker", label: "HTTP-WORKER", status: l, detail: l === "critical" ? "Worker timeout" : void 0, element: /* @__PURE__ */ e(
|
|
5832
|
-
{ id: "https-worker", label: "HTTPS-WORKER", status: "online", element: /* @__PURE__ */ e(
|
|
5865
|
+
{ id: "port-1", label: "PORT-1", status: "online", element: /* @__PURE__ */ e(B, { color: r, label: "PORT-1", status: "online" }) },
|
|
5866
|
+
{ id: "port-2", label: "PORT-2", status: "online", element: /* @__PURE__ */ e(B, { color: r, label: "PORT-2", status: "online" }) },
|
|
5867
|
+
{ id: "port-3", label: "PORT-3", status: a, detail: i === "critical" ? "Gateway timeout" : i === "offline" ? "Unreachable" : void 0, element: /* @__PURE__ */ e(B, { color: r, label: "PORT-3", status: a }) },
|
|
5868
|
+
{ id: "port-4", label: "PORT-4", status: "online", element: /* @__PURE__ */ e(B, { color: r, label: "PORT-4", status: "online" }) },
|
|
5869
|
+
{ id: "port-5", label: "PORT-5", status: s, detail: s === "warning" ? "Latency spike" : void 0, element: /* @__PURE__ */ e(B, { color: r, label: "PORT-5", status: s }) },
|
|
5870
|
+
{ id: "port-6", label: "PORT-6", status: "online", element: /* @__PURE__ */ e(B, { color: r, label: "PORT-6", status: "online" }) },
|
|
5871
|
+
{ id: "port-7", label: "PORT-7", status: "online", element: /* @__PURE__ */ e(B, { color: r, label: "PORT-7", status: "online" }) },
|
|
5872
|
+
{ id: "port-8", label: "PORT-8", status: "online", element: /* @__PURE__ */ e(B, { color: r, label: "PORT-8", status: "online" }) },
|
|
5873
|
+
{ id: "http-worker", label: "HTTP-WORKER", status: l, detail: l === "critical" ? "Worker timeout" : void 0, element: /* @__PURE__ */ e(O, { color: r, label: "HTTP-WORKER", status: l }) },
|
|
5874
|
+
{ id: "https-worker", label: "HTTPS-WORKER", status: "online", element: /* @__PURE__ */ e(O, { color: "#bb55ff", label: "HTTPS-WORKER", status: "online" }) }
|
|
5833
5875
|
];
|
|
5834
5876
|
}
|
|
5835
5877
|
function yt(t) {
|
|
@@ -5845,13 +5887,13 @@ function yt(t) {
|
|
|
5845
5887
|
function ai(t, n, o) {
|
|
5846
5888
|
const i = t === "online" ? "online" : t, r = i === "critical" ? "critical" : "online", a = i === "critical" || i === "offline" ? i : i === "warning" ? "warning" : "online", s = i === "critical" ? "critical" : "online";
|
|
5847
5889
|
return [
|
|
5848
|
-
{ id: "inst-0", label: "INST-0", status: "online", element: /* @__PURE__ */ e(
|
|
5849
|
-
{ id: "inst-1", label: "INST-1", status: "online", element: /* @__PURE__ */ e(
|
|
5850
|
-
{ id: "inst-2", label: "INST-2", status: r, detail: r === "critical" ? "Instance unreachable" : void 0, element: /* @__PURE__ */ e(
|
|
5851
|
-
{ id: "queue-0", label: "QUEUE-0", status: a, detail: i === "critical" ? "Queue full" : i === "offline" ? "Unreachable" : i === "warning" ? "Queue depth warning" : void 0, element: /* @__PURE__ */ e(
|
|
5852
|
-
{ id: "worker-1", label: "WORKER-1", status: "online", element: /* @__PURE__ */ e(
|
|
5853
|
-
{ id: "worker-2", label: "WORKER-2", status: "online", element: /* @__PURE__ */ e(
|
|
5854
|
-
{ id: "worker-3", label: "WORKER-3", status: s, detail: s === "critical" ? "Worker timeout" : void 0, element: /* @__PURE__ */ e(
|
|
5890
|
+
{ id: "inst-0", label: "INST-0", status: "online", element: /* @__PURE__ */ e(B, { color: "#bb55ff", label: "INST-0", status: "online" }) },
|
|
5891
|
+
{ id: "inst-1", label: "INST-1", status: "online", element: /* @__PURE__ */ e(B, { color: "#bb55ff", label: "INST-1", status: "online" }) },
|
|
5892
|
+
{ id: "inst-2", label: "INST-2", status: r, detail: r === "critical" ? "Instance unreachable" : void 0, element: /* @__PURE__ */ e(B, { color: "#bb55ff", label: "INST-2", status: r }) },
|
|
5893
|
+
{ id: "queue-0", label: "QUEUE-0", status: a, detail: i === "critical" ? "Queue full" : i === "offline" ? "Unreachable" : i === "warning" ? "Queue depth warning" : void 0, element: /* @__PURE__ */ e(O, { color: "#bb55ff", label: "QUEUE-0", status: a }) },
|
|
5894
|
+
{ id: "worker-1", label: "WORKER-1", status: "online", element: /* @__PURE__ */ e(O, { color: "#bb55ff", label: "WORKER-1", status: "online" }) },
|
|
5895
|
+
{ id: "worker-2", label: "WORKER-2", status: "online", element: /* @__PURE__ */ e(O, { color: "#bb55ff", label: "WORKER-2", status: "online" }) },
|
|
5896
|
+
{ id: "worker-3", label: "WORKER-3", status: s, detail: s === "critical" ? "Worker timeout" : void 0, element: /* @__PURE__ */ e(O, { color: "#bb55ff", label: "WORKER-3", status: s }) }
|
|
5855
5897
|
];
|
|
5856
5898
|
}
|
|
5857
5899
|
function li(t) {
|
|
@@ -5865,13 +5907,13 @@ function li(t) {
|
|
|
5865
5907
|
];
|
|
5866
5908
|
}
|
|
5867
5909
|
function ze(t, n, o) {
|
|
5868
|
-
const i = t === "online" ? "online" : t, r = "#ff8c00", a = o?.capacity ?? 72, s = i === "critical" || i === "offline" ? i : i === "warning" ? "warning" : "online", l = i === "warning" && n === "DB-STB" ? "warning" : "online",
|
|
5910
|
+
const i = t === "online" ? "online" : t, r = "#ff8c00", a = o?.capacity ?? 72, s = i === "critical" || i === "offline" ? i : i === "warning" ? "warning" : "online", l = i === "warning" && n === "DB-STB" ? "warning" : "online", h = i === "critical" ? "critical" : "online", c = i === "warning" ? "warning" : "online";
|
|
5869
5911
|
return [
|
|
5870
5912
|
{ id: "platter-0", label: "PLATTER-0", status: "online", element: /* @__PURE__ */ e(Ie, { color: r, label: "PLATTER-0", status: "online", capacityPercent: a }) },
|
|
5871
5913
|
{ id: "platter-1", label: "PLATTER-1", status: s, detail: i === "critical" ? "I/O failure" : i === "offline" ? "Connection lost" : i === "warning" ? "Slow queries" : void 0, element: /* @__PURE__ */ e(Ie, { color: r, label: "PLATTER-1", status: s, capacityPercent: a }) },
|
|
5872
5914
|
{ id: "platter-2", label: "PLATTER-2", status: l, detail: l === "warning" ? "Replication lag" : void 0, element: /* @__PURE__ */ e(Ie, { color: r, label: "PLATTER-2", status: l, capacityPercent: a }) },
|
|
5873
|
-
{ id: "conn-pool", label: "CONN-POOL", status:
|
|
5874
|
-
{ id: "query-cache", label: "QUERY-CACHE", status: c, detail: c === "warning" ? "Cache miss rate" : void 0, element: /* @__PURE__ */ e(
|
|
5915
|
+
{ id: "conn-pool", label: "CONN-POOL", status: h, detail: h === "critical" ? "Pool exhausted" : void 0, element: /* @__PURE__ */ e(O, { color: r, label: "CONN-POOL", status: h }) },
|
|
5916
|
+
{ id: "query-cache", label: "QUERY-CACHE", status: c, detail: c === "warning" ? "Cache miss rate" : void 0, element: /* @__PURE__ */ e(O, { color: "#00ff88", label: "QUERY-CACHE", status: c }) }
|
|
5875
5917
|
];
|
|
5876
5918
|
}
|
|
5877
5919
|
function Me(t) {
|
|
@@ -5941,7 +5983,7 @@ const si = [
|
|
|
5941
5983
|
{ from: [495, 390], to: [200, 520], visibleAtPhase: 5, color: "#ff8c00" }
|
|
5942
5984
|
];
|
|
5943
5985
|
function di({ config: t }) {
|
|
5944
|
-
const n = J.useContext(ae), o = n?.rotateY ?? 20, i = n?.autoRotateComponents ?? !0, { wdStatus: r, msStatus: a, srv1Status: s, srv2Status: l, srv3Status:
|
|
5986
|
+
const n = J.useContext(ae), o = n?.rotateY ?? 20, i = n?.autoRotateComponents ?? !0, { wdStatus: r, msStatus: a, srv1Status: s, srv2Status: l, srv3Status: h, pdbStatus: c, sdbStatus: p, dbSync: f } = t;
|
|
5945
5987
|
return /* @__PURE__ */ d(Ce, { children: [
|
|
5946
5988
|
/* @__PURE__ */ e(
|
|
5947
5989
|
T,
|
|
@@ -6102,9 +6144,9 @@ function di({ config: t }) {
|
|
|
6102
6144
|
componentInfo: {
|
|
6103
6145
|
type: "server",
|
|
6104
6146
|
name: "APP-03",
|
|
6105
|
-
status:
|
|
6147
|
+
status: h,
|
|
6106
6148
|
context: { cpuLoad: 45, memLoad: 63 },
|
|
6107
|
-
subComponents: me(
|
|
6149
|
+
subComponents: me(h, "APP-03", { cpuLoad: 45, memLoad: 63 }),
|
|
6108
6150
|
graphSeries: xe({ cpuLoad: 45, memLoad: 63 })
|
|
6109
6151
|
},
|
|
6110
6152
|
children: /* @__PURE__ */ e(
|
|
@@ -6112,7 +6154,7 @@ function di({ config: t }) {
|
|
|
6112
6154
|
{
|
|
6113
6155
|
rotateY: o,
|
|
6114
6156
|
autoRotate: i,
|
|
6115
|
-
status:
|
|
6157
|
+
status: h,
|
|
6116
6158
|
name: "APP-03",
|
|
6117
6159
|
cpuLoad: 45,
|
|
6118
6160
|
memLoad: 63,
|
|
@@ -6197,17 +6239,17 @@ function di({ config: t }) {
|
|
|
6197
6239
|
visibleAtPhase: 6,
|
|
6198
6240
|
fixedScale: 1,
|
|
6199
6241
|
bare: !0,
|
|
6200
|
-
children: /* @__PURE__ */ e(ct, { synced:
|
|
6242
|
+
children: /* @__PURE__ */ e(ct, { synced: f, latencyMs: f ? 8 : 342 })
|
|
6201
6243
|
}
|
|
6202
6244
|
),
|
|
6203
6245
|
/* @__PURE__ */ e(ci, { config: t })
|
|
6204
6246
|
] });
|
|
6205
6247
|
}
|
|
6206
6248
|
function ci({ config: t }) {
|
|
6207
|
-
const n = J.useContext(ae), { wdStatus: o, msStatus: i, srv1Status: r, srv2Status: a, srv3Status: s, pdbStatus: l, sdbStatus:
|
|
6249
|
+
const n = J.useContext(ae), { wdStatus: o, msStatus: i, srv1Status: r, srv2Status: a, srv3Status: s, pdbStatus: l, sdbStatus: h, dbSync: c } = t, p = n?.isSelected && n?.isExpandedPos;
|
|
6208
6250
|
return n?.isSelected ? /* @__PURE__ */ d("div", { style: { pointerEvents: "none" }, children: [
|
|
6209
6251
|
/* @__PURE__ */ e(
|
|
6210
|
-
|
|
6252
|
+
W,
|
|
6211
6253
|
{
|
|
6212
6254
|
ex: 220,
|
|
6213
6255
|
ey: 260,
|
|
@@ -6222,7 +6264,7 @@ function ci({ config: t }) {
|
|
|
6222
6264
|
}
|
|
6223
6265
|
),
|
|
6224
6266
|
/* @__PURE__ */ e(
|
|
6225
|
-
|
|
6267
|
+
W,
|
|
6226
6268
|
{
|
|
6227
6269
|
ex: 440,
|
|
6228
6270
|
ey: 260,
|
|
@@ -6237,7 +6279,7 @@ function ci({ config: t }) {
|
|
|
6237
6279
|
}
|
|
6238
6280
|
),
|
|
6239
6281
|
/* @__PURE__ */ e(
|
|
6240
|
-
|
|
6282
|
+
W,
|
|
6241
6283
|
{
|
|
6242
6284
|
ex: 165,
|
|
6243
6285
|
ey: 390,
|
|
@@ -6252,7 +6294,7 @@ function ci({ config: t }) {
|
|
|
6252
6294
|
}
|
|
6253
6295
|
),
|
|
6254
6296
|
/* @__PURE__ */ e(
|
|
6255
|
-
|
|
6297
|
+
W,
|
|
6256
6298
|
{
|
|
6257
6299
|
ex: 330,
|
|
6258
6300
|
ey: 390,
|
|
@@ -6267,7 +6309,7 @@ function ci({ config: t }) {
|
|
|
6267
6309
|
}
|
|
6268
6310
|
),
|
|
6269
6311
|
/* @__PURE__ */ e(
|
|
6270
|
-
|
|
6312
|
+
W,
|
|
6271
6313
|
{
|
|
6272
6314
|
ex: 495,
|
|
6273
6315
|
ey: 390,
|
|
@@ -6282,7 +6324,7 @@ function ci({ config: t }) {
|
|
|
6282
6324
|
}
|
|
6283
6325
|
),
|
|
6284
6326
|
/* @__PURE__ */ e(
|
|
6285
|
-
|
|
6327
|
+
W,
|
|
6286
6328
|
{
|
|
6287
6329
|
ex: 200,
|
|
6288
6330
|
ey: 520,
|
|
@@ -6297,22 +6339,22 @@ function ci({ config: t }) {
|
|
|
6297
6339
|
}
|
|
6298
6340
|
),
|
|
6299
6341
|
/* @__PURE__ */ e(
|
|
6300
|
-
|
|
6342
|
+
W,
|
|
6301
6343
|
{
|
|
6302
6344
|
ex: 460,
|
|
6303
6345
|
ey: 520,
|
|
6304
|
-
status:
|
|
6346
|
+
status: h,
|
|
6305
6347
|
title: "DB-STB",
|
|
6306
|
-
msg:
|
|
6348
|
+
msg: h === "critical" || h === "offline" ? "Sync failure." : "Replication lag.",
|
|
6307
6349
|
offsetX: 110,
|
|
6308
6350
|
offsetY: 30,
|
|
6309
6351
|
align: "right",
|
|
6310
6352
|
isVisible: !!p,
|
|
6311
|
-
internalRef:
|
|
6353
|
+
internalRef: h !== "online" ? "PLATTER-2" : void 0
|
|
6312
6354
|
}
|
|
6313
6355
|
),
|
|
6314
6356
|
!c && /* @__PURE__ */ e(
|
|
6315
|
-
|
|
6357
|
+
W,
|
|
6316
6358
|
{
|
|
6317
6359
|
ex: 330,
|
|
6318
6360
|
ey: 520,
|
|
@@ -6392,7 +6434,7 @@ const pi = [
|
|
|
6392
6434
|
{ from: [495, 390], to: [200, 520], visibleAtPhase: 5, color: "#ff8c00" }
|
|
6393
6435
|
];
|
|
6394
6436
|
function fi({ config: t }) {
|
|
6395
|
-
const n = J.useContext(ae), o = n?.rotateY ?? 20, i = n?.autoRotateComponents ?? !0, { dispStatus: r, srv1Status: a, srv2Status: s, srv3Status: l, pdbStatus:
|
|
6437
|
+
const n = J.useContext(ae), o = n?.rotateY ?? 20, i = n?.autoRotateComponents ?? !0, { dispStatus: r, srv1Status: a, srv2Status: s, srv3Status: l, pdbStatus: h, sdbStatus: c, dbSync: p } = t;
|
|
6396
6438
|
return /* @__PURE__ */ d(Ce, { children: [
|
|
6397
6439
|
/* @__PURE__ */ e(
|
|
6398
6440
|
T,
|
|
@@ -6552,9 +6594,9 @@ function fi({ config: t }) {
|
|
|
6552
6594
|
componentInfo: {
|
|
6553
6595
|
type: "database",
|
|
6554
6596
|
name: "DB-PRI",
|
|
6555
|
-
status:
|
|
6597
|
+
status: h,
|
|
6556
6598
|
context: { capacity: 72 },
|
|
6557
|
-
subComponents: ze(
|
|
6599
|
+
subComponents: ze(h, "DB-PRI", { capacity: 72 }),
|
|
6558
6600
|
graphSeries: Me({ capacity: 72 })
|
|
6559
6601
|
},
|
|
6560
6602
|
children: /* @__PURE__ */ e(
|
|
@@ -6562,7 +6604,7 @@ function fi({ config: t }) {
|
|
|
6562
6604
|
{
|
|
6563
6605
|
rotateY: -o,
|
|
6564
6606
|
autoRotate: i,
|
|
6565
|
-
status:
|
|
6607
|
+
status: h,
|
|
6566
6608
|
name: "DB-PRI",
|
|
6567
6609
|
capacity: 72,
|
|
6568
6610
|
connections: 284,
|
|
@@ -6621,10 +6663,10 @@ function fi({ config: t }) {
|
|
|
6621
6663
|
] });
|
|
6622
6664
|
}
|
|
6623
6665
|
function hi({ config: t }) {
|
|
6624
|
-
const n = J.useContext(ae), { dispStatus: o, srv1Status: i, srv2Status: r, srv3Status: a, pdbStatus: s, sdbStatus: l, dbSync:
|
|
6666
|
+
const n = J.useContext(ae), { dispStatus: o, srv1Status: i, srv2Status: r, srv3Status: a, pdbStatus: s, sdbStatus: l, dbSync: h } = t, c = n?.isSelected && n?.isExpandedPos;
|
|
6625
6667
|
return n?.isSelected ? /* @__PURE__ */ d("div", { style: { pointerEvents: "none" }, children: [
|
|
6626
6668
|
/* @__PURE__ */ e(
|
|
6627
|
-
|
|
6669
|
+
W,
|
|
6628
6670
|
{
|
|
6629
6671
|
ex: 330,
|
|
6630
6672
|
ey: 260,
|
|
@@ -6639,7 +6681,7 @@ function hi({ config: t }) {
|
|
|
6639
6681
|
}
|
|
6640
6682
|
),
|
|
6641
6683
|
/* @__PURE__ */ e(
|
|
6642
|
-
|
|
6684
|
+
W,
|
|
6643
6685
|
{
|
|
6644
6686
|
ex: 165,
|
|
6645
6687
|
ey: 390,
|
|
@@ -6654,7 +6696,7 @@ function hi({ config: t }) {
|
|
|
6654
6696
|
}
|
|
6655
6697
|
),
|
|
6656
6698
|
/* @__PURE__ */ e(
|
|
6657
|
-
|
|
6699
|
+
W,
|
|
6658
6700
|
{
|
|
6659
6701
|
ex: 330,
|
|
6660
6702
|
ey: 390,
|
|
@@ -6669,7 +6711,7 @@ function hi({ config: t }) {
|
|
|
6669
6711
|
}
|
|
6670
6712
|
),
|
|
6671
6713
|
/* @__PURE__ */ e(
|
|
6672
|
-
|
|
6714
|
+
W,
|
|
6673
6715
|
{
|
|
6674
6716
|
ex: 495,
|
|
6675
6717
|
ey: 390,
|
|
@@ -6684,7 +6726,7 @@ function hi({ config: t }) {
|
|
|
6684
6726
|
}
|
|
6685
6727
|
),
|
|
6686
6728
|
/* @__PURE__ */ e(
|
|
6687
|
-
|
|
6729
|
+
W,
|
|
6688
6730
|
{
|
|
6689
6731
|
ex: 200,
|
|
6690
6732
|
ey: 520,
|
|
@@ -6699,7 +6741,7 @@ function hi({ config: t }) {
|
|
|
6699
6741
|
}
|
|
6700
6742
|
),
|
|
6701
6743
|
/* @__PURE__ */ e(
|
|
6702
|
-
|
|
6744
|
+
W,
|
|
6703
6745
|
{
|
|
6704
6746
|
ex: 460,
|
|
6705
6747
|
ey: 520,
|
|
@@ -6713,8 +6755,8 @@ function hi({ config: t }) {
|
|
|
6713
6755
|
internalRef: l !== "online" ? "PLATTER-2" : void 0
|
|
6714
6756
|
}
|
|
6715
6757
|
),
|
|
6716
|
-
!
|
|
6717
|
-
|
|
6758
|
+
!h && /* @__PURE__ */ e(
|
|
6759
|
+
W,
|
|
6718
6760
|
{
|
|
6719
6761
|
ex: 330,
|
|
6720
6762
|
ey: 520,
|
|
@@ -6764,9 +6806,9 @@ export {
|
|
|
6764
6806
|
We as Memory3D,
|
|
6765
6807
|
Zt as MessageServer3D,
|
|
6766
6808
|
ut as NetworkBlock3D,
|
|
6767
|
-
|
|
6809
|
+
W as NodeCallout,
|
|
6768
6810
|
Ie as Platter3D,
|
|
6769
|
-
|
|
6811
|
+
B as Port3D,
|
|
6770
6812
|
Ri as SAPService,
|
|
6771
6813
|
si as SAP_CONNECTIONS,
|
|
6772
6814
|
w as STATUS_CFG,
|
|
@@ -6777,7 +6819,7 @@ export {
|
|
|
6777
6819
|
T as ServiceNode,
|
|
6778
6820
|
zt as SvgConnection,
|
|
6779
6821
|
ct as SyncBridge,
|
|
6780
|
-
|
|
6822
|
+
O as ThreadPool3D,
|
|
6781
6823
|
pt as WebDispatcher3D,
|
|
6782
6824
|
Ci as computeExchangeDialogAlerts,
|
|
6783
6825
|
Pi as computeExchangeDialogMetrics,
|