react-aiops 0.0.1
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/AIOPsDashboard.d.ts +46 -0
- package/dist/AIOPsDashboard.d.ts.map +1 -0
- package/dist/components/Carousel.d.ts +60 -0
- package/dist/components/Carousel.d.ts.map +1 -0
- package/dist/components/ComponentDialog.d.ts +10 -0
- package/dist/components/ComponentDialog.d.ts.map +1 -0
- package/dist/components/ComponentDrillView.d.ts +98 -0
- package/dist/components/ComponentDrillView.d.ts.map +1 -0
- package/dist/components/Database3D.d.ts +38 -0
- package/dist/components/Database3D.d.ts.map +1 -0
- package/dist/components/HistoricalGraphPanel.d.ts +61 -0
- package/dist/components/HistoricalGraphPanel.d.ts.map +1 -0
- package/dist/components/HoloBase.d.ts +41 -0
- package/dist/components/HoloBase.d.ts.map +1 -0
- package/dist/components/Human3D.d.ts +27 -0
- package/dist/components/Human3D.d.ts.map +1 -0
- package/dist/components/Internal3DComponents.d.ts +132 -0
- package/dist/components/Internal3DComponents.d.ts.map +1 -0
- package/dist/components/MessageServer3D.d.ts +44 -0
- package/dist/components/MessageServer3D.d.ts.map +1 -0
- package/dist/components/NodeCallout.d.ts +31 -0
- package/dist/components/NodeCallout.d.ts.map +1 -0
- package/dist/components/Server3D.d.ts +43 -0
- package/dist/components/Server3D.d.ts.map +1 -0
- package/dist/components/Service.d.ts +115 -0
- package/dist/components/Service.d.ts.map +1 -0
- package/dist/components/ServiceDialog.d.ts +33 -0
- package/dist/components/ServiceDialog.d.ts.map +1 -0
- package/dist/components/ServiceNode.d.ts +67 -0
- package/dist/components/ServiceNode.d.ts.map +1 -0
- package/dist/components/SvgConnection.d.ts +44 -0
- package/dist/components/SvgConnection.d.ts.map +1 -0
- package/dist/components/SyncBridge.d.ts +31 -0
- package/dist/components/SyncBridge.d.ts.map +1 -0
- package/dist/components/WebDispatcher3D.d.ts +40 -0
- package/dist/components/WebDispatcher3D.d.ts.map +1 -0
- package/dist/components/index.d.ts +73 -0
- package/dist/components/index.d.ts.map +1 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +6652 -0
- package/dist/services/ExchangeService.d.ts +54 -0
- package/dist/services/ExchangeService.d.ts.map +1 -0
- package/dist/services/SAPService.d.ts +56 -0
- package/dist/services/SAPService.d.ts.map +1 -0
- package/dist/services/index.d.ts +35 -0
- package/dist/services/index.d.ts.map +1 -0
- package/dist/services/sapSubComponents.d.ts +28 -0
- package/dist/services/sapSubComponents.d.ts.map +1 -0
- package/dist/theme.d.ts +76 -0
- package/dist/theme.d.ts.map +1 -0
- package/dist/types.d.ts +146 -0
- package/dist/types.d.ts.map +1 -0
- package/dist/vite.svg +1 -0
- package/package.json +51 -0
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { ComponentStatus } from '../theme';
|
|
2
|
+
/** Alias for {@link ComponentStatus} scoped to server components. */
|
|
3
|
+
export type ServerStatus = ComponentStatus;
|
|
4
|
+
/**
|
|
5
|
+
* Props for the {@link Server3D} component.
|
|
6
|
+
*
|
|
7
|
+
* @property rotateX - Rotation around the X axis in degrees (tilts top toward viewer).
|
|
8
|
+
* @property rotateY - Rotation around the Y axis in degrees.
|
|
9
|
+
* @property rotateZ - Rotation around the Z axis in degrees.
|
|
10
|
+
* @property scale - Uniform scale multiplier (default `1`).
|
|
11
|
+
* @property autoRotate - Continuously spin the tower on its Y axis.
|
|
12
|
+
* @property status - Current health status governing colour palette.
|
|
13
|
+
* @property name - Hostname label rendered on the front face.
|
|
14
|
+
* @property cpuLoad - CPU utilisation percentage (0–100).
|
|
15
|
+
* @property memLoad - Memory utilisation percentage (0–100).
|
|
16
|
+
*/
|
|
17
|
+
export interface Server3DProps {
|
|
18
|
+
/** Rotation around X axis in degrees (tilts top toward viewer) */
|
|
19
|
+
rotateX?: number;
|
|
20
|
+
/** Rotation around Y axis in degrees */
|
|
21
|
+
rotateY?: number;
|
|
22
|
+
/** Rotation around Z axis in degrees */
|
|
23
|
+
rotateZ?: number;
|
|
24
|
+
scale?: number;
|
|
25
|
+
autoRotate?: boolean;
|
|
26
|
+
status?: ServerStatus;
|
|
27
|
+
name?: string;
|
|
28
|
+
cpuLoad?: number;
|
|
29
|
+
memLoad?: number;
|
|
30
|
+
/** @internal Injected by FloatWrap — uses opaque face backgrounds. */
|
|
31
|
+
_compact?: boolean;
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* Renders a CSS-3D server tower with status-aware colouring, optional
|
|
35
|
+
* auto-rotation, and an ambient glow that reflects the current health state.
|
|
36
|
+
*
|
|
37
|
+
* @example
|
|
38
|
+
* ```tsx
|
|
39
|
+
* <Server3D status="warning" cpuLoad={85} memLoad={72} name="APP-03" />
|
|
40
|
+
* ```
|
|
41
|
+
*/
|
|
42
|
+
export default function Server3D({ rotateX, rotateY, rotateZ, scale, autoRotate, status, name, cpuLoad, memLoad, _compact, }: Server3DProps): import("react/jsx-runtime").JSX.Element;
|
|
43
|
+
//# sourceMappingURL=Server3D.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Server3D.d.ts","sourceRoot":"","sources":["../../src/components/Server3D.tsx"],"names":[],"mappings":"AAOA,OAAO,EAKH,KAAK,eAAe,EAEvB,MAAM,UAAU,CAAC;AASlB,qEAAqE;AACrE,MAAM,MAAM,YAAY,GAAG,eAAe,CAAC;AAE3C;;;;;;;;;;;;GAYG;AACH,MAAM,WAAW,aAAa;IAC1B,kEAAkE;IAClE,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,wCAAwC;IACxC,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,wCAAwC;IACxC,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,MAAM,CAAC,EAAE,YAAY,CAAC;IACtB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,sEAAsE;IACtE,QAAQ,CAAC,EAAE,OAAO,CAAC;CACtB;AA8pBD;;;;;;;;GAQG;AACH,MAAM,CAAC,OAAO,UAAU,QAAQ,CAAC,EAC7B,OAAa,EACb,OAAY,EACZ,OAAW,EACX,KAAS,EACT,UAAkB,EAClB,MAAiB,EACjB,IAAgB,EAChB,OAAY,EACZ,OAAY,EACZ,QAAQ,GACX,EAAE,aAAa,2CA4If"}
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { ComponentStatus } from '../theme';
|
|
3
|
+
import { SelectedComponent, ConnectionConfig, ViewState } from '../types';
|
|
4
|
+
/**
|
|
5
|
+
* Context value provided by {@link Service} to its children.
|
|
6
|
+
*
|
|
7
|
+
* Contains all the layout and interaction state that child components
|
|
8
|
+
* (like {@link ServiceNode}) need to position and render themselves.
|
|
9
|
+
*/
|
|
10
|
+
export interface ServiceContextValue {
|
|
11
|
+
/** Service display name. */
|
|
12
|
+
name: string;
|
|
13
|
+
/** Whether this service is currently selected (expanded or expanding). */
|
|
14
|
+
isSelected: boolean;
|
|
15
|
+
/** Whether nodes should render at their expanded topology positions. */
|
|
16
|
+
isExpandedPos: boolean;
|
|
17
|
+
/** Whether the service is in compact carousel mode. */
|
|
18
|
+
isCompact: boolean;
|
|
19
|
+
/** Current expansion animation phase (0–6). */
|
|
20
|
+
animPhase: number;
|
|
21
|
+
/** X centre of the compact carousel position (px). */
|
|
22
|
+
compactCx: number;
|
|
23
|
+
/** Y centre of the compact carousel position (px). */
|
|
24
|
+
compactCy: number;
|
|
25
|
+
/** Scale factor based on depth in the compact carousel. */
|
|
26
|
+
groupScale: number;
|
|
27
|
+
/** Effective scale for components (groupScale in compact, componentScale in expanded). */
|
|
28
|
+
effectiveScale: number;
|
|
29
|
+
/** CSS transition string to use for animations. */
|
|
30
|
+
transitionValue: string;
|
|
31
|
+
/** Current Y-axis rotation for 3D components (degrees). */
|
|
32
|
+
rotateY: number;
|
|
33
|
+
/** Whether 3D components should auto-rotate. */
|
|
34
|
+
autoRotateComponents: boolean;
|
|
35
|
+
/** Handler for component drill-down clicks. */
|
|
36
|
+
onComponentClick?: (info: SelectedComponent) => void;
|
|
37
|
+
/** Name of the currently drilled (selected) component, if any. */
|
|
38
|
+
selectedComponentName?: string | null;
|
|
39
|
+
/** Horizontal offset applied to expanded positions to center the layout in the container. */
|
|
40
|
+
expandedOffsetX: number;
|
|
41
|
+
}
|
|
42
|
+
/**
|
|
43
|
+
* React context for the current service's layout state.
|
|
44
|
+
* Consumed by {@link ServiceNode}, {@link NodeCallout}, etc.
|
|
45
|
+
*/
|
|
46
|
+
export declare const ServiceContext: React.Context<ServiceContextValue | null>;
|
|
47
|
+
export interface ServiceProps {
|
|
48
|
+
/** Display name of the service (e.g. "SAP HR"). */
|
|
49
|
+
name: string;
|
|
50
|
+
/**
|
|
51
|
+
* Overall health status of the service. Drives the compact-view
|
|
52
|
+
* warning badge colour and visibility.
|
|
53
|
+
*
|
|
54
|
+
* Typically computed from the statuses of all child components:
|
|
55
|
+
* - `"critical"` if any component is critical or offline
|
|
56
|
+
* - `"warning"` if any component has a warning
|
|
57
|
+
* - `"online"` otherwise
|
|
58
|
+
*/
|
|
59
|
+
status?: ComponentStatus;
|
|
60
|
+
/**
|
|
61
|
+
* SVG connection lines to draw between nodes when the service
|
|
62
|
+
* is expanded. Each connection defines start/end coordinates and
|
|
63
|
+
* the animation phase at which it appears.
|
|
64
|
+
*/
|
|
65
|
+
connections?: ConnectionConfig[];
|
|
66
|
+
/**
|
|
67
|
+
* Configuration for the holographic base platform.
|
|
68
|
+
* Defaults to `{ size: 90, color: "#00e5ff", widthRatio: 3 }`.
|
|
69
|
+
*/
|
|
70
|
+
baseConfig?: {
|
|
71
|
+
size?: number;
|
|
72
|
+
color?: string;
|
|
73
|
+
widthRatio?: number;
|
|
74
|
+
};
|
|
75
|
+
/** Child nodes (ServiceNode, NodeCallout, bare ServiceNode with SyncBridge, etc.). */
|
|
76
|
+
children: React.ReactNode;
|
|
77
|
+
/** @internal Carousel item index. */
|
|
78
|
+
_index?: number;
|
|
79
|
+
/** @internal Total number of services in the carousel. */
|
|
80
|
+
_totalSystems?: number;
|
|
81
|
+
/** @internal Current carousel rotation angle (radians). */
|
|
82
|
+
_carouselRotation?: number;
|
|
83
|
+
/** @internal Current view state. */
|
|
84
|
+
_viewState?: ViewState;
|
|
85
|
+
/** @internal Current animation phase (0–6). */
|
|
86
|
+
_animPhase?: number;
|
|
87
|
+
/** @internal Currently selected system name. */
|
|
88
|
+
_selectedSystem?: string | null;
|
|
89
|
+
/** @internal Currently selected component (for drill-zoom). */
|
|
90
|
+
_selectedComponent?: SelectedComponent | null;
|
|
91
|
+
/** @internal Y-axis rotation for 3D components. */
|
|
92
|
+
_rotateY?: number;
|
|
93
|
+
/** @internal Whether 3D components auto-rotate. */
|
|
94
|
+
_autoRotateComponents?: boolean;
|
|
95
|
+
/** @internal Component scale factor. */
|
|
96
|
+
_componentScale?: number;
|
|
97
|
+
/** @internal Drill zoom factor. */
|
|
98
|
+
_drillZoom?: number;
|
|
99
|
+
/** @internal Handler for selecting a system. */
|
|
100
|
+
_onSelectSystem?: (name: string) => void;
|
|
101
|
+
/** @internal Handler for component drill-down clicks. */
|
|
102
|
+
_onComponentClick?: (info: SelectedComponent) => void;
|
|
103
|
+
/** @internal Width of the carousel container (for centering). */
|
|
104
|
+
_containerWidth?: number;
|
|
105
|
+
}
|
|
106
|
+
/**
|
|
107
|
+
* Service container component.
|
|
108
|
+
*
|
|
109
|
+
* Renders the service wrapper (positioning, transitions, drill-zoom),
|
|
110
|
+
* the compact-view title and warning badge, SVG connection lines,
|
|
111
|
+
* the holographic base platform, and all child nodes via
|
|
112
|
+
* {@link ServiceContext}.
|
|
113
|
+
*/
|
|
114
|
+
export default function Service({ name, status, connections, baseConfig, children, _index: carouselIndex, _totalSystems: totalSystems, _carouselRotation: carouselRotation, _viewState: viewState, _animPhase: animPhase, _selectedSystem: selectedSystem, _selectedComponent: selectedComponent, _rotateY: rotateY, _autoRotateComponents: autoRotateComponents, _componentScale: componentScale, _drillZoom: drillZoomProp, _onSelectSystem: onSelectSystem, _onComponentClick: onComponentClick, _containerWidth: containerWidth, }: ServiceProps): import("react/jsx-runtime").JSX.Element;
|
|
115
|
+
//# sourceMappingURL=Service.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Service.d.ts","sourceRoot":"","sources":["../../src/components/Service.tsx"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { ComponentStatus } from '../theme';
|
|
2
|
+
export interface ServiceDialogMetric {
|
|
3
|
+
label: string;
|
|
4
|
+
value: string;
|
|
5
|
+
color: string;
|
|
6
|
+
}
|
|
7
|
+
export interface ServiceDialogAlert {
|
|
8
|
+
level: "info" | "warning" | "critical";
|
|
9
|
+
message: string;
|
|
10
|
+
}
|
|
11
|
+
export interface ServiceDialogProps {
|
|
12
|
+
/** Display name of the service (e.g. "SAP HR", "Exchange"). */
|
|
13
|
+
name: string;
|
|
14
|
+
/** Overall health status of the service. */
|
|
15
|
+
status: ComponentStatus;
|
|
16
|
+
/** Whether primary and standby databases are in sync. */
|
|
17
|
+
dbSync?: boolean;
|
|
18
|
+
/** Whether the dialog is visible. Controls opacity and slide-in transform. */
|
|
19
|
+
visible: boolean;
|
|
20
|
+
/** Service-level KPI metrics. Falls back to status-derived defaults. */
|
|
21
|
+
metrics?: ServiceDialogMetric[];
|
|
22
|
+
/** System alerts. Falls back to status-derived defaults. */
|
|
23
|
+
alerts?: ServiceDialogAlert[];
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* Service statistics panel.
|
|
27
|
+
*
|
|
28
|
+
* Positioned absolutely in the top-right of the scene. Renders
|
|
29
|
+
* KPI metrics and alert summaries. Data can be injected via props
|
|
30
|
+
* or derived from the service status.
|
|
31
|
+
*/
|
|
32
|
+
export default function ServiceDialog({ name, status, dbSync, visible, metrics, alerts, }: ServiceDialogProps): import("react/jsx-runtime").JSX.Element;
|
|
33
|
+
//# sourceMappingURL=ServiceDialog.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ServiceDialog.d.ts","sourceRoot":"","sources":["../../src/components/ServiceDialog.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;GAoBG;AAEH,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,UAAU,CAAC;AAEhD,MAAM,WAAW,mBAAmB;IAChC,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;CACjB;AAED,MAAM,WAAW,kBAAkB;IAC/B,KAAK,EAAE,MAAM,GAAG,SAAS,GAAG,UAAU,CAAC;IACvC,OAAO,EAAE,MAAM,CAAC;CACnB;AAED,MAAM,WAAW,kBAAkB;IAC/B,+DAA+D;IAC/D,IAAI,EAAE,MAAM,CAAC;IACb,4CAA4C;IAC5C,MAAM,EAAE,eAAe,CAAC;IACxB,yDAAyD;IACzD,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,8EAA8E;IAC9E,OAAO,EAAE,OAAO,CAAC;IACjB,wEAAwE;IACxE,OAAO,CAAC,EAAE,mBAAmB,EAAE,CAAC;IAChC,4DAA4D;IAC5D,MAAM,CAAC,EAAE,kBAAkB,EAAE,CAAC;CACjC;AAWD;;;;;;GAMG;AACH,MAAM,CAAC,OAAO,UAAU,aAAa,CAAC,EAClC,IAAI,EACJ,MAAM,EACN,MAAa,EACb,OAAO,EACP,OAAO,EACP,MAAM,GACT,EAAE,kBAAkB,2CA8JpB"}
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { SelectedComponent } from '../types';
|
|
3
|
+
export interface ServiceNodeProps {
|
|
4
|
+
/** X position in the expanded topology layout (pixels from left of scene). */
|
|
5
|
+
ex: number;
|
|
6
|
+
/** Y position in the expanded topology layout (pixels from top of scene). */
|
|
7
|
+
ey: number;
|
|
8
|
+
/**
|
|
9
|
+
* Offset from the service's compact center position.
|
|
10
|
+
* Controls where this node sits within the compact carousel cluster.
|
|
11
|
+
*/
|
|
12
|
+
compactOffset: {
|
|
13
|
+
x: number;
|
|
14
|
+
y: number;
|
|
15
|
+
};
|
|
16
|
+
/** CSS z-index for stacking order. Higher tiers should have higher values. */
|
|
17
|
+
zIndex: number;
|
|
18
|
+
/** The child 3D component to render. */
|
|
19
|
+
children: React.ReactNode;
|
|
20
|
+
/** Primary holographic color for the scan line and labels. */
|
|
21
|
+
color?: string;
|
|
22
|
+
/** Upper label text (e.g. "APP-01", "WEB DISP"). */
|
|
23
|
+
label?: string;
|
|
24
|
+
/** Lower sub-label text (e.g. "SERVER", "HTTP LAYER"). */
|
|
25
|
+
subLabel?: string;
|
|
26
|
+
/** CSS animation-delay for the floating animation. Offsets nodes so they don't bob in unison. */
|
|
27
|
+
delay?: string;
|
|
28
|
+
/**
|
|
29
|
+
* Component identity for the drill-down click handler.
|
|
30
|
+
* When provided, the node becomes clickable in expanded view and opens
|
|
31
|
+
* the {@link ComponentDialog} on click.
|
|
32
|
+
*
|
|
33
|
+
* `ex` and `ey` are automatically populated from this node's position
|
|
34
|
+
* if not specified in the object.
|
|
35
|
+
*/
|
|
36
|
+
componentInfo?: Omit<SelectedComponent, "ex" | "ey"> & {
|
|
37
|
+
ex?: number;
|
|
38
|
+
ey?: number;
|
|
39
|
+
};
|
|
40
|
+
/**
|
|
41
|
+
* The expansion animation phase (0–6) at which this node becomes visible.
|
|
42
|
+
* The node fades in when `animPhase >= visibleAtPhase`. Defaults to `0`
|
|
43
|
+
* (immediately visible when expanding).
|
|
44
|
+
*/
|
|
45
|
+
visibleAtPhase?: number;
|
|
46
|
+
/**
|
|
47
|
+
* When set, overrides the dynamic compact/expanded scale calculation with
|
|
48
|
+
* a fixed value. Useful for nodes like `SyncBridge` that should not scale
|
|
49
|
+
* with the depth-based compact sizing.
|
|
50
|
+
*/
|
|
51
|
+
fixedScale?: number;
|
|
52
|
+
/**
|
|
53
|
+
* When `true`, skips the FloatWrap (floating animation, scan line, labels,
|
|
54
|
+
* hover effect). The child is rendered directly inside the positioning
|
|
55
|
+
* container. Use for non-hardware elements like `SyncBridge`.
|
|
56
|
+
*/
|
|
57
|
+
bare?: boolean;
|
|
58
|
+
}
|
|
59
|
+
/**
|
|
60
|
+
* Positioned node in a service topology.
|
|
61
|
+
*
|
|
62
|
+
* Reads the current {@link ServiceContext} to determine whether to render
|
|
63
|
+
* at the compact carousel position or the expanded topology position,
|
|
64
|
+
* which scale to apply, and whether labels should be visible.
|
|
65
|
+
*/
|
|
66
|
+
export default function ServiceNode({ ex, ey, compactOffset, zIndex, children, color, label, subLabel, delay, componentInfo, visibleAtPhase, fixedScale, bare, }: ServiceNodeProps): import("react/jsx-runtime").JSX.Element;
|
|
67
|
+
//# sourceMappingURL=ServiceNode.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ServiceNode.d.ts","sourceRoot":"","sources":["../../src/components/ServiceNode.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAuCG;AAEH,OAAO,KAA+B,MAAM,OAAO,CAAC;AAGpD,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,UAAU,CAAC;AAElD,MAAM,WAAW,gBAAgB;IAC7B,8EAA8E;IAC9E,EAAE,EAAE,MAAM,CAAC;IACX,6EAA6E;IAC7E,EAAE,EAAE,MAAM,CAAC;IACX;;;OAGG;IACH,aAAa,EAAE;QAAE,CAAC,EAAE,MAAM,CAAC;QAAC,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;IACxC,8EAA8E;IAC9E,MAAM,EAAE,MAAM,CAAC;IACf,wCAAwC;IACxC,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAI1B,8DAA8D;IAC9D,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,oDAAoD;IACpD,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,0DAA0D;IAC1D,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,iGAAiG;IACjG,KAAK,CAAC,EAAE,MAAM,CAAC;IACf;;;;;;;OAOG;IACH,aAAa,CAAC,EAAE,IAAI,CAAC,iBAAiB,EAAE,IAAI,GAAG,IAAI,CAAC,GAAG;QACnD,EAAE,CAAC,EAAE,MAAM,CAAC;QACZ,EAAE,CAAC,EAAE,MAAM,CAAC;KACf,CAAC;IAIF;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB;;;;OAIG;IACH,IAAI,CAAC,EAAE,OAAO,CAAC;CAClB;AAED;;;;;;GAMG;AACH,MAAM,CAAC,OAAO,UAAU,WAAW,CAAC,EAChC,EAAE,EACF,EAAE,EACF,aAAa,EACb,MAAM,EACN,QAAQ,EACR,KAAiB,EACjB,KAAK,EACL,QAAQ,EACR,KAAY,EACZ,aAAa,EACb,cAAkB,EAClB,UAAU,EACV,IAAY,GACf,EAAE,gBAAgB,2CAmFlB"}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @module SvgConnection
|
|
3
|
+
*
|
|
4
|
+
* Renders an animated SVG connection line between two points in the service
|
|
5
|
+
* topology. Used to visualise data-flow connections between infrastructure
|
|
6
|
+
* nodes (e.g. dispatcher → server, server → database).
|
|
7
|
+
*
|
|
8
|
+
* Features a glowing background line, animated dashed cable, and a
|
|
9
|
+
* traveling particle dot for a data-pulse effect.
|
|
10
|
+
*
|
|
11
|
+
* @example
|
|
12
|
+
* ```tsx
|
|
13
|
+
* <svg style={{ position: "absolute", width: 660, height: 600, pointerEvents: "none" }}>
|
|
14
|
+
* <SvgConnection x1={330} y1={80} x2={220} y2={220} show={true} />
|
|
15
|
+
* <SvgConnection x1={220} y1={220} x2={165} y2={350} show={true} color="#ff8c00" />
|
|
16
|
+
* </svg>
|
|
17
|
+
* ```
|
|
18
|
+
*/
|
|
19
|
+
export interface SvgConnectionProps {
|
|
20
|
+
/** X coordinate of the start point. */
|
|
21
|
+
x1: number;
|
|
22
|
+
/** Y coordinate of the start point. */
|
|
23
|
+
y1: number;
|
|
24
|
+
/** X coordinate of the end point. */
|
|
25
|
+
x2: number;
|
|
26
|
+
/** Y coordinate of the end point. */
|
|
27
|
+
y2: number;
|
|
28
|
+
/** Whether the connection is visible. When `false`, stroke opacity is 0. */
|
|
29
|
+
show: boolean;
|
|
30
|
+
/** Stroke color. Defaults to `"#00e5ff"`. */
|
|
31
|
+
color?: string;
|
|
32
|
+
/** CSS animation duration for the dashed-line movement. Defaults to `"1.2s"`. */
|
|
33
|
+
duration?: string;
|
|
34
|
+
}
|
|
35
|
+
/**
|
|
36
|
+
* Animated SVG connection line between two topology nodes.
|
|
37
|
+
*
|
|
38
|
+
* Must be rendered inside an `<svg>` element. The parent SVG should be
|
|
39
|
+
* absolutely positioned over the topology scene.
|
|
40
|
+
*/
|
|
41
|
+
export default function SvgConnection({ x1, y1, x2, y2, show, color, dur, }: Omit<SvgConnectionProps, "duration"> & {
|
|
42
|
+
dur?: string;
|
|
43
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
44
|
+
//# sourceMappingURL=SvgConnection.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SvgConnection.d.ts","sourceRoot":"","sources":["../../src/components/SvgConnection.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;GAiBG;AAEH,MAAM,WAAW,kBAAkB;IAC/B,uCAAuC;IACvC,EAAE,EAAE,MAAM,CAAC;IACX,uCAAuC;IACvC,EAAE,EAAE,MAAM,CAAC;IACX,qCAAqC;IACrC,EAAE,EAAE,MAAM,CAAC;IACX,qCAAqC;IACrC,EAAE,EAAE,MAAM,CAAC;IACX,4EAA4E;IAC5E,IAAI,EAAE,OAAO,CAAC;IACd,6CAA6C;IAC7C,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,iFAAiF;IACjF,QAAQ,CAAC,EAAE,MAAM,CAAC;CACrB;AAED;;;;;GAKG;AACH,MAAM,CAAC,OAAO,UAAU,aAAa,CAAC,EAClC,EAAE,EACF,EAAE,EACF,EAAE,EACF,EAAE,EACF,IAAI,EACJ,KAAiB,EACjB,GAAU,GACb,EAAE,IAAI,CAAC,kBAAkB,EAAE,UAAU,CAAC,GAAG;IAAE,GAAG,CAAC,EAAE,MAAM,CAAA;CAAE,2CAyDzD"}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @module SyncBridge
|
|
3
|
+
*
|
|
4
|
+
* Displays a compact replication status bridge between two database
|
|
5
|
+
* instances (primary ↔ standby). Shows directional arrows, a pulsing
|
|
6
|
+
* sync line, current latency, and a SYNCED / LAG label.
|
|
7
|
+
*
|
|
8
|
+
* Place between two `Database3D` nodes within a `ServiceNode` to indicate
|
|
9
|
+
* database replication health.
|
|
10
|
+
*
|
|
11
|
+
* @example
|
|
12
|
+
* ```tsx
|
|
13
|
+
* <SyncBridge synced={true} latencyMs={8} />
|
|
14
|
+
* <SyncBridge synced={false} latencyMs={342} />
|
|
15
|
+
* ```
|
|
16
|
+
*/
|
|
17
|
+
export interface SyncBridgeProps {
|
|
18
|
+
/** Whether the databases are in sync. Drives color (green vs orange) and label. */
|
|
19
|
+
synced: boolean;
|
|
20
|
+
/** Current replication latency in milliseconds. */
|
|
21
|
+
latencyMs: number;
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* Database replication status bridge.
|
|
25
|
+
*
|
|
26
|
+
* Renders a horizontal indicator showing sync state, directional arrows,
|
|
27
|
+
* and latency. Uses green (#00ff88) when synced and orange (#ff8c00) when
|
|
28
|
+
* lagging, with a blink animation on the LAG state.
|
|
29
|
+
*/
|
|
30
|
+
export default function SyncBridge({ synced, latencyMs }: SyncBridgeProps): import("react/jsx-runtime").JSX.Element;
|
|
31
|
+
//# sourceMappingURL=SyncBridge.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SyncBridge.d.ts","sourceRoot":"","sources":["../../src/components/SyncBridge.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;GAeG;AAEH,MAAM,WAAW,eAAe;IAC9B,mFAAmF;IACnF,MAAM,EAAE,OAAO,CAAC;IAChB,mDAAmD;IACnD,SAAS,EAAE,MAAM,CAAC;CACnB;AAED;;;;;;GAMG;AACH,MAAM,CAAC,OAAO,UAAU,UAAU,CAAC,EAAE,MAAM,EAAE,SAAS,EAAE,EAAE,eAAe,2CA6BxE"}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { ComponentStatus } from '../theme';
|
|
2
|
+
/**
|
|
3
|
+
* Props for the {@link WebDispatcher3D} component.
|
|
4
|
+
*
|
|
5
|
+
* @property rotateX - Rotation around the X axis in degrees.
|
|
6
|
+
* @property rotateY - Rotation around the Y axis in degrees.
|
|
7
|
+
* @property rotateZ - Rotation around the Z axis in degrees.
|
|
8
|
+
* @property scale - Uniform scale multiplier (default `1`).
|
|
9
|
+
* @property autoRotate - Continuously spin the appliance on its Y axis.
|
|
10
|
+
* @property status - Current health status governing colour palette.
|
|
11
|
+
* @property name - Hostname label rendered on the front face.
|
|
12
|
+
* @property traffic - Traffic load percentage (0–100).
|
|
13
|
+
* @property activeRoutes - Number of active backend routes.
|
|
14
|
+
*/
|
|
15
|
+
export interface WebDispatcher3DProps {
|
|
16
|
+
rotateX?: number;
|
|
17
|
+
rotateY?: number;
|
|
18
|
+
rotateZ?: number;
|
|
19
|
+
scale?: number;
|
|
20
|
+
autoRotate?: boolean;
|
|
21
|
+
status?: ComponentStatus;
|
|
22
|
+
name?: string;
|
|
23
|
+
/** Traffic load 0-100 */
|
|
24
|
+
traffic?: number;
|
|
25
|
+
/** Number of active backend routes */
|
|
26
|
+
activeRoutes?: number;
|
|
27
|
+
/** @internal Injected by FloatWrap — uses opaque face backgrounds. */
|
|
28
|
+
_compact?: boolean;
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* Renders a CSS-3D web dispatcher appliance with eight network port LEDs,
|
|
32
|
+
* traffic and route metrics, status-aware colouring, and optional auto-rotation.
|
|
33
|
+
*
|
|
34
|
+
* @example
|
|
35
|
+
* ```tsx
|
|
36
|
+
* <WebDispatcher3D status="online" traffic={78} activeRoutes={12} />
|
|
37
|
+
* ```
|
|
38
|
+
*/
|
|
39
|
+
export default function WebDispatcher3D({ rotateX, rotateY, rotateZ, scale, autoRotate, status, name, traffic, activeRoutes, _compact, }: WebDispatcher3DProps): import("react/jsx-runtime").JSX.Element;
|
|
40
|
+
//# sourceMappingURL=WebDispatcher3D.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"WebDispatcher3D.d.ts","sourceRoot":"","sources":["../../src/components/WebDispatcher3D.tsx"],"names":[],"mappings":"AAOA,OAAO,EAKH,KAAK,eAAe,EAEvB,MAAM,UAAU,CAAC;AASlB;;;;;;;;;;;;GAYG;AACH,MAAM,WAAW,oBAAoB;IACjC,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,MAAM,CAAC,EAAE,eAAe,CAAC;IACzB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,yBAAyB;IACzB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,sCAAsC;IACtC,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,sEAAsE;IACtE,QAAQ,CAAC,EAAE,OAAO,CAAC;CACtB;AA8bD;;;;;;;;GAQG;AACH,MAAM,CAAC,OAAO,UAAU,eAAe,CAAC,EACpC,OAAa,EACb,OAAY,EACZ,OAAW,EACX,KAAS,EACT,UAAkB,EAClB,MAAiB,EACjB,IAAoB,EACpB,OAAY,EACZ,YAAiB,EACjB,QAAQ,GACX,EAAE,oBAAoB,2CA0ItB"}
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @module components
|
|
3
|
+
*
|
|
4
|
+
* Barrel export for all reusable AIOps Dashboard components.
|
|
5
|
+
*
|
|
6
|
+
* ## Architecture
|
|
7
|
+
*
|
|
8
|
+
* ```
|
|
9
|
+
* Carousel ← Grand container, positions services on an orbit
|
|
10
|
+
* └─ Service ← Service container (e.g. "SAP HR"), provides context
|
|
11
|
+
* ├─ ServiceNode ← Positioned + floating wrapper for 3D components
|
|
12
|
+
* │ ├─ Server3D ← 3D server tower
|
|
13
|
+
* │ ├─ Database3D ← 3D database cylinder
|
|
14
|
+
* │ ├─ WebDispatcher3D
|
|
15
|
+
* │ ├─ MessageServer3D
|
|
16
|
+
* │ └─ Human3D ← SVG user-group figure
|
|
17
|
+
* ├─ SvgConnection ← Animated dashed line (rendered by Service via connections prop)
|
|
18
|
+
* ├─ SyncBridge ← Database replication indicator (inside bare ServiceNode)
|
|
19
|
+
* ├─ NodeCallout ← Alert callout for unhealthy nodes
|
|
20
|
+
* └─ HoloBase ← Neon holographic base platform (rendered by Service)
|
|
21
|
+
*
|
|
22
|
+
* ServiceDialog ← Service-level statistics panel
|
|
23
|
+
* ComponentDialog ← Component drill-down with internal sub-components
|
|
24
|
+
* ├─ HistoricalGraphPanel ← Sparkline charts
|
|
25
|
+
* └─ Internal3DComponents ← CPU3D, Memory3D, DriveBay3D, etc.
|
|
26
|
+
* ```
|
|
27
|
+
*
|
|
28
|
+
* ## Quick start
|
|
29
|
+
*
|
|
30
|
+
* ```tsx
|
|
31
|
+
* import {
|
|
32
|
+
* Carousel,
|
|
33
|
+
* Service,
|
|
34
|
+
* ServiceNode,
|
|
35
|
+
* Server3D,
|
|
36
|
+
* Database3D,
|
|
37
|
+
* WebDispatcher3D,
|
|
38
|
+
* MessageServer3D,
|
|
39
|
+
* Human3D,
|
|
40
|
+
* SyncBridge,
|
|
41
|
+
* NodeCallout,
|
|
42
|
+
* ServiceDialog,
|
|
43
|
+
* ComponentDialog,
|
|
44
|
+
* } from './components';
|
|
45
|
+
* ```
|
|
46
|
+
*/
|
|
47
|
+
export { default as Carousel } from './Carousel';
|
|
48
|
+
export type { CarouselProps } from './Carousel';
|
|
49
|
+
export { default as Service, ServiceContext } from './Service';
|
|
50
|
+
export type { ServiceProps, ServiceContextValue } from './Service';
|
|
51
|
+
export { default as ServiceNode } from './ServiceNode';
|
|
52
|
+
export type { ServiceNodeProps } from './ServiceNode';
|
|
53
|
+
export { default as SvgConnection } from './SvgConnection';
|
|
54
|
+
export type { SvgConnectionProps } from './SvgConnection';
|
|
55
|
+
export { default as SyncBridge } from './SyncBridge';
|
|
56
|
+
export type { SyncBridgeProps } from './SyncBridge';
|
|
57
|
+
export { default as NodeCallout } from './NodeCallout';
|
|
58
|
+
export type { NodeCalloutProps } from './NodeCallout';
|
|
59
|
+
export { default as HoloBase } from './HoloBase';
|
|
60
|
+
export { default as Server3D } from './Server3D';
|
|
61
|
+
export { default as Database3D } from './Database3D';
|
|
62
|
+
export { default as WebDispatcher3D } from './WebDispatcher3D';
|
|
63
|
+
export { default as MessageServer3D } from './MessageServer3D';
|
|
64
|
+
export { default as Human3D } from './Human3D';
|
|
65
|
+
export { default as ServiceDialog } from './ServiceDialog';
|
|
66
|
+
export type { ServiceDialogProps, ServiceDialogMetric, ServiceDialogAlert } from './ServiceDialog';
|
|
67
|
+
export { default as ComponentDialog } from './ComponentDialog';
|
|
68
|
+
export type { ComponentDialogProps } from './ComponentDialog';
|
|
69
|
+
export { default as HistoricalGraphPanel } from './HistoricalGraphPanel';
|
|
70
|
+
export { default as ComponentDrillView } from './ComponentDrillView';
|
|
71
|
+
export type { ComponentDrillViewProps } from './ComponentDrillView';
|
|
72
|
+
export { CPU3D, Memory3D, DriveBay3D, NetworkBlock3D, ThreadPool3D, Platter3D, Port3D, } from './Internal3DComponents';
|
|
73
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6CG;AAGH,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,YAAY,CAAC;AACjD,YAAY,EAAE,aAAa,EAAE,MAAM,YAAY,CAAC;AAEhD,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,cAAc,EAAE,MAAM,WAAW,CAAC;AAC/D,YAAY,EAAE,YAAY,EAAE,mBAAmB,EAAE,MAAM,WAAW,CAAC;AAEnE,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,eAAe,CAAC;AACvD,YAAY,EAAE,gBAAgB,EAAE,MAAM,eAAe,CAAC;AAGtD,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAC3D,YAAY,EAAE,kBAAkB,EAAE,MAAM,iBAAiB,CAAC;AAE1D,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,cAAc,CAAC;AACrD,YAAY,EAAE,eAAe,EAAE,MAAM,cAAc,CAAC;AAEpD,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,eAAe,CAAC;AACvD,YAAY,EAAE,gBAAgB,EAAE,MAAM,eAAe,CAAC;AAGtD,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,YAAY,CAAC;AAGjD,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,YAAY,CAAC;AACjD,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,cAAc,CAAC;AACrD,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAC/D,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAC/D,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,WAAW,CAAC;AAG/C,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAC3D,YAAY,EAAE,kBAAkB,EAAE,mBAAmB,EAAE,kBAAkB,EAAE,MAAM,iBAAiB,CAAC;AAEnG,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAC/D,YAAY,EAAE,oBAAoB,EAAE,MAAM,mBAAmB,CAAC;AAG9D,OAAO,EAAE,OAAO,IAAI,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AACzE,OAAO,EAAE,OAAO,IAAI,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AACrE,YAAY,EAAE,uBAAuB,EAAE,MAAM,sBAAsB,CAAC;AAEpE,OAAO,EACH,KAAK,EACL,QAAQ,EACR,UAAU,EACV,cAAc,EACd,YAAY,EACZ,SAAS,EACT,MAAM,GACT,MAAM,wBAAwB,CAAC"}
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export * from './components';
|
|
2
|
+
export * from './services';
|
|
3
|
+
export * from './types';
|
|
4
|
+
export { STATUS_CFG, HOLO_CYAN, HOLO_BLUE, HOLO_SURFACE, HOLO_GLASS, makeFaceStyles, } from './theme';
|
|
5
|
+
export type { ComponentStatus, StatusCfg, FaceName, Base3DProps } from './theme';
|
|
6
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAC;AAC7B,cAAc,YAAY,CAAC;AAC3B,cAAc,SAAS,CAAC;AACxB,OAAO,EACH,UAAU,EACV,SAAS,EACT,SAAS,EACT,YAAY,EACZ,UAAU,EACV,cAAc,GACjB,MAAM,SAAS,CAAC;AACjB,YAAY,EAAE,eAAe,EAAE,SAAS,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC"}
|