74 lines
2.1 KiB
HTML
74 lines
2.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
|
|
<title>Relay direct chat</title>
|
|
<link rel="stylesheet" href="./style.css" />
|
|
<link rel="apple-touch-icon" href="./favicon.png" />
|
|
<link rel="manifest" href="./manifest.json" />
|
|
<link rel="icon" href="./favicon.ico" />
|
|
</head>
|
|
|
|
<body>
|
|
<div class="content">
|
|
<div class="header">
|
|
<h3>Status: <span id="status"></span></h3>
|
|
|
|
<h4><label for="remoteNode">Remote node multiaddr</label></h4>
|
|
<div>
|
|
<input
|
|
id="remoteNode"
|
|
value="/dns4/node-01.ac-cn-hongkong-c.go-waku.prod.statusim.net/tcp/443/wss/p2p/16Uiu2HAm1fVVprL9EaDpDw4frNX3CPfZu5cBqhtk9Ncm6WCvprpv"
|
|
/>
|
|
<button id="connectRemoteNode">Dial</button>
|
|
</div>
|
|
|
|
<h4><label for="webrtcPeer">WebRTC Peer</label></h4>
|
|
<div>
|
|
<input id="webrtcPeer" />
|
|
<button id="connectWebrtcPeer">Dial</button>
|
|
</div>
|
|
|
|
<div>
|
|
<button id="relayWebRTC">Ensure WebRTC Relay connection</button>
|
|
<button id="dropNonWebRTC">Drop non WebRTC connections</button>
|
|
</div>
|
|
|
|
<details open>
|
|
<summary>Peer's information</summary>
|
|
|
|
<h4>Content topic</h4>
|
|
<p id="contentTopic"></p>
|
|
|
|
<h4>Local Peer Id</h4>
|
|
<p id="localPeerId"></p>
|
|
|
|
<h4>Remote Peer Id</h4>
|
|
<p id="remotePeerId"></p>
|
|
|
|
<h4>Relay mesh's protocols</h4>
|
|
<p id="relayMeshInfo"></p>
|
|
</details>
|
|
</div>
|
|
|
|
<div id="messages"></div>
|
|
|
|
<div class="footer">
|
|
<div class="inputArea">
|
|
<input type="text" id="nickText" placeholder="Nickname" />
|
|
<textarea id="messageText" placeholder="Message"></textarea>
|
|
</div>
|
|
|
|
<div class="controls">
|
|
<button id="send">Send</button>
|
|
<button id="exit">Exit chat</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="//cdn.jsdelivr.net/npm/protobufjs@7.X.X/dist/protobuf.min.js"></script>
|
|
<script type="module" src="./index.js"></script>
|
|
</body>
|
|
</html>
|