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.
217 lines
8.2 KiB
TypeScript
217 lines
8.2 KiB
TypeScript
import React, { useEffect, useRef, useState } from 'react';
|
|
import { X, Download, AlertTriangle, Paperclip } from '../icons';
|
|
import api from '../utils/api';
|
|
import { useEscapeKey } from '../hooks/useEscapeKey';
|
|
import { useFocusTrap } from '../hooks/useFocusTrap';
|
|
|
|
interface MailDrawerProps {
|
|
decky: string;
|
|
storedAs: string;
|
|
fields: Record<string, any>;
|
|
onClose: () => void;
|
|
}
|
|
|
|
interface AttachmentManifest {
|
|
filename?: string | null;
|
|
content_type?: string | null;
|
|
size?: number | null;
|
|
sha256?: string | null;
|
|
}
|
|
|
|
function parseAttachments(fields: Record<string, any>): AttachmentManifest[] {
|
|
const raw = fields.attachments_json;
|
|
if (typeof raw !== 'string' || !raw) return [];
|
|
try {
|
|
const parsed = JSON.parse(raw);
|
|
return Array.isArray(parsed) ? parsed : [];
|
|
} catch (err) {
|
|
console.error('mail: failed to parse attachments_json', err);
|
|
return [];
|
|
}
|
|
}
|
|
|
|
const Row: React.FC<{ label: string; value: React.ReactNode }> = ({ label, value }) => (
|
|
<div style={{ display: 'flex', gap: '12px', padding: '6px 0', borderBottom: '1px solid var(--matrix-tint-5)' }}>
|
|
<div style={{ minWidth: '140px', color: 'var(--dim-color)', fontSize: '0.75rem', textTransform: 'uppercase' }}>{label}</div>
|
|
<div style={{ flex: 1, fontSize: '0.85rem', wordBreak: 'break-all' }}>{value ?? <span style={{ opacity: 0.4 }}>—</span>}</div>
|
|
</div>
|
|
);
|
|
|
|
const MailDrawer: React.FC<MailDrawerProps> = ({ decky, storedAs, fields, onClose }) => {
|
|
const panelRef = useRef<HTMLDivElement | null>(null);
|
|
useEscapeKey(onClose, true);
|
|
useFocusTrap(panelRef, true);
|
|
useEffect(() => {
|
|
const prev = document.body.style.overflow;
|
|
document.body.style.overflow = 'hidden';
|
|
return () => { document.body.style.overflow = prev; };
|
|
}, []);
|
|
|
|
const [downloading, setDownloading] = useState(false);
|
|
const [error, setError] = useState<string | null>(null);
|
|
const attachments = parseAttachments(fields);
|
|
|
|
const handleDownload = async () => {
|
|
setDownloading(true);
|
|
setError(null);
|
|
try {
|
|
const res = await api.get(
|
|
`/artifacts/${encodeURIComponent(decky)}/${encodeURIComponent(storedAs)}?service=smtp`,
|
|
{ responseType: 'blob' },
|
|
);
|
|
const blobUrl = URL.createObjectURL(res.data);
|
|
const a = document.createElement('a');
|
|
a.href = blobUrl;
|
|
a.download = storedAs;
|
|
document.body.appendChild(a);
|
|
a.click();
|
|
document.body.removeChild(a);
|
|
URL.revokeObjectURL(blobUrl);
|
|
} catch (err: any) {
|
|
const status = err?.response?.status;
|
|
setError(
|
|
status === 403 ? 'Admin role required to download mail.' :
|
|
status === 404 ? 'Message not found on disk (may have been purged).' :
|
|
status === 400 ? 'Server rejected the request (invalid parameters).' :
|
|
'Download failed — see console.'
|
|
);
|
|
console.error('mail download failed', err);
|
|
} finally {
|
|
setDownloading(false);
|
|
}
|
|
};
|
|
|
|
const recipients = fields.to_hdr
|
|
|| (Array.isArray(fields.rcpts) ? fields.rcpts.join(', ') : null)
|
|
|| (typeof fields.rcpts === 'string' ? fields.rcpts : null);
|
|
|
|
return (
|
|
<div
|
|
onClick={onClose}
|
|
style={{
|
|
position: 'fixed', inset: 0,
|
|
backgroundColor: 'rgba(0,0,0,0.6)',
|
|
display: 'flex', justifyContent: 'flex-end',
|
|
zIndex: 1000,
|
|
}}
|
|
>
|
|
<div
|
|
ref={panelRef}
|
|
role="dialog"
|
|
aria-modal="true"
|
|
onClick={(e) => e.stopPropagation()}
|
|
style={{
|
|
width: 'min(620px, 100%)', height: '100%',
|
|
backgroundColor: 'var(--bg-color, #0d1117)',
|
|
borderLeft: '1px solid var(--border-color, #30363d)',
|
|
padding: '24px', overflowY: 'auto',
|
|
color: 'var(--text-color)',
|
|
}}
|
|
>
|
|
<div style={{ display: 'flex', justifyContent: 'space-between', alignItems: 'center', marginBottom: '16px' }}>
|
|
<div>
|
|
<div style={{ fontSize: '0.7rem', color: 'var(--dim-color)', letterSpacing: '0.1em' }}>
|
|
STORED MESSAGE · {decky}
|
|
</div>
|
|
<div style={{ fontSize: '1rem', fontWeight: 'bold', marginTop: '4px', wordBreak: 'break-all' }}>
|
|
{fields.subject || storedAs}
|
|
</div>
|
|
</div>
|
|
<button onClick={onClose} style={{ background: 'none', border: 'none', color: 'var(--text-color)', cursor: 'pointer' }}>
|
|
<X size={20} />
|
|
</button>
|
|
</div>
|
|
|
|
<div style={{
|
|
display: 'flex', alignItems: 'center', gap: '8px',
|
|
padding: '8px 12px', marginBottom: '16px',
|
|
border: '1px solid var(--warn)',
|
|
backgroundColor: 'var(--warn-tint-10)',
|
|
fontSize: '0.75rem', color: 'var(--warn)',
|
|
}}>
|
|
<AlertTriangle size={14} />
|
|
Attacker-controlled content. Phishing kits / malware likely.
|
|
</div>
|
|
|
|
<button
|
|
onClick={handleDownload}
|
|
disabled={downloading}
|
|
style={{
|
|
display: 'flex', alignItems: 'center', gap: '8px',
|
|
padding: '8px 14px', marginBottom: '20px',
|
|
border: '1px solid var(--text-color)',
|
|
background: 'transparent', color: 'var(--text-color)',
|
|
cursor: downloading ? 'wait' : 'pointer',
|
|
opacity: downloading ? 0.5 : 1,
|
|
}}
|
|
>
|
|
<Download size={14} /> {downloading ? 'DOWNLOADING…' : 'DOWNLOAD .EML'}
|
|
</button>
|
|
{error && (
|
|
<div style={{ color: '#ff5555', fontSize: '0.8rem', marginBottom: '16px' }}>{error}</div>
|
|
)}
|
|
|
|
<section style={{ marginBottom: '24px' }}>
|
|
<h3 style={{ fontSize: '0.8rem', letterSpacing: '0.1em', color: 'var(--dim-color)', marginBottom: '8px' }}>
|
|
HEADERS
|
|
</h3>
|
|
<Row label="Subject" value={fields.subject} />
|
|
<Row label="From" value={fields.from_hdr || fields.from_addr || fields.from} />
|
|
<Row label="To" value={recipients} />
|
|
<Row label="Date" value={fields.date_hdr || fields.date} />
|
|
<Row label="Message-ID" value={fields.message_id_hdr || fields.message_id} />
|
|
<Row label="Mail from" value={fields.mail_from} />
|
|
</section>
|
|
|
|
<section style={{ marginBottom: '24px' }}>
|
|
<h3 style={{ fontSize: '0.8rem', letterSpacing: '0.1em', color: 'var(--dim-color)', marginBottom: '8px' }}>
|
|
BODY
|
|
</h3>
|
|
<Row label="Size" value={fields.size ? `${fields.size} bytes` : null} />
|
|
<Row label="SHA-256" value={fields.sha256} />
|
|
<Row label="Truncated" value={fields.truncated ? 'yes (10 MB cap)' : 'no'} />
|
|
<Row label="Stored as" value={storedAs} />
|
|
</section>
|
|
|
|
{attachments.length > 0 && (
|
|
<section>
|
|
<h3 style={{ fontSize: '0.8rem', letterSpacing: '0.1em', color: 'var(--dim-color)', marginBottom: '8px' }}>
|
|
ATTACHMENTS ({attachments.length})
|
|
</h3>
|
|
<div style={{ display: 'flex', flexDirection: 'column', gap: '8px' }}>
|
|
{attachments.map((att, idx) => (
|
|
<div
|
|
key={idx}
|
|
style={{
|
|
padding: '8px 12px',
|
|
border: '1px solid var(--matrix-tint-5)',
|
|
background: 'var(--matrix-tint-5)',
|
|
fontSize: '0.8rem',
|
|
}}
|
|
>
|
|
<div style={{ display: 'flex', alignItems: 'center', gap: '8px', marginBottom: '4px' }}>
|
|
<Paperclip size={12} />
|
|
<span style={{ fontFamily: 'monospace', wordBreak: 'break-all' }}>
|
|
{att.filename || '(unnamed)'}
|
|
</span>
|
|
</div>
|
|
<div style={{ fontSize: '0.7rem', color: 'var(--dim-color)', fontFamily: 'monospace' }}>
|
|
{att.content_type ?? '?'} · {att.size != null ? `${att.size} B` : '? B'}
|
|
</div>
|
|
{att.sha256 && (
|
|
<div style={{ fontSize: '0.7rem', color: 'var(--dim-color)', fontFamily: 'monospace', wordBreak: 'break-all' }}>
|
|
{att.sha256}
|
|
</div>
|
|
)}
|
|
</div>
|
|
))}
|
|
</div>
|
|
</section>
|
|
)}
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default MailDrawer;
|