preparing for a conceptual refactoring...

This commit is contained in:
Relism
2026-03-28 14:11:12 +01:00
parent 7b996b552b
commit 2edd68b0aa
60 changed files with 3432 additions and 518 deletions
@@ -0,0 +1,168 @@
import { Handle, Position } from '@xyflow/react'
const METHOD_COLORS = {
GET: { bg: '#0d4429', color: '#4ade80' },
POST: { bg: '#172554', color: '#60a5fa' },
PUT: { bg: '#451a03', color: '#fb923c' },
PATCH: { bg: '#2e1065', color: '#c084fc' },
DELETE: { bg: '#450a0a', color: '#f87171' },
OPTIONS: { bg: '#1c1917', color: '#a8a29e' },
HEAD: { bg: '#1c1917', color: '#a8a29e' },
}
// Handles for LR layout: parent flows in from the LEFT, children exit to the RIGHT
const TARGET_HANDLE = <Handle type="target" position={Position.Left}
style={{ left: 0, top: '50%', transform: 'translateY(-50%)' }} />
const SOURCE_HANDLE = <Handle type="source" position={Position.Right}
style={{ right: 0, top: '50%', transform: 'translateY(-50%)' }} />
/**
* Unified handler node — three modes: ABSTRACT, CONCRETE, LAMBDA.
* Handles are Left (in) / Right (out) for Left-to-Right DAG layout.
*/
export default function HandlerNode({ data, selected }) {
// ── ABSTRACT ──────────────────────────────────────────────────────────
if (data.isAbstract) {
return (
<div style={{
background: 'rgba(239,68,68,0.05)',
border: selected ? '2px solid #60a5fa' : '1px solid #ef4444',
borderRadius: 8,
padding: '8px 14px',
width: 160,
fontFamily: 'system-ui, sans-serif',
boxSizing: 'border-box',
}}>
{TARGET_HANDLE}
{SOURCE_HANDLE}
<div style={{ fontSize: 9, color: '#ef4444', fontWeight: 700, letterSpacing: 0.5, marginBottom: 3 }}>
ABSTRACT
</div>
<div style={{ fontSize: 12, fontWeight: 600, color: '#e2e8f0', fontFamily: 'monospace' }}>
{data.name}
</div>
</div>
)
}
// ── LAMBDA ────────────────────────────────────────────────────────────
if (data.isLambda) {
const method = data.method || 'GET'
const path = data.path || '/'
const m = METHOD_COLORS[method] || METHOD_COLORS.OPTIONS
const pathHtml = path.replace(/\{([^}]+)\}/g, '<span style="color:#a78bfa">{$1}</span>')
return (
<div style={{
background: '#1a1d27',
border: selected ? '2px solid #60a5fa' : '1px solid #3b82f6',
borderRadius: 8,
padding: '10px 12px',
width: 230,
fontFamily: 'system-ui, sans-serif',
boxSizing: 'border-box',
}}>
{TARGET_HANDLE}
{SOURCE_HANDLE}
<div style={{ fontSize: 9, color: '#60a5fa', fontWeight: 700, letterSpacing: 0.5, marginBottom: 7 }}>
LAMBDA
</div>
<div style={{ display: 'flex', alignItems: 'center', gap: 6 }}>
<span style={{
background: m.bg, color: m.color,
fontSize: 9, fontWeight: 700, padding: '2px 5px',
borderRadius: 3, fontFamily: 'monospace', flexShrink: 0,
}}>
{method}
</span>
<span
style={{ fontSize: 10, fontFamily: 'monospace', color: '#8892a4' }}
dangerouslySetInnerHTML={{ __html: pathHtml }}
/>
</div>
{data.middleware?.length > 0 && (
<div style={{ display: 'flex', gap: 3, flexWrap: 'wrap', marginTop: 7 }}>
{data.middleware.map(mw => (
<span key={mw} style={{
background: '#1f1a0e', color: '#f6ad55',
fontSize: 8, fontWeight: 600, padding: '1px 4px',
borderRadius: 2, fontFamily: 'monospace',
}}>{mw}</span>
))}
</div>
)}
</div>
)
}
// ── CONCRETE ──────────────────────────────────────────────────────────
return (
<div style={{
background: '#1a1d27',
border: selected ? '2px solid #60a5fa' : '1px solid #3b82f6',
borderRadius: 8,
padding: '10px 12px',
width: 260,
fontFamily: 'system-ui, sans-serif',
boxSizing: 'border-box',
}}>
{TARGET_HANDLE}
{SOURCE_HANDLE}
{/* Header */}
<div style={{ marginBottom: 8 }}>
<div style={{ fontSize: 9, color: '#60a5fa', fontWeight: 700, letterSpacing: 0.5, marginBottom: 2 }}>
HANDLER
</div>
<div style={{ fontSize: 12, fontWeight: 700, color: '#e2e8f0', fontFamily: 'monospace' }}>
{data.name}
</div>
</div>
<div style={{ height: 1, background: '#2e3347', marginBottom: 8 }} />
{/* Routes */}
<div style={{ marginBottom: data.middleware?.length > 0 ? 8 : 0 }}>
{data.routes?.map((route, i) => {
const m = METHOD_COLORS[route.method] || METHOD_COLORS.OPTIONS
const pathHtml = (route.path || '/').replace(
/\{([^}]+)\}/g,
'<span style="color:#a78bfa">{$1}</span>'
)
return (
<div key={i} style={{
display: 'flex', alignItems: 'center', gap: 6,
marginBottom: i < data.routes.length - 1 ? 5 : 0,
}}>
<span style={{
background: m.bg, color: m.color,
fontSize: 8, fontWeight: 700, padding: '2px 5px',
borderRadius: 3, fontFamily: 'monospace', flexShrink: 0,
}}>
{route.method}
</span>
<span
style={{ fontSize: 10, fontFamily: 'monospace', color: '#8892a4' }}
dangerouslySetInnerHTML={{ __html: pathHtml }}
/>
</div>
)
})}
</div>
{/* Middleware */}
{data.middleware?.length > 0 && (
<div style={{ display: 'flex', gap: 3, flexWrap: 'wrap' }}>
{data.middleware.map(mw => (
<span key={mw} style={{
background: '#1f1a0e', color: '#f6ad55',
fontSize: 8, fontWeight: 600, padding: '1px 4px',
borderRadius: 2, fontFamily: 'monospace',
}}>{mw}</span>
))}
</div>
)}
</div>
)
}