Files
BridgeSwarm/examples/hrpc-demo/index.html
T
Raven Scott e801bc0041 Refactor examples into per-app directories with separate HTML, CSS, and JS
- Give each example its own directory: chat/, whiteboard/, sdk-demo/, hrpc-demo/, data-demo/, screenshare/
- Split each into index.html, style.css, and app.js (no inline script/style; CSP-friendly)
- Remove old flat files (e.g. chat.html, whiteboard.html, whiteboard.js)
- Update README, examples/README, and docs/HRPC to use new paths
2026-02-12 07:35:18 -05:00

49 lines
2.0 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>BridgeSwarm HRPC Demo</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>BridgeSwarm HRPC Demo</h1>
<p>HRPC is <strong>auto-enabled</strong> on every connection. Open this page in two tabs, join the same topic in both; once connected, you can &quot;Ping peer&quot; in either tab (no manual enable step).</p>
<div class="section">
<h2>1. Swarm <span class="badge">join / leave</span></h2>
<p id="status" class="status">Waiting for extension…</p>
<div class="row">
<input type="text" id="topic" placeholder="Topic" value="bridge-swarm-hrpc-demo">
<button class="primary" id="btnJoin">Join topic</button>
<button class="danger" id="btnLeave" disabled>Leave &amp; destroy</button>
</div>
</div>
<div class="section">
<h2>2. Connection &amp; HRPC <span class="badge">attachHrpc, hrpcInvoke</span></h2>
<p id="peers">Peers: 0</p>
<div class="row" id="connSelectRow" style="display:none;">
<label for="connSelect" style="font-size:0.85rem; color:#a9b1d6;">Use connection:</label>
<select id="connSelect" style="min-width:180px; padding:0.35rem 0.5rem; border-radius:6px; border:1px solid #3b4261; background:#24283b; color:#c0caf5; font-size:0.85rem;"></select>
</div>
<div class="row">
<button class="secondary" id="btnEnableHrpc" disabled>Retry HRPC on selected connection</button>
</div>
<p id="hrpcStatus" class="status" style="display:none;"></p>
<div class="row" id="pingRow" style="display:none;">
<input type="text" id="pingValue" placeholder="Ping value (optional)">
<button class="primary" id="btnPing">Ping peer</button>
</div>
<p id="pongResult" class="status" style="display:none;"></p>
</div>
<div class="section">
<h2>Log</h2>
<div class="log" id="log"></div>
</div>
<script src="app.js"></script>
</body>
</html>