995 lines
44 KiB
HTML
995 lines
44 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>State Machine Explorer - click.kamil.examples.statemachine.extended.config.ExtendedStateMachineConfig</title>
|
|
<!-- Popper and Tippy for tooltips -->
|
|
<script src="https://unpkg.com/@popperjs/core@2"></script>
|
|
<script src="https://unpkg.com/tippy.js@6"></script>
|
|
<link rel="stylesheet" href="https://unpkg.com/tippy.js@6/animations/scale.css"/>
|
|
<!-- SVG Pan & Zoom -->
|
|
<script src="https://cdn.jsdelivr.net/npm/svg-pan-zoom@3.6.1/dist/svg-pan-zoom.min.js"></script>
|
|
<!-- Google Fonts -->
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;900&family=JetBrains+Mono:wght@400;700&display=swap" rel="stylesheet">
|
|
<style>
|
|
:root {
|
|
--sidebar-bg: #ffffff;
|
|
--main-bg: #f8fafc;
|
|
--accent: #ef4444;
|
|
--primary: #3b82f6;
|
|
--text: #0f172a;
|
|
--text-muted: #64748b;
|
|
--border: #e2e8f0;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
display: flex;
|
|
height: 100vh;
|
|
font-family: 'Inter', -apple-system, sans-serif;
|
|
background: var(--main-bg);
|
|
color: var(--text);
|
|
overflow: hidden;
|
|
}
|
|
|
|
#sidebar {
|
|
width: 480px;
|
|
min-width: 350px;
|
|
max-width: 900px;
|
|
background: var(--sidebar-bg);
|
|
border-right: 2px solid var(--border);
|
|
display: flex;
|
|
flex-direction: column;
|
|
box-shadow: 10px 0 15px rgba(0,0,0,0.02);
|
|
z-index: 10;
|
|
overflow-x: hidden;
|
|
resize: horizontal;
|
|
position: relative;
|
|
transition: width 0.3s ease, min-width 0.3s ease, padding 0.3s ease;
|
|
}
|
|
|
|
#sidebar.collapsed {
|
|
width: 0 !important;
|
|
min-width: 0 !important;
|
|
border-right: none;
|
|
padding: 0;
|
|
overflow: hidden;
|
|
resize: none;
|
|
}
|
|
|
|
#toggle-sidebar {
|
|
position: absolute;
|
|
top: 20px;
|
|
left: 20px;
|
|
z-index: 50;
|
|
background: #fff;
|
|
border: 1px solid var(--border);
|
|
border-radius: 8px;
|
|
padding: 8px;
|
|
cursor: pointer;
|
|
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
transition: all 0.2s ease;
|
|
}
|
|
#toggle-sidebar:hover {
|
|
background: #f8fafc;
|
|
border-color: var(--primary);
|
|
}
|
|
#toggle-sidebar svg {
|
|
width: 20px;
|
|
height: 20px;
|
|
fill: none;
|
|
stroke: var(--text-muted);
|
|
stroke-width: 2;
|
|
stroke-linecap: round;
|
|
stroke-linejoin: round;
|
|
}
|
|
|
|
#sidebar::after {
|
|
content: '⋮';
|
|
position: absolute;
|
|
right: 2px; top: 50%;
|
|
transform: translateY(-50%);
|
|
color: var(--border);
|
|
font-size: 1.2rem;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.sidebar-header {
|
|
padding: 30px 30px 10px;
|
|
}
|
|
|
|
header h1 { font-weight: 900; font-size: 1.6rem; color: var(--text); margin: 0 0 5px 0; letter-spacing: -0.5px; }
|
|
header p { font-family: 'JetBrains Mono', monospace; font-size: 0.7rem; color: var(--text-muted); margin: 0 0 15px 0; opacity: 0.7; }
|
|
|
|
.tabs {
|
|
display: flex;
|
|
padding: 0 30px;
|
|
border-bottom: 1px solid var(--border);
|
|
gap: 20px;
|
|
}
|
|
|
|
.tab {
|
|
padding: 10px 0;
|
|
font-size: 0.85rem;
|
|
font-weight: 600;
|
|
color: var(--text-muted);
|
|
cursor: pointer;
|
|
position: relative;
|
|
transition: color 0.2s;
|
|
}
|
|
|
|
.tab:hover { color: var(--text); }
|
|
.tab.active { color: var(--primary); }
|
|
.tab.active::after {
|
|
content: '';
|
|
position: absolute;
|
|
bottom: -1px; left: 0; right: 0;
|
|
height: 2px;
|
|
background: var(--primary);
|
|
}
|
|
|
|
.tab-content {
|
|
flex-grow: 1;
|
|
padding: 25px 30px;
|
|
overflow-y: auto;
|
|
display: none;
|
|
}
|
|
|
|
.tab-content.active { display: block; }
|
|
|
|
.ep-card, .flow-card {
|
|
padding: 18px;
|
|
background: #fff;
|
|
border: 1px solid var(--border);
|
|
border-radius: 14px;
|
|
margin-bottom: 15px;
|
|
cursor: pointer;
|
|
transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
|
|
box-shadow: 0 1px 3px rgba(0,0,0,0.04);
|
|
position: relative;
|
|
word-break: break-all;
|
|
overflow-wrap: anywhere;
|
|
}
|
|
|
|
.ep-card:hover, .flow-card:hover {
|
|
border-color: var(--primary);
|
|
transform: translateX(5px);
|
|
box-shadow: 0 15px 30px -10px rgba(59, 130, 246, 0.15);
|
|
}
|
|
|
|
.ep-type {
|
|
font-size: 0.6rem;
|
|
font-weight: 900;
|
|
padding: 3px 8px;
|
|
border-radius: 6px;
|
|
display: inline-block;
|
|
margin-bottom: 10px;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.8px;
|
|
}
|
|
.type-rest { background: #eff6ff; color: #1d4ed8; }
|
|
.type-custom { background: #fef2f2; color: #b91c1c; }
|
|
.type-jms { background: #f5f3ff; color: #7c3aed; }
|
|
.type-sqs { background: #fff7ed; color: #ea580c; }
|
|
.type-sns { background: #fff1f2; color: #e11d48; }
|
|
.type-kafka { background: #fefce8; color: #854d0e; }
|
|
.type-rabbit { background: #f0fdf4; color: #166534; }
|
|
|
|
.ep-name, .flow-name { font-weight: 700; font-size: 0.95rem; margin-bottom: 6px; color: var(--text); }
|
|
.ep-fqn, .flow-desc { font-family: 'Inter', sans-serif; font-size: 0.75rem; color: var(--text-muted); opacity: 0.9; line-height: 1.4; }
|
|
|
|
#main { flex-grow: 1; position: relative; background: var(--main-bg); overflow: hidden; }
|
|
#svg-container {
|
|
position: absolute;
|
|
top: 0; left: 0; right: 0; bottom: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
svg {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: block;
|
|
}
|
|
|
|
/* SVG Interactivity Styles */
|
|
svg a { text-decoration: none !important; }
|
|
|
|
.active-path {
|
|
stroke: var(--accent) !important;
|
|
stroke-width: 2.5px !important;
|
|
filter: drop-shadow(0 0 8px rgba(239, 68, 68, 0.3));
|
|
transition: all 0.3s;
|
|
}
|
|
|
|
.active-path text, a.active-path text {
|
|
fill: #000 !important;
|
|
font-weight: 900 !important;
|
|
paint-order: stroke;
|
|
stroke: #fff;
|
|
stroke-width: 3.5px;
|
|
}
|
|
|
|
.dimmed {
|
|
opacity: 0.2 !important;
|
|
filter: grayscale(1);
|
|
transition: opacity 0.4s ease;
|
|
pointer-events: none;
|
|
}
|
|
|
|
/* Tippy Styling */
|
|
.tippy-box[data-theme~='modern'] {
|
|
background-color: #fff;
|
|
color: var(--text);
|
|
box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
|
|
border: 1px solid var(--border);
|
|
border-radius: 16px;
|
|
padding: 0;
|
|
max-width: 550px !important;
|
|
}
|
|
|
|
.tooltip-content {
|
|
padding: 20px;
|
|
max-width: 500px;
|
|
word-break: break-word;
|
|
overflow-wrap: anywhere;
|
|
}
|
|
|
|
.payload-box {
|
|
background: #0f172a;
|
|
color: #e2e8f0;
|
|
border-radius: 8px;
|
|
padding: 12px;
|
|
font-family: 'JetBrains Mono', monospace;
|
|
font-size: 0.75rem;
|
|
line-height: 1.5;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.payload-param {
|
|
margin-bottom: 4px;
|
|
}
|
|
.payload-param:last-child { margin-bottom: 0; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<div id="sidebar">
|
|
<div class="sidebar-header">
|
|
<header>
|
|
<h1>Explorer</h1>
|
|
<p>click.kamil.examples.statemachine.extended.config.ExtendedStateMachineConfig</p>
|
|
</header>
|
|
</div>
|
|
|
|
<div class="tabs">
|
|
<div class="tab active" data-tab="explorer">Explorer</div>
|
|
<div class="tab" data-tab="flows">Business Flows</div>
|
|
</div>
|
|
|
|
<div id="tab-explorer" class="tab-content active">
|
|
<div id="ep-list"></div>
|
|
</div>
|
|
|
|
<div id="tab-flows" class="tab-content">
|
|
<div id="flow-list"></div>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="main">
|
|
<button id="toggle-sidebar" aria-label="Toggle Sidebar" title="Toggle Sidebar">
|
|
<svg viewBox="0 0 24 24"><path d="M4 6h16M4 12h16M4 18h16"></path></svg>
|
|
</button>
|
|
<div id="svg-container">
|
|
<?xml version="1.0" encoding="us-ascii" standalone="no"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" contentStyleType="text/css" height="100%" preserveAspectRatio="xMidYMid meet" version="1.1" viewBox="0 0 382 335" width="100%" zoomAndPan="magnify"><defs/><g><ellipse cx="73.3333" cy="34.375" fill="#222222" rx="11.4583" ry="11.4583" style="stroke:#222222;stroke-width:1.1458333333333333;"/><rect fill="#FFFFFF" height="45.8333" rx="14.3229" ry="14.3229" style="stroke:#94A3B8;stroke-width:1.1458333333333333;" width="132.9167" x="6.875" y="114.5833"/><text fill="#000000" font-family="Inter" font-size="10.3125" font-weight="bold" lengthAdjust="spacing" textLength="121.4583" x="12.6042" y="141.3974">app.states.initialSTART</text><rect fill="#FFFFFF" height="45.8333" rx="14.3229" ry="14.3229" style="stroke:#94A3B8;stroke-width:1.1458333333333333;" width="57.2917" x="176.4583" y="13.75"/><text fill="#000000" font-family="Inter" font-size="10.3125" font-weight="bold" lengthAdjust="spacing" textLength="34.375" x="187.9167" y="40.5641">START</text><rect fill="#FFFFFF" height="45.8333" rx="14.3229" ry="14.3229" style="stroke:#94A3B8;stroke-width:1.1458333333333333;" width="76.7708" x="166.7188" y="114.5833"/><text fill="#000000" font-family="Inter" font-size="10.3125" font-weight="bold" lengthAdjust="spacing" textLength="65.3125" x="172.4479" y="141.3974">PROCESSING</text><rect fill="#FFFFFF" height="45.8333" rx="14.3229" ry="14.3229" style="stroke:#94A3B8;stroke-width:1.1458333333333333;" width="74.4792" x="111.7187" y="215.4167"/><text fill="#000000" font-family="Inter" font-size="10.3125" font-weight="bold" lengthAdjust="spacing" textLength="63.0208" x="117.4479" y="242.2307">COMPLETED</text><rect fill="#FFFFFF" height="45.8333" rx="14.3229" ry="14.3229" style="stroke:#94A3B8;stroke-width:1.1458333333333333;" width="72.1875" x="206.8229" y="215.4167"/><text fill="#000000" font-family="Inter" font-size="10.3125" font-weight="bold" lengthAdjust="spacing" textLength="60.7292" x="212.5521" y="242.2307">CANCELLED</text><ellipse cx="202.8125" cy="316.25" fill="none" rx="12.6042" ry="12.6042" style="stroke:#222222;stroke-width:1.1458333333333333;"/><ellipse cx="202.8125" cy="316.25" fill="#222222" rx="6.875" ry="6.875" style="stroke:#222222;stroke-width:1.1458333333333333;"/><polygon fill="#CBD5E1" points="73.3333,114.4272,77.9167,104.1147,73.3333,108.698,68.75,104.1147,73.3333,114.4272" style="stroke:#CBD5E1;stroke-width:1.1458333333333333;"/><path d="M73.3333,50.6951 C73.3333,66.8677 73.3333,87.9833 73.3333,107.5522 " fill="none" style="stroke:#CBD5E1;stroke-width:1.1458333333333333;"/><polygon fill="#1E90FF" points="166.231,120.9125,158.4531,112.7357,160.9368,118.7228,154.9497,121.2065,166.231,120.9125" style="stroke:#1E90FF;stroke-width:1.1458333333333333;"/><path d="M176.1667,42.5166 C154.4953,47.7202 126.2736,58.4499 112.2917,80.2083 C108.988,85.3495 108.988,88.8172 112.2917,93.9583 C115.5956,99.0999 135.9547,108.3903 159.8779,118.2849 " fill="none" style="stroke:#1E90FF;stroke-width:2.2916666666666665;"/><a href="#link_SUBMIT_EVENT" target="_self" title="#link_SUBMIT_EVENT" xlink:actuate="onRequest" xlink:href="#link_SUBMIT_EVENT" xlink:show="new" xlink:title="#link_SUBMIT_EVENT" xlink:type="simple"><text fill="#0000FF" font-family="JetBrains Mono" font-size="9.1667" lengthAdjust="spacing" text-decoration="underline" textLength="65.3125" x="113.4375" y="90.2165">SUBMIT_EVENT</text></a><polygon fill="#1E90FF" points="161.3841,215.379,170.4716,208.6879,164.2203,210.4012,162.507,204.1499,161.3841,215.379" style="stroke:#1E90FF;stroke-width:1.1458333333333333;"/><path d="M192.6436,160.5154 C183.3393,176.8455 174.0835,193.0903 164.7876,209.4056 " fill="none" style="stroke:#1E90FF;stroke-width:2.2916666666666665;"/><a href="#link_FINISH" target="_self" title="#link_FINISH" xlink:actuate="onRequest" xlink:href="#link_FINISH" xlink:show="new" xlink:title="#link_FINISH" xlink:type="simple"><text fill="#0000FF" font-family="JetBrains Mono" font-size="9.1667" lengthAdjust="spacing" text-decoration="underline" textLength="27.5" x="182.1875" y="191.0498">FINISH</text></a><polygon fill="#1E90FF" points="234.5483,215.379,235.133,204.109,232.4958,210.0302,226.5747,207.393,234.5483,215.379" style="stroke:#1E90FF;stroke-width:1.1458333333333333;"/><path d="M213.496,160.5154 C219.7622,176.8455 225.8248,192.6451 232.0853,208.9604 " fill="none" style="stroke:#1E90FF;stroke-width:2.2916666666666665;"/><a href="#link_CANCEL_EVENT" target="_self" title="#link_CANCEL_EVENT" xlink:actuate="onRequest" xlink:href="#link_CANCEL_EVENT" xlink:show="new" xlink:title="#link_CANCEL_EVENT" xlink:type="simple"><text fill="#0000FF" font-family="JetBrains Mono" font-size="9.1667" lengthAdjust="spacing" text-decoration="underline" textLength="68.75" x="226.875" y="191.0498">CANCEL_EVENT</text></a><polygon fill="#1E90FF" points="205.1042,114.5457,209.6875,104.2332,205.1042,108.8165,200.5208,104.2332,205.1042,114.5457" style="stroke:#1E90FF;stroke-width:1.1458333333333333;"/><path d="M205.1042,59.6821 C205.1042,76.0121 205.1042,91.3554 205.1042,107.6707 " fill="none" style="stroke:#1E90FF;stroke-width:2.2916666666666665;"/><a href="#link_REACTIVE_EVENT" target="_self" title="#link_REACTIVE_EVENT" xlink:actuate="onRequest" xlink:href="#link_REACTIVE_EVENT" xlink:show="new" xlink:title="#link_REACTIVE_EVENT" xlink:type="simple"><text fill="#0000FF" font-family="JetBrains Mono" font-size="9.1667" lengthAdjust="spacing" text-decoration="underline" textLength="74.4792" x="206.25" y="90.2165">REACTIVE_EVENT</text></a><polygon fill="#1E90FF" points="233.9512,46.0829,244.0846,51.0496,239.6764,46.2977,244.4283,41.8894,233.9512,46.0829" style="stroke:#1E90FF;stroke-width:1.1458333333333333;"/><path d="M233.9512,27.2505 C245.1046,26.832 254.375,29.9707 254.375,36.6667 C254.375,43.3626 251.9748,46.7591 240.8214,46.3406 " fill="none" style="stroke:#1E90FF;stroke-width:2.2916666666666665;"/><a href="#link_AUDIT_EVENT" target="_self" title="#link_AUDIT_EVENT" xlink:actuate="onRequest" xlink:href="#link_AUDIT_EVENT" xlink:show="new" xlink:title="#link_AUDIT_EVENT" xlink:type="simple"><text fill="#0000FF" font-family="JetBrains Mono" font-size="9.1667" lengthAdjust="spacing" text-decoration="underline" textLength="60.7292" x="255.5208" y="39.7998">AUDIT_EVENT</text></a><polygon fill="#1E90FF" points="243.8396,125.3691,255.1015,126.0932,249.2135,123.383,251.9237,117.4949,243.8396,125.3691" style="stroke:#1E90FF;stroke-width:1.1458333333333333;"/><path d="M233.751,45.2953 C251.312,51.5239 272.3991,62.3365 283.0208,80.2083 C295.2875,100.8478 275.5495,113.6494 250.2883,122.9857 " fill="none" style="stroke:#1E90FF;stroke-width:2.2916666666666665;"/><a href="#link_EXTERNAL_TRIGGER" target="_self" title="#link_EXTERNAL_TRIGGER" xlink:actuate="onRequest" xlink:href="#link_EXTERNAL_TRIGGER" xlink:show="new" xlink:title="#link_EXTERNAL_TRIGGER" xlink:type="simple"><text fill="#0000FF" font-family="JetBrains Mono" font-size="9.1667" lengthAdjust="spacing" text-decoration="underline" textLength="87.0833" x="286.4583" y="90.2165">EXTERNAL_TRIGGER</text></a><polygon fill="#CBD5E1" points="209.4602,303.5244,218.2975,296.5061,212.1129,298.4464,210.1726,292.2618,209.4602,303.5244" style="stroke:#CBD5E1;stroke-width:1.1458333333333333;"/><path d="M231.5317,261.2733 C224.3992,274.9268 218.6384,285.9546 212.6434,297.4308 " fill="none" style="stroke:#CBD5E1;stroke-width:1.1458333333333333;"/><polygon fill="#CBD5E1" points="193.8856,303.5244,191.7155,292.4499,190.5954,298.8342,184.2111,297.7141,193.8856,303.5244" style="stroke:#CBD5E1;stroke-width:1.1458333333333333;"/><path d="M164.2467,261.2733 C173.8246,274.9268 181.887,286.42 189.9374,297.8961 " fill="none" style="stroke:#CBD5E1;stroke-width:1.1458333333333333;"/><!--SRC=[dP9lRzem4CRV-rFSnBjfL6H_f59LI24rB5D8KP9Man12Xbo3HM97jZl6fdttEeIL1D0czPLzlyU-v-xiTwLYMS4WPplvR40NQ9XWHAFTOyaKCrA1a0B9cgS8M9Hc1odgbUAbuLBKM1jKACskHA8tN5Jt2WkPGVXD08PijScKV1Qf9tERRxlc1YikLOggPft-P_PfUVrAapLVRGHg3Ovb8obCo0e4NrYh0uZvBuJ-ty3iSeIbp5CBejfB2LJmiMV1bAKf5vdDzQTPuPgbSbln9vRhPkskKdBxQleDpL0nBZHCf92NZkrBkJvL3fsjbkaNT4x5PeD7AIqvE4wlMUIFBE1Yap2LsKTPQCoV29czdqEtEm1MbbVxEUihBhZXB8yJDqe88ViLkhEEG_kzqUX3DPcvlJ6DxZqQntuuXjjR_6cdALW-65J18duOJlnaGHzfc5Xq0xDP9xVUBG6QmNnE6WdFtRpxoJIW2RqxDnlveHz_RTdK2EhblwdTqAD1S2brBLteeob0Cx1cRnbOH5qlyH_f1Qks1Etm7tOrFtDo7-uklao3GsF_ndxezuH6eHiiaiWVZsdKiZeLuHHOKt9ybUfxsczAZb_WG5u0]--></g></svg>
|
|
</div>
|
|
</div>
|
|
|
|
<script id="metadata-json" type="application/json">
|
|
{
|
|
"name" : "click.kamil.examples.statemachine.extended.config.ExtendedStateMachineConfig",
|
|
"states" : [ {
|
|
"rawName" : "\"CANCELLED\"",
|
|
"fullIdentifier" : "CANCELLED"
|
|
}, {
|
|
"rawName" : "\"PROCESSING\"",
|
|
"fullIdentifier" : "PROCESSING"
|
|
}, {
|
|
"rawName" : "\"COMPLETED\"",
|
|
"fullIdentifier" : "COMPLETED"
|
|
}, {
|
|
"rawName" : "${app.states.initial:START}",
|
|
"fullIdentifier" : "${app.states.initial:START}"
|
|
}, {
|
|
"rawName" : "\"START\"",
|
|
"fullIdentifier" : "START"
|
|
} ],
|
|
"transitions" : [ {
|
|
"type" : "EXTERNAL",
|
|
"sourceStates" : [ {
|
|
"rawName" : "\"START\"",
|
|
"fullIdentifier" : "START"
|
|
} ],
|
|
"targetStates" : [ {
|
|
"rawName" : "\"PROCESSING\"",
|
|
"fullIdentifier" : "PROCESSING"
|
|
} ],
|
|
"event" : "SUBMIT_EVENT",
|
|
"guard" : null,
|
|
"actions" : [ ],
|
|
"order" : null
|
|
}, {
|
|
"type" : "EXTERNAL",
|
|
"sourceStates" : [ {
|
|
"rawName" : "\"PROCESSING\"",
|
|
"fullIdentifier" : "PROCESSING"
|
|
} ],
|
|
"targetStates" : [ {
|
|
"rawName" : "\"COMPLETED\"",
|
|
"fullIdentifier" : "COMPLETED"
|
|
} ],
|
|
"event" : "FINISH",
|
|
"guard" : null,
|
|
"actions" : [ ],
|
|
"order" : null
|
|
}, {
|
|
"type" : "EXTERNAL",
|
|
"sourceStates" : [ {
|
|
"rawName" : "\"PROCESSING\"",
|
|
"fullIdentifier" : "PROCESSING"
|
|
} ],
|
|
"targetStates" : [ {
|
|
"rawName" : "\"CANCELLED\"",
|
|
"fullIdentifier" : "CANCELLED"
|
|
} ],
|
|
"event" : "CANCEL_EVENT",
|
|
"guard" : null,
|
|
"actions" : [ ],
|
|
"order" : null
|
|
}, {
|
|
"type" : "EXTERNAL",
|
|
"sourceStates" : [ {
|
|
"rawName" : "\"START\"",
|
|
"fullIdentifier" : "START"
|
|
} ],
|
|
"targetStates" : [ {
|
|
"rawName" : "\"PROCESSING\"",
|
|
"fullIdentifier" : "PROCESSING"
|
|
} ],
|
|
"event" : "REACTIVE_EVENT",
|
|
"guard" : null,
|
|
"actions" : [ ],
|
|
"order" : null
|
|
}, {
|
|
"type" : "EXTERNAL",
|
|
"sourceStates" : [ {
|
|
"rawName" : "\"START\"",
|
|
"fullIdentifier" : "START"
|
|
} ],
|
|
"targetStates" : [ {
|
|
"rawName" : "\"START\"",
|
|
"fullIdentifier" : "START"
|
|
} ],
|
|
"event" : "AUDIT_EVENT",
|
|
"guard" : null,
|
|
"actions" : [ ],
|
|
"order" : null
|
|
}, {
|
|
"type" : "EXTERNAL",
|
|
"sourceStates" : [ {
|
|
"rawName" : "\"START\"",
|
|
"fullIdentifier" : "START"
|
|
} ],
|
|
"targetStates" : [ {
|
|
"rawName" : "\"PROCESSING\"",
|
|
"fullIdentifier" : "PROCESSING"
|
|
} ],
|
|
"event" : "EXTERNAL_TRIGGER",
|
|
"guard" : null,
|
|
"actions" : [ ],
|
|
"order" : null
|
|
} ],
|
|
"startStates" : [ "${app.states.initial:START}" ],
|
|
"endStates" : [ "CANCELLED", "COMPLETED" ],
|
|
"renderChoicesAsDiamonds" : true,
|
|
"flows" : [ ],
|
|
"metadata" : {
|
|
"triggers" : [ {
|
|
"event" : "FINISH",
|
|
"className" : "click.kamil.examples.statemachine.extended.web.OrderController",
|
|
"methodName" : "finishOrder",
|
|
"sourceModule" : null,
|
|
"stateMachineId" : null,
|
|
"lineNumber" : 34
|
|
}, {
|
|
"event" : "AUDIT_EVENT",
|
|
"className" : "click.kamil.examples.statemachine.extended.web.AuditInterceptor",
|
|
"methodName" : "preHandle",
|
|
"sourceModule" : null,
|
|
"stateMachineId" : null,
|
|
"lineNumber" : 16
|
|
}, {
|
|
"event" : "EXTERNAL_TRIGGER",
|
|
"className" : "click.kamil.examples.statemachine.extended.service.OrderService",
|
|
"methodName" : "processSubmit",
|
|
"sourceModule" : null,
|
|
"stateMachineId" : null,
|
|
"lineNumber" : 19
|
|
}, {
|
|
"event" : "SUBMIT_EVENT",
|
|
"className" : "click.kamil.examples.statemachine.extended.service.OrderService",
|
|
"methodName" : "processSubmit",
|
|
"sourceModule" : null,
|
|
"stateMachineId" : null,
|
|
"lineNumber" : 20
|
|
}, {
|
|
"event" : "CANCEL_EVENT",
|
|
"className" : "click.kamil.examples.statemachine.extended.service.OrderService",
|
|
"methodName" : "processCancel",
|
|
"sourceModule" : null,
|
|
"stateMachineId" : null,
|
|
"lineNumber" : 25
|
|
}, {
|
|
"event" : "[LIFECYCLE:RESTORE]",
|
|
"className" : "click.kamil.examples.statemachine.extended.service.OrderService",
|
|
"methodName" : "resumeOrder",
|
|
"sourceModule" : null,
|
|
"stateMachineId" : null,
|
|
"lineNumber" : 29
|
|
}, {
|
|
"event" : "REACTIVE_EVENT",
|
|
"className" : "click.kamil.examples.statemachine.extended.service.ReactiveOrderService",
|
|
"methodName" : "processReactive",
|
|
"sourceModule" : null,
|
|
"stateMachineId" : null,
|
|
"lineNumber" : 18
|
|
} ],
|
|
"entryPoints" : [ {
|
|
"type" : "REST",
|
|
"name" : "POST /api/orders/submit",
|
|
"className" : "click.kamil.examples.statemachine.extended.web.OrderController",
|
|
"methodName" : "submitOrder",
|
|
"metadata" : {
|
|
"path" : "/api/orders/submit",
|
|
"verb" : "POST"
|
|
},
|
|
"parameters" : [ ]
|
|
}, {
|
|
"type" : "REST",
|
|
"name" : "POST /api/orders/cancel",
|
|
"className" : "click.kamil.examples.statemachine.extended.web.OrderController",
|
|
"methodName" : "cancelOrder",
|
|
"metadata" : {
|
|
"path" : "/api/orders/cancel",
|
|
"verb" : "POST"
|
|
},
|
|
"parameters" : [ ]
|
|
}, {
|
|
"type" : "REST",
|
|
"name" : "POST /api/orders/finish",
|
|
"className" : "click.kamil.examples.statemachine.extended.web.OrderController",
|
|
"methodName" : "finishOrder",
|
|
"metadata" : {
|
|
"path" : "/api/orders/finish",
|
|
"verb" : "POST"
|
|
},
|
|
"parameters" : [ ]
|
|
}, {
|
|
"type" : "REST",
|
|
"name" : "POST /api/orders/resume",
|
|
"className" : "click.kamil.examples.statemachine.extended.web.OrderController",
|
|
"methodName" : "resumeOrder",
|
|
"metadata" : {
|
|
"path" : "/api/orders/resume",
|
|
"verb" : "POST"
|
|
},
|
|
"parameters" : [ {
|
|
"name" : "orderId",
|
|
"type" : "String",
|
|
"annotations" : [ ]
|
|
} ]
|
|
}, {
|
|
"type" : "REST",
|
|
"name" : "POST /api/orders/reactive",
|
|
"className" : "click.kamil.examples.statemachine.extended.web.OrderController",
|
|
"methodName" : "reactiveOrder",
|
|
"metadata" : {
|
|
"path" : "/api/orders/reactive",
|
|
"verb" : "POST"
|
|
},
|
|
"parameters" : [ {
|
|
"name" : "orderId",
|
|
"type" : "String",
|
|
"annotations" : [ ]
|
|
} ]
|
|
}, {
|
|
"type" : "CUSTOM",
|
|
"name" : "INTERCEPTOR: AuditInterceptor.preHandle",
|
|
"className" : "click.kamil.examples.statemachine.extended.web.AuditInterceptor",
|
|
"methodName" : "preHandle",
|
|
"metadata" : {
|
|
"interceptorType" : "Spring MVC Interceptor"
|
|
},
|
|
"parameters" : [ ]
|
|
} ],
|
|
"callChains" : [ {
|
|
"entryPoint" : {
|
|
"type" : "REST",
|
|
"name" : "POST /api/orders/submit",
|
|
"className" : "click.kamil.examples.statemachine.extended.web.OrderController",
|
|
"methodName" : "submitOrder",
|
|
"metadata" : {
|
|
"path" : "/api/orders/submit",
|
|
"verb" : "POST"
|
|
},
|
|
"parameters" : [ ]
|
|
},
|
|
"methodChain" : [ "click.kamil.examples.statemachine.extended.web.OrderController.submitOrder", "click.kamil.examples.statemachine.extended.service.OrderService.processSubmit" ],
|
|
"triggerPoint" : {
|
|
"event" : "EXTERNAL_TRIGGER",
|
|
"className" : "click.kamil.examples.statemachine.extended.service.OrderService",
|
|
"methodName" : "processSubmit",
|
|
"sourceModule" : null,
|
|
"stateMachineId" : null,
|
|
"lineNumber" : 19
|
|
}
|
|
}, {
|
|
"entryPoint" : {
|
|
"type" : "REST",
|
|
"name" : "POST /api/orders/submit",
|
|
"className" : "click.kamil.examples.statemachine.extended.web.OrderController",
|
|
"methodName" : "submitOrder",
|
|
"metadata" : {
|
|
"path" : "/api/orders/submit",
|
|
"verb" : "POST"
|
|
},
|
|
"parameters" : [ ]
|
|
},
|
|
"methodChain" : [ "click.kamil.examples.statemachine.extended.web.OrderController.submitOrder", "click.kamil.examples.statemachine.extended.service.OrderService.processSubmit" ],
|
|
"triggerPoint" : {
|
|
"event" : "SUBMIT_EVENT",
|
|
"className" : "click.kamil.examples.statemachine.extended.service.OrderService",
|
|
"methodName" : "processSubmit",
|
|
"sourceModule" : null,
|
|
"stateMachineId" : null,
|
|
"lineNumber" : 20
|
|
}
|
|
}, {
|
|
"entryPoint" : {
|
|
"type" : "REST",
|
|
"name" : "POST /api/orders/cancel",
|
|
"className" : "click.kamil.examples.statemachine.extended.web.OrderController",
|
|
"methodName" : "cancelOrder",
|
|
"metadata" : {
|
|
"path" : "/api/orders/cancel",
|
|
"verb" : "POST"
|
|
},
|
|
"parameters" : [ ]
|
|
},
|
|
"methodChain" : [ "click.kamil.examples.statemachine.extended.web.OrderController.cancelOrder", "click.kamil.examples.statemachine.extended.service.OrderService.processCancel" ],
|
|
"triggerPoint" : {
|
|
"event" : "CANCEL_EVENT",
|
|
"className" : "click.kamil.examples.statemachine.extended.service.OrderService",
|
|
"methodName" : "processCancel",
|
|
"sourceModule" : null,
|
|
"stateMachineId" : null,
|
|
"lineNumber" : 25
|
|
}
|
|
}, {
|
|
"entryPoint" : {
|
|
"type" : "REST",
|
|
"name" : "POST /api/orders/finish",
|
|
"className" : "click.kamil.examples.statemachine.extended.web.OrderController",
|
|
"methodName" : "finishOrder",
|
|
"metadata" : {
|
|
"path" : "/api/orders/finish",
|
|
"verb" : "POST"
|
|
},
|
|
"parameters" : [ ]
|
|
},
|
|
"methodChain" : [ "click.kamil.examples.statemachine.extended.web.OrderController.finishOrder" ],
|
|
"triggerPoint" : {
|
|
"event" : "FINISH",
|
|
"className" : "click.kamil.examples.statemachine.extended.web.OrderController",
|
|
"methodName" : "finishOrder",
|
|
"sourceModule" : null,
|
|
"stateMachineId" : null,
|
|
"lineNumber" : 34
|
|
}
|
|
}, {
|
|
"entryPoint" : {
|
|
"type" : "REST",
|
|
"name" : "POST /api/orders/resume",
|
|
"className" : "click.kamil.examples.statemachine.extended.web.OrderController",
|
|
"methodName" : "resumeOrder",
|
|
"metadata" : {
|
|
"path" : "/api/orders/resume",
|
|
"verb" : "POST"
|
|
},
|
|
"parameters" : [ {
|
|
"name" : "orderId",
|
|
"type" : "String",
|
|
"annotations" : [ ]
|
|
} ]
|
|
},
|
|
"methodChain" : [ "click.kamil.examples.statemachine.extended.web.OrderController.resumeOrder", "click.kamil.examples.statemachine.extended.service.OrderService.resumeOrder" ],
|
|
"triggerPoint" : {
|
|
"event" : "[LIFECYCLE:RESTORE]",
|
|
"className" : "click.kamil.examples.statemachine.extended.service.OrderService",
|
|
"methodName" : "resumeOrder",
|
|
"sourceModule" : null,
|
|
"stateMachineId" : null,
|
|
"lineNumber" : 29
|
|
}
|
|
}, {
|
|
"entryPoint" : {
|
|
"type" : "REST",
|
|
"name" : "POST /api/orders/reactive",
|
|
"className" : "click.kamil.examples.statemachine.extended.web.OrderController",
|
|
"methodName" : "reactiveOrder",
|
|
"metadata" : {
|
|
"path" : "/api/orders/reactive",
|
|
"verb" : "POST"
|
|
},
|
|
"parameters" : [ {
|
|
"name" : "orderId",
|
|
"type" : "String",
|
|
"annotations" : [ ]
|
|
} ]
|
|
},
|
|
"methodChain" : [ "click.kamil.examples.statemachine.extended.web.OrderController.reactiveOrder", "click.kamil.examples.statemachine.extended.service.ReactiveOrderService.processReactive" ],
|
|
"triggerPoint" : {
|
|
"event" : "REACTIVE_EVENT",
|
|
"className" : "click.kamil.examples.statemachine.extended.service.ReactiveOrderService",
|
|
"methodName" : "processReactive",
|
|
"sourceModule" : null,
|
|
"stateMachineId" : null,
|
|
"lineNumber" : 18
|
|
}
|
|
}, {
|
|
"entryPoint" : {
|
|
"type" : "CUSTOM",
|
|
"name" : "INTERCEPTOR: AuditInterceptor.preHandle",
|
|
"className" : "click.kamil.examples.statemachine.extended.web.AuditInterceptor",
|
|
"methodName" : "preHandle",
|
|
"metadata" : {
|
|
"interceptorType" : "Spring MVC Interceptor"
|
|
},
|
|
"parameters" : [ ]
|
|
},
|
|
"methodChain" : [ "click.kamil.examples.statemachine.extended.web.AuditInterceptor.preHandle" ],
|
|
"triggerPoint" : {
|
|
"event" : "AUDIT_EVENT",
|
|
"className" : "click.kamil.examples.statemachine.extended.web.AuditInterceptor",
|
|
"methodName" : "preHandle",
|
|
"sourceModule" : null,
|
|
"stateMachineId" : null,
|
|
"lineNumber" : 16
|
|
}
|
|
} ],
|
|
"properties" : {
|
|
"default" : {
|
|
"app.states.initial" : "INIT_STATE"
|
|
},
|
|
"prod" : {
|
|
"app.states.initial" : "PROD_INITIAL"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<script>
|
|
const metadata = JSON.parse(document.getElementById('metadata-json').textContent);
|
|
let panZoomInstance;
|
|
|
|
document.addEventListener('DOMContentLoaded', () => {
|
|
const svg = document.querySelector('#svg-container svg');
|
|
panZoomInstance = svgPanZoom(svg, { zoomEnabled: true, controlIconsEnabled: true, fit: true, center: true });
|
|
|
|
document.getElementById('toggle-sidebar').addEventListener('click', () => {
|
|
const sidebar = document.getElementById('sidebar');
|
|
sidebar.classList.toggle('collapsed');
|
|
|
|
// Re-center SVG pan-zoom after transition
|
|
setTimeout(() => {
|
|
if (panZoomInstance) {
|
|
panZoomInstance.resize();
|
|
panZoomInstance.center();
|
|
}
|
|
}, 300);
|
|
});
|
|
|
|
setupTabs();
|
|
populateSidebar();
|
|
populateFlows();
|
|
attachInteractivity();
|
|
});
|
|
|
|
function setupTabs() {
|
|
const flows = metadata.flows || [];
|
|
if (flows.length === 0) {
|
|
document.querySelector('.tabs').style.display = 'none';
|
|
document.querySelector('.tab-content[data-tab="flows"]')?.remove();
|
|
return;
|
|
}
|
|
|
|
document.querySelectorAll('.tab').forEach(tab => {
|
|
tab.addEventListener('click', () => {
|
|
document.querySelectorAll('.tab, .tab-content').forEach(el => el.classList.remove('active'));
|
|
tab.classList.add('active');
|
|
document.getElementById('tab-' + tab.dataset.tab).classList.add('active');
|
|
});
|
|
});
|
|
}
|
|
|
|
function populateSidebar() {
|
|
const list = document.getElementById('ep-list');
|
|
const entryPoints = metadata.metadata.entryPoints || [];
|
|
const machineEvents = new Set(metadata.transitions.map(t => t.event).filter(Boolean));
|
|
|
|
entryPoints.forEach(ep => {
|
|
// Quality Filter: Hide if it doesn't trigger a machine event
|
|
const chains = (metadata.metadata.callChains || []).filter(c =>
|
|
c.entryPoint.className === ep.className &&
|
|
c.entryPoint.methodName === ep.methodName &&
|
|
machineEvents.has(c.triggerPoint.event)
|
|
);
|
|
|
|
if (chains.length === 0) return;
|
|
|
|
const card = document.createElement('div');
|
|
card.className = 'ep-card';
|
|
card.innerHTML = `
|
|
<div class="ep-type type-${ep.type.toLowerCase()}">${ep.type}</div>
|
|
<div class="ep-name">${ep.name}</div>
|
|
<div class="ep-fqn">${ep.className}.${ep.methodName}</div>
|
|
`;
|
|
card.onmouseenter = () => highlightEntryPoint(ep);
|
|
card.onmouseleave = clearHighlights;
|
|
list.appendChild(card);
|
|
});
|
|
}
|
|
|
|
function populateFlows() {
|
|
const list = document.getElementById('flow-list');
|
|
const flows = metadata.flows || [];
|
|
|
|
if (flows.length === 0) {
|
|
list.innerHTML = '<p style="color:var(--text-muted); font-size:0.8rem; font-style:italic;">No business flows defined.</p>';
|
|
return;
|
|
}
|
|
|
|
flows.forEach(flow => {
|
|
const card = document.createElement('div');
|
|
card.className = 'flow-card';
|
|
card.innerHTML = `
|
|
<div class="flow-name">${flow.name}</div>
|
|
<div class="flow-desc">${flow.description}</div>
|
|
`;
|
|
card.onmouseenter = () => highlightFlow(flow);
|
|
card.onmouseleave = clearHighlights;
|
|
list.appendChild(card);
|
|
});
|
|
}
|
|
|
|
function highlightEntryPoint(ep) {
|
|
clearHighlights();
|
|
const machineEvents = new Set(metadata.transitions.map(t => t.event).filter(Boolean));
|
|
const chains = metadata.metadata.callChains || [];
|
|
const relevantEvents = chains
|
|
.filter(c => c.entryPoint.className === ep.className && c.entryPoint.methodName === ep.methodName && machineEvents.has(c.triggerPoint.event))
|
|
.map(c => c.triggerPoint.event);
|
|
|
|
if (relevantEvents.length === 0) return;
|
|
highlightEvents(relevantEvents);
|
|
}
|
|
|
|
function highlightFlow(flow) {
|
|
clearHighlights();
|
|
if (!flow.steps || flow.steps.length === 0) return;
|
|
highlightEvents(flow.steps);
|
|
}
|
|
|
|
function highlightEvents(steps) {
|
|
const svg = document.querySelector('#svg-container svg');
|
|
|
|
// Dim everything first
|
|
svg.querySelectorAll('path, rect, circle, ellipse, text, polygon').forEach(el => {
|
|
el.classList.add('dimmed');
|
|
});
|
|
|
|
steps.forEach(step => {
|
|
let linkId = "";
|
|
if (step.includes("->")) {
|
|
// Named Choice Branch: "SRC->TGT"
|
|
const parts = step.split("->");
|
|
linkId = "#link_anon_" + normalize(parts[0]) + "_" + normalize(parts[1]);
|
|
} else {
|
|
// Standard Event
|
|
linkId = "#link_" + normalize(step);
|
|
}
|
|
|
|
svg.querySelectorAll('a').forEach(link => {
|
|
const href = link.getAttribute('xlink:href') || link.getAttribute('href');
|
|
if (href === linkId) {
|
|
highlightLinkGroup(link);
|
|
}
|
|
});
|
|
});
|
|
|
|
// Un-dim all state nodes for context
|
|
svg.querySelectorAll('rect, circle, ellipse, polygon').forEach(el => {
|
|
const isChoice = el.tagName === 'polygon' && el.points?.numberOfItems === 4;
|
|
if (isChoice || ['rect', 'circle', 'ellipse'].includes(el.tagName)) {
|
|
el.classList.remove('dimmed');
|
|
let next = el.nextElementSibling;
|
|
while(next && next.tagName === 'text') {
|
|
next.classList.remove('dimmed');
|
|
next = next.nextElementSibling;
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
function highlightLinkGroup(link) {
|
|
link.classList.add('active-path');
|
|
link.querySelectorAll('*').forEach(child => child.classList.remove('dimmed'));
|
|
|
|
// Find path and polygon immediately before the <a> tag (interleaved)
|
|
let prev = link.previousElementSibling;
|
|
let foundPath = false;
|
|
let foundPolygon = false;
|
|
while (prev) {
|
|
if (prev.tagName === 'path' && !foundPath) {
|
|
prev.classList.remove('dimmed');
|
|
prev.classList.add('active-path');
|
|
foundPath = true;
|
|
} else if (prev.tagName === 'polygon' && !foundPolygon && prev.points?.numberOfItems !== 4) {
|
|
prev.classList.remove('dimmed');
|
|
prev.classList.add('active-path');
|
|
foundPolygon = true;
|
|
} else if (['rect', 'circle', 'ellipse'].includes(prev.tagName) ||
|
|
(prev.tagName === 'polygon' && prev.points?.numberOfItems === 4)) {
|
|
// Hit a state node, stop traversal
|
|
break;
|
|
}
|
|
if (foundPath && foundPolygon) break;
|
|
prev = prev.previousElementSibling;
|
|
}
|
|
}
|
|
|
|
function clearHighlights() {
|
|
document.querySelectorAll('.dimmed, .active-path').forEach(el => {
|
|
el.classList.remove('dimmed', 'active-path');
|
|
});
|
|
}
|
|
|
|
function attachInteractivity() {
|
|
const svg = document.querySelector('#svg-container svg');
|
|
const transitions = metadata.transitions || [];
|
|
|
|
svg.querySelectorAll('a').forEach(link => {
|
|
const href = link.getAttribute('xlink:href') || link.getAttribute('href');
|
|
if (!href || !href.startsWith('#link_')) return;
|
|
|
|
const linkId = href.replace('#link_', '');
|
|
const isAnon = linkId.startsWith('anon_');
|
|
|
|
let metaTrans = null;
|
|
if (isAnon) {
|
|
const parts = linkId.split('_'); // link_anon_SRC_TGT
|
|
const src = parts[2];
|
|
const tgt = parts[3];
|
|
metaTrans = transitions.find(t =>
|
|
!t.event &&
|
|
normalize(t.sourceStates[0].fullIdentifier) === src &&
|
|
normalize(t.targetStates[0].fullIdentifier) === tgt
|
|
);
|
|
} else {
|
|
metaTrans = transitions.find(t => normalize(t.event) === linkId);
|
|
}
|
|
|
|
if (metaTrans || isAnon) {
|
|
link.style.cursor = 'pointer';
|
|
const setupTippy = (el) => {
|
|
tippy(el, {
|
|
content: createTooltip(isAnon ? "Internal logic" : linkId, metaTrans),
|
|
allowHTML: true,
|
|
theme: 'modern',
|
|
interactive: true,
|
|
appendTo: document.body,
|
|
placement: 'right',
|
|
offset: [0, 20]
|
|
});
|
|
};
|
|
setupTippy(link);
|
|
let path = link.previousElementSibling;
|
|
while(path && path.tagName !== 'path') path = path.previousElementSibling;
|
|
if (path) {
|
|
path.style.cursor = 'pointer';
|
|
setupTippy(path);
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
function normalize(s) {
|
|
if (!s) return "";
|
|
return s.replace(/[^a-zA-Z0-9]/g, '_');
|
|
}
|
|
|
|
function createTooltip(name, trans) {
|
|
const chains = (metadata.metadata.callChains || []).filter(c => normalize(c.triggerPoint.event) === name);
|
|
|
|
let html = `<div class="tooltip-content">
|
|
<div style="font-weight:900; font-size:1.1rem; margin-bottom:12px; border-bottom:1px solid #eee; padding-bottom:8px; line-height:1.3;">
|
|
${name === 'Internal logic' ? name : 'Event: <span style="color:var(--accent)">' + name + '</span>'}
|
|
</div>`;
|
|
|
|
if (trans && trans.guard) {
|
|
const lineInfo = trans.guard.lineNumber ? ` <span style="color:#94a3b8; font-weight:400; font-size:0.6rem;">(Line: ${trans.guard.lineNumber})</span>` : '';
|
|
html += `<div style="font-size:0.7rem; font-weight:800; color:#94a3b8; text-transform:uppercase; margin-bottom:4px">Guard${lineInfo}</div>
|
|
<div style="background:#f1f5f9; padding:6px; border-radius:4px; font-family:monospace; font-size:0.8rem; margin-bottom:12px; border:1px solid #e2e8f0;">${trans.guard.expression}</div>`;
|
|
if (trans.guard.internalLogic) {
|
|
html += `<div style="font-size:0.65rem; font-weight:800; color:#cbd5e1; text-transform:uppercase; margin-bottom:4px">Internal Logic</div>
|
|
<pre style="background:#1e293b; color:#f8fafc; padding:8px; border-radius:4px; font-family:'JetBrains Mono', monospace; font-size:0.7rem; overflow-x:auto; margin-bottom:12px;"><code>${trans.guard.internalLogic.replace(/</g, '<').replace(/>/g, '>')}</code></pre>`;
|
|
}
|
|
}
|
|
|
|
if (trans && trans.actions && trans.actions.length > 0) {
|
|
html += `<div style="font-size:0.7rem; font-weight:800; color:#94a3b8; text-transform:uppercase; margin-bottom:4px">Actions</div>`;
|
|
trans.actions.forEach(action => {
|
|
const lineInfo = action.lineNumber ? ` <span style="color:#94a3b8; font-weight:400; font-size:0.6rem;">(Line: ${action.lineNumber})</span>` : '';
|
|
html += `<div style="font-size:0.7rem; font-weight:800; color:#94a3b8; text-transform:uppercase; margin-bottom:4px">Action${lineInfo}</div>
|
|
<div style="background:#f1f5f9; padding:6px; border-radius:4px; font-family:monospace; font-size:0.8rem; margin-bottom:12px; border:1px solid #e2e8f0;">${action.expression}</div>`;
|
|
if (action.internalLogic) {
|
|
html += `<div style="font-size:0.65rem; font-weight:800; color:#cbd5e1; text-transform:uppercase; margin-bottom:4px">Internal Logic</div>
|
|
<pre style="background:#1e293b; color:#f8fafc; padding:8px; border-radius:4px; font-family:'JetBrains Mono', monospace; font-size:0.7rem; overflow-x:auto; margin-bottom:12px;"><code>${action.internalLogic.replace(/</g, '<').replace(/>/g, '>')}</code></pre>`;
|
|
}
|
|
});
|
|
}
|
|
|
|
if (chains && chains.length > 0) {
|
|
html += `<div style="font-size:0.7rem; font-weight:800; color:#94a3b8; text-transform:uppercase; margin-bottom:10px; border-top:1px solid #eee; padding-top:10px">Triggered by</div>`;
|
|
chains.forEach(c => {
|
|
html += `<div style="margin-bottom:20px">
|
|
<div style="font-weight:700; font-size:0.85rem; color:var(--text);">${c.entryPoint.name}</div>
|
|
${renderParameters(c.entryPoint.parameters)}
|
|
<div style="margin-left:10px; border-left:2px solid #e2e8f0; padding-left:12px; margin-top:10px">
|
|
${c.methodChain.map((m, i) => `<div style="font-size:0.7rem; color:#475569; margin-top:4px; font-family:'JetBrains Mono', monospace;"><b>${i+1}</b> ${m}</div>`).join('')}
|
|
</div>
|
|
</div>`;
|
|
});
|
|
}
|
|
html += `</div>`;
|
|
return html;
|
|
}
|
|
|
|
function renderParameters(params) {
|
|
if (!params || params.length === 0) return "";
|
|
let html = `<div style="font-size:0.65rem; font-weight:700; color:#94a3b8; margin-top:8px; margin-bottom:4px; text-transform:uppercase;">Input Data</div>`;
|
|
html += `<div class="payload-box">`;
|
|
params.forEach(p => {
|
|
const annotation = (p.annotations || []).find(a => a.endsWith("RequestBody") || a.endsWith("PathVariable") || a.endsWith("RequestParam"));
|
|
const cleanAnn = annotation ? "@" + annotation.substring(annotation.lastIndexOf('.') + 1) : "";
|
|
html += `<div class="payload-param">
|
|
<span style="color:#f43f5e; font-size:0.65rem; font-weight:bold;">${cleanAnn}</span>
|
|
<span style="color:#38bdf8;">${p.type}</span>
|
|
<span style="color:#a3e635;">${p.name}</span>
|
|
</div>`;
|
|
});
|
|
html += `</div>`;
|
|
return html;
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|