Pre-this-commit, ~80 rgba() literals across 24 files were hardcoding alert-red, warn-amber, info-cyan, panel-dark, and white-text-with-alpha shades that bypassed the token cascade. Net effect in light mode: the .eml/SESSREC drawers, AttackerDetail verdict pills, MazeNET net-box headers, OPEN/REPLAY action buttons, threat-intel cards, and all the dim 'whitish' overlays stayed on their dark-mode hex values, producing the unreadable panels in the screenshots. Sweep maps each rgba colour family onto the existing token by alpha bucket — rgba(13,17,23,*) -> var(--panel), rgba(255,65,65,*) -> var(--alert)/-tint-10, rgba(255,170,0,*) and rgba(224,160,64,*) -> var(--warn)/-tint-10, rgba(0,200,255,*) -> var(--info)/-tint-10, rgba(255,255,255,*) -> var(--fg-N)/var(--matrix-tint-N) by alpha. VERDICT_TONE in AttackerDetail (MALICIOUS/SUSPICIOUS/BENIGN/ NO SIGNAL) was the worst offender — string literals '#ff4d4d'/'#ffae42'/'#5fd07a'/rgba(255,255,255,0.4) baked into inline JS styles. Now resolves at render time via var(--alert)/ var(--warn)/var(--ok)/var(--fg-4). New tokens in :root: - --bg-color (alias of --bg) — drawers used this name with #0d1117 fallback that fired in every browser because nothing defined --bg-color. Adding the alias makes drawers re-tone. - --info / --info-tint-10 / --info-tint-30 — REPLAY buttons and any future neutral-secondary use. - --ok — semantic alias for 'verified good' (matrix in dark, emerald in light) so BENIGN pills stay readable across themes. Login.css left intentionally — pre-auth surface, not themed.
92 lines
3.3 KiB
TypeScript
92 lines
3.3 KiB
TypeScript
import React from 'react';
|
|
import { Globe, GitMerge, ShieldAlert } from '../../icons';
|
|
import type { Net } from './types';
|
|
import type { ResizeHandle } from './useMazeInteraction';
|
|
|
|
interface Props {
|
|
net: Net;
|
|
selected: boolean;
|
|
dropTarget: boolean;
|
|
inactive: boolean;
|
|
deployed?: boolean;
|
|
onSelect?: (id: string) => void;
|
|
onHeaderMouseDown?: (id: string) => (e: React.MouseEvent) => void;
|
|
onResizeMouseDown?: (id: string, handle: ResizeHandle) => (e: React.MouseEvent) => void;
|
|
onContextMenu?: (e: React.MouseEvent) => void;
|
|
children?: React.ReactNode;
|
|
}
|
|
|
|
const NetBox: React.FC<Props> = ({
|
|
net, selected, dropTarget, inactive, deployed, onSelect, onHeaderMouseDown, onResizeMouseDown, onContextMenu, children,
|
|
}) => {
|
|
const classes = [
|
|
'maze-net-box',
|
|
net.kind === 'internet' ? 'internet' : '',
|
|
net.kind === 'dmz' ? 'dmz' : '',
|
|
selected ? 'selected' : '',
|
|
dropTarget ? 'drop-target' : '',
|
|
inactive ? 'inactive' : '',
|
|
deployed ? 'deployed' : '',
|
|
net.pending ? 'pending' : '',
|
|
].filter(Boolean).join(' ');
|
|
|
|
const Icon = net.kind === 'internet' ? Globe : net.kind === 'dmz' ? ShieldAlert : GitMerge;
|
|
const resizable = net.kind !== 'internet';
|
|
|
|
const handleBoxDown = (e: React.MouseEvent) => {
|
|
if (e.target !== e.currentTarget) return;
|
|
onSelect?.(net.id);
|
|
};
|
|
|
|
const handleHeadDown = (e: React.MouseEvent) => {
|
|
onSelect?.(net.id);
|
|
onHeaderMouseDown?.(net.id)(e);
|
|
};
|
|
|
|
return (
|
|
<div
|
|
className={classes}
|
|
style={{ left: net.x, top: net.y, width: net.w, height: net.h }}
|
|
onMouseDown={handleBoxDown}
|
|
onContextMenu={onContextMenu}
|
|
>
|
|
<div className="maze-net-box-head" onMouseDown={handleHeadDown}>
|
|
<div style={{ display: 'flex', gap: 8, alignItems: 'center' }}>
|
|
<Icon size={10} />
|
|
<span>{net.label}</span>
|
|
{inactive && !net.pending && (
|
|
<span className="chip-mini"
|
|
style={{ marginLeft: 4, borderColor: 'var(--border)', color: 'var(--fg-4)' }}>
|
|
INACTIVE
|
|
</span>
|
|
)}
|
|
{net.pending && (
|
|
<span className="chip-mini"
|
|
style={{ marginLeft: 4,
|
|
borderColor: 'var(--warn, #e0a040)',
|
|
color: 'var(--warn, #e0a040)' }}>
|
|
PENDING
|
|
</span>
|
|
)}
|
|
</div>
|
|
<span className="cidr">{net.cidr}</span>
|
|
</div>
|
|
{resizable && onResizeMouseDown && (
|
|
<>
|
|
<div className="net-resize net-resize-e" onMouseDown={onResizeMouseDown(net.id, 'e')} />
|
|
<div className="net-resize net-resize-w" onMouseDown={onResizeMouseDown(net.id, 'w')} />
|
|
<div className="net-resize net-resize-s" onMouseDown={onResizeMouseDown(net.id, 's')} />
|
|
<div className="net-resize net-resize-n" onMouseDown={onResizeMouseDown(net.id, 'n')} />
|
|
<div className="net-resize net-resize-se" onMouseDown={onResizeMouseDown(net.id, 'se')} />
|
|
<div className="net-resize net-resize-sw" onMouseDown={onResizeMouseDown(net.id, 'sw')} />
|
|
<div className="net-resize net-resize-ne" onMouseDown={onResizeMouseDown(net.id, 'ne')} />
|
|
<div className="net-resize net-resize-nw" onMouseDown={onResizeMouseDown(net.id, 'nw')} />
|
|
</>
|
|
)}
|
|
{children}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default React.memo(NetBox);
|