2022-06-17 00:48:15 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang='en'>
|
|
|
|
|
|
|
|
<head>
|
2022-08-31 03:05:59 +00:00
|
|
|
<meta charset='UTF-8'/>
|
|
|
|
<meta content='width=device-width, initial-scale=1.0' name='viewport'/>
|
|
|
|
<title>JS-Waku Chat</title>
|
2022-06-17 00:48:15 +00:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<div><h1>Waku Node Status</h1></div>
|
|
|
|
<div id='status'></div>
|
|
|
|
|
2022-09-20 00:05:31 +00:00
|
|
|
<label for='textInput'>Message text</label>
|
2022-11-04 05:25:16 +00:00
|
|
|
<input disabled id='textInput' placeholder='Type your message here' type='text'>
|
|
|
|
<button disabled id='sendButton' type='button'>Send Message using Relay</button>
|
2022-06-17 00:48:15 +00:00
|
|
|
|
|
|
|
<div><h1>Messages</h1></div>
|
|
|
|
<div id='messages'></div>
|
|
|
|
|
|
|
|
|
2022-08-31 03:05:59 +00:00
|
|
|
<script type='module'>
|
|
|
|
/**
|
|
|
|
* Demonstrate usage of js-waku in the browser. Use relay, gossip sub protocol to send and receive messages.
|
|
|
|
* Recommended payload is protobuf. Using simple utf-8 string for demo purposes only.
|
|
|
|
*/
|
|
|
|
|
2022-11-04 05:25:16 +00:00
|
|
|
import {bytesToUtf8, utf8ToBytes} from 'https://unpkg.com/@waku/byte-utils@0.0.2/bundle/index.js';
|
|
|
|
import {createPrivacyNode} from 'https://unpkg.com/@waku/create@0.0.4/bundle/index.js'
|
|
|
|
import {waitForRemotePeer} from 'https://unpkg.com/@waku/core@0.0.6/bundle/lib/wait_for_remote_peer.js'
|
|
|
|
import {DecoderV0, EncoderV0} from "https://unpkg.com/@waku/core@0.0.6/bundle/lib/waku_message/version_0.js";
|
2022-08-31 03:05:59 +00:00
|
|
|
|
|
|
|
const statusDiv = document.getElementById('status');
|
|
|
|
const messagesDiv = document.getElementById('messages');
|
|
|
|
const textInput = document.getElementById('textInput');
|
|
|
|
const sendButton = document.getElementById('sendButton');
|
|
|
|
|
|
|
|
// Every Waku Message has a content topic that categorizes it.
|
|
|
|
// It is always encoded in clear text.
|
|
|
|
// Recommendation: `/dapp-name/version/functionality/codec`
|
|
|
|
// We recommend to use protobuf as codec (`proto`), this demo uses utf-8
|
|
|
|
// for simplicity's sake.
|
2022-09-20 01:15:43 +00:00
|
|
|
const contentTopic = '/js-waku-examples/1/chat/utf8';
|
2022-08-31 03:05:59 +00:00
|
|
|
|
2022-09-20 04:34:06 +00:00
|
|
|
// Prepare encoder and decoder, `V0` for clear text messages.
|
|
|
|
|
|
|
|
const encoder = new EncoderV0(contentTopic);
|
|
|
|
const decoder = new DecoderV0(contentTopic);
|
|
|
|
|
2022-08-31 03:05:59 +00:00
|
|
|
try {
|
|
|
|
statusDiv.innerHTML = '<p>Starting</p>';
|
|
|
|
|
|
|
|
// Create and starts a Waku node.
|
|
|
|
// `default: true` bootstraps by connecting to pre-defined/hardcoded Waku nodes.
|
|
|
|
// We are currently working on migrating this method to DNS Discovery.
|
2022-06-17 00:48:15 +00:00
|
|
|
//
|
2022-09-20 04:34:06 +00:00
|
|
|
// https://js.waku.org/functions/lib_create_waku.createPrivacyNode.html
|
2022-09-15 06:30:54 +00:00
|
|
|
const waku = await createPrivacyNode({defaultBootstrap: true});
|
2022-08-31 03:05:59 +00:00
|
|
|
await waku.start();
|
2022-06-17 00:48:15 +00:00
|
|
|
|
2022-12-01 02:47:13 +00:00
|
|
|
// Add a hook to process all incoming messages on a specified content topic.
|
2022-06-17 00:48:15 +00:00
|
|
|
//
|
2022-12-01 02:47:13 +00:00
|
|
|
// https://js.waku.org/classes/index.waku_relay.WakuRelay.html#addObserver
|
2022-09-20 04:34:06 +00:00
|
|
|
waku.relay.addObserver(decoder, (message) => {
|
2022-08-31 03:05:59 +00:00
|
|
|
|
|
|
|
// Checks there is a payload on the message.
|
|
|
|
// Waku Message is encoded in protobuf, in proto v3 fields are always optional.
|
|
|
|
//
|
2022-12-01 02:47:13 +00:00
|
|
|
// https://js.waku.org/interfaces/index.proto_message.WakuMessage-1.html#payload
|
2022-09-20 04:34:06 +00:00
|
|
|
if (!message.payload)
|
2022-08-31 03:05:59 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
// Helper method to decode the payload to utf-8. A production dApp should
|
|
|
|
// use `wakuMessage.payload` (Uint8Array) which enables encoding a data
|
|
|
|
// structure of their choice.
|
|
|
|
//
|
2022-12-01 02:47:13 +00:00
|
|
|
// https://js.waku.org/functions/index.utils.bytesToUtf8.html
|
2022-11-04 05:25:16 +00:00
|
|
|
const text = bytesToUtf8(message.payload);
|
2022-08-31 03:05:59 +00:00
|
|
|
messagesDiv.innerHTML = `<p>${text}</p><br />` + messagesDiv.innerHTML;
|
|
|
|
}, [contentTopic]);
|
|
|
|
|
|
|
|
statusDiv.innerHTML = '<p>Connecting to a peer</p>';
|
|
|
|
|
|
|
|
// Best effort method that waits for the Waku node to be connected to remote
|
|
|
|
// waku nodes (peers) and for appropriate handshakes to be done.
|
|
|
|
//
|
2022-12-01 02:47:13 +00:00
|
|
|
// https://js.waku.org/functions/lib_wait_for_remote_peer.waitForRemotePeer.html
|
2022-08-31 03:05:59 +00:00
|
|
|
await waitForRemotePeer(waku);
|
|
|
|
|
|
|
|
// We are now connected to a remote peer, let's define the `sendMessage`
|
|
|
|
// function that sends the text input over Waku Relay, the gossipsub
|
|
|
|
// protocol.
|
|
|
|
sendButton.onclick = async () => {
|
2022-11-04 05:25:16 +00:00
|
|
|
const payload = utf8ToBytes(textInput.value)
|
2022-09-20 04:34:06 +00:00
|
|
|
await waku.relay.send(encoder, {payload});
|
2022-08-31 03:05:59 +00:00
|
|
|
console.log('Message sent!');
|
|
|
|
|
|
|
|
// Reset the text input.
|
|
|
|
textInput.value = null;
|
|
|
|
};
|
|
|
|
|
|
|
|
// Ready to send & receive messages, enable text input.
|
|
|
|
textInput.disabled = false;
|
|
|
|
sendButton.disabled = false;
|
|
|
|
statusDiv.innerHTML = '<p>Ready!</p>';
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
statusDiv.innerHTML = 'Failed to start application';
|
|
|
|
console.log(e);
|
|
|
|
}
|
2022-06-17 00:48:15 +00:00
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|