Compare commits

..

No commits in common. "f6947f32f18a9862c38358f94ba19af0b690699c" and "d0ec03843ab51f9ee050f639c250baa272592e54" have entirely different histories.

7 changed files with 70 additions and 132 deletions

Binary file not shown.

View File

@ -47,5 +47,4 @@ export class ChatRoom extends EventEmitter {
} }
} }
const chatRoom = new ChatRoom(); export const chatRoom = new ChatRoom();
export { chatRoom }

View File

@ -14,18 +14,12 @@ const { upgradeWebSocket, websocket } = createBunWebSocket<ServerWebSocket>();
app.get("/chat-service", upgradeWebSocket((c) => { app.get("/chat-service", upgradeWebSocket((c) => {
return { return {
onOpen(event, ws) { onOpen(event, ws) {
console.log(ws); chatRoom.addListener('message-added', function (e) {
console.log(`Connection established ${event}`); ws.send(JSON.stringify({
chatRoom.addListener('message-added', async function (e) {
const message = JSON.stringify({
message: e.message.message, message: e.message.message,
chatter: e.message.chatter, chatter: e.message.chatter,
timestamp: e.message.timestamp timestamp: e.message.timestamp
}); }));
console.log(message);
ws.send(message);
}); });
}, },
onMessage(event, ws) { onMessage(event, ws) {
@ -45,6 +39,19 @@ app.get("/chat-service", upgradeWebSocket((c) => {
} }
})); }));
// set up the username, somehow
// set the session for a user
app.post("/login", async (c) => {
const user = await c.req.parseBody();
let success: boolean = false;
if (!users.find((u) => u == user.username)) {
users.push(user.username);
success = true;
}
return c.json({ success });
});
// get the HTML and JS from the static repo // get the HTML and JS from the static repo
app.use("/", serveStatic({ path: "/static/index.html" })); app.use("/", serveStatic({ path: "/static/index.html" }));

View File

@ -1,8 +1,7 @@
body { body {
margin: 0; margin: 0;
padding: 0; padding: 0;
background-color: #134115; height: 100.001vh;
font-family: monospace;
} }
div { div {
@ -13,19 +12,15 @@ div {
padding: 1em; padding: 1em;
display: flex; display: flex;
flex-direction: column-reverse; flex-direction: column-reverse;
height: auto; height: 95vh;
overflow: auto; overflow: auto;
} }
.messages .message { .messages .message {
padding: 1em 1.25em; padding: 0.5em;
border: 1px solid #020a03; border: 1px solid #aaa;
border-radius: 5px; border-radius: 5px;
margin-bottom: 0.75em; margin-bottom: 0.5em;
background-color: #fffefc;
font-family: monospace;
font-size: 14px;
color: #0c0b09;
} }
.chatter { .chatter {
@ -37,10 +32,10 @@ div {
bottom: 0; bottom: 0;
width: 100%; width: 100%;
box-sizing: border-box; box-sizing: border-box;
padding: 0.5em;
background-color: #fff;
border-top: 1px solid #ccc; border-top: 1px solid #ccc;
height: auto; height: 5vh;
padding: 1em;
background-color: #f4efe6;
} }
.chat-input > form { .chat-input > form {
display: flex; display: flex;
@ -49,65 +44,12 @@ div {
} }
.chat-input > form > input, .chat-input > form > input,
.chat-input > form > submit { .chat-input > form > submit {
padding: 1em 1.25em; padding: 0.7em;
margin-right: 1em; margin-right: 0.4em;
}
.chat-input > form > submit {
background-color: #020a03;
border: none;
border-radius: 5px;
color: #fffbf6;
font-weight: bold;
font-family: monospace !important;
padding: 0.75em 1em;
margin-right: 0;
} }
.chat-input > form > input[name="chatter"] { .chat-input > form > input[name="chatter"] {
width: 20%; width: 20%;
border: 1px solid #020a03;
border-radius: 5px;
color: #0c0b09;
font-family: monospace;
} }
.chat-input > form > input[name="message"] { .chat-input > form > input[name="message"] {
width: 75%; width: 75%;
border: 1px solid #020a03;
border-radius: 5px;
color: #0c0b09;
font-family: monospace;
}
@media only screen and (max-width: 600px) {
.chat-input {
padding: 2.5em;
}
.chat-input > form {
display: flex;
width: 100%;
box-sizing: border-box;
flex-direction: column;
}
.chat-input > form > input[name="chatter"] {
width: 100%;
font-size: 3.5em;
margin-bottom: 0.5em;
box-sizing: border-box;
}
.chat-input > form > input[name="message"] {
width: 100%;
font-size: 3.5em;
margin-bottom: 0.5em;
box-sizing: border-box;
}
.chat-input > form > input, .chat-input > form > submit {
padding: 0.75em 1em;
border-radius: 0.25em;
width: 100%;
font-size: 3.5em;
}
} }

View File

@ -79,11 +79,6 @@ var require_hasOwn = __commonJS((exports, module) => {
// node_modules/mithril/render/hyperscript.js // node_modules/mithril/render/hyperscript.js
var require_hyperscript = __commonJS((exports, module) => { var require_hyperscript = __commonJS((exports, module) => {
var Vnode = require_vnode();
var hyperscriptVnode = require_hyperscriptVnode();
var hasOwn = require_hasOwn();
var selectorParser = /(?:(^|#|\.)([^#\.\[\]]+))|(\[(.+?)(?:\s*=\s*("|'|)((?:\\["'\]]|.)*?)\5)?\])/g;
var selectorCache = {};
function isEmpty(object) { function isEmpty(object) {
for (var key in object) for (var key in object)
if (hasOwn.call(object, key)) if (hasOwn.call(object, key))
@ -152,6 +147,11 @@ var require_hyperscript = __commonJS((exports, module) => {
vnode.tag = selector; vnode.tag = selector;
return vnode; return vnode;
} }
var Vnode = require_vnode();
var hyperscriptVnode = require_hyperscriptVnode();
var hasOwn = require_hasOwn();
var selectorParser = /(?:(^|#|\.)([^#\.\[\]]+))|(\[(.+?)(?:\s*=\s*("|'|)((?:\\["'\]]|.)*?)\5)?\])/g;
var selectorCache = {};
module.exports = hyperscript; module.exports = hyperscript;
}); });
@ -187,7 +187,6 @@ var require_hyperscript2 = __commonJS((exports, module) => {
// node_modules/mithril/render/domFor.js // node_modules/mithril/render/domFor.js
var require_domFor = __commonJS((exports, module) => { var require_domFor = __commonJS((exports, module) => {
var delayedRemoval = new WeakMap;
function* domFor({ dom, domSize }, { generation } = {}) { function* domFor({ dom, domSize }, { generation } = {}) {
if (dom != null) if (dom != null)
do { do {
@ -199,6 +198,7 @@ var require_domFor = __commonJS((exports, module) => {
dom = nextSibling; dom = nextSibling;
} while (domSize); } while (domSize);
} }
var delayedRemoval = new WeakMap;
module.exports = { module.exports = {
delayedRemoval, delayedRemoval,
domFor domFor
@ -1480,6 +1480,13 @@ var require_censor = __commonJS((exports, module) => {
// node_modules/mithril/api/router.js // node_modules/mithril/api/router.js
var require_router = __commonJS((exports, module) => { var require_router = __commonJS((exports, module) => {
function decodeURIComponentSave(component) {
try {
return decodeURIComponent(component);
} catch (e) {
return component;
}
}
var Vnode = require_vnode(); var Vnode = require_vnode();
var m = require_hyperscript(); var m = require_hyperscript();
var buildPathname = require_build2(); var buildPathname = require_build2();
@ -1488,13 +1495,6 @@ var require_router = __commonJS((exports, module) => {
var assign = require_assign(); var assign = require_assign();
var censor = require_censor(); var censor = require_censor();
var sentinel = {}; var sentinel = {};
function decodeURIComponentSave(component) {
try {
return decodeURIComponent(component);
} catch (e) {
return component;
}
}
module.exports = function($window, mountRedraw) { module.exports = function($window, mountRedraw) {
var callAsync = $window == null ? null : typeof $window.setImmediate === "function" ? $window.setImmediate : $window.setTimeout; var callAsync = $window == null ? null : typeof $window.setImmediate === "function" ? $window.setImmediate : $window.setTimeout;
var p = Promise.resolve(); var p = Promise.resolve();
@ -1721,34 +1721,18 @@ var import_mithril = __toESM(require_mithril(), 1);
// frontend/websocket.js // frontend/websocket.js
function createWebSocket() { function createWebSocket() {
let appUrl = "chat.freedoom.party"; let appUrl = "localhost:3000";
appUrl = `//${appUrl}/chat-service`; appUrl = `//${appUrl}/chat-service`;
return new WebSocket(appUrl); return new WebSocket(appUrl);
} }
// frontend/index.js // frontend/index.js
var messages = [];
var socket = createWebSocket();
socket.onmessage = function(event) {
if (event.type === "message") {
const message = JSON.parse(event.data);
messages.push(message);
import_mithril.default.redraw();
}
};
function newMessageText(name, message) { function newMessageText(name, message) {
return [ return [
import_mithril.default("span.chatter", name + ": "), import_mithril.default("span.chatter", name + ": "),
import_mithril.default("span.chatter-message", message) import_mithril.default("span.chatter-message", message)
]; ];
} }
var MessageBox = {
view: function() {
return import_mithril.default(".messages", { id: "message-box" }, messages.reverse().map(function(message) {
return import_mithril.default(".message", newMessageText(message.chatter, message.message));
}), import_mithril.default("#anchor"));
}
};
function clearMessageInputBox() { function clearMessageInputBox() {
const messageBox = document.getElementById("message"); const messageBox = document.getElementById("message");
messageBox.value = ""; messageBox.value = "";
@ -1763,6 +1747,22 @@ function sendMessage(e) {
socket.send(JSON.stringify(message)); socket.send(JSON.stringify(message));
clearMessageInputBox(); clearMessageInputBox();
} }
var messages = [];
var socket = createWebSocket();
socket.onmessage = function(event) {
if (event.type === "message") {
const message = JSON.parse(event.data);
messages.push(message);
import_mithril.default.redraw();
}
};
var MessageBox = {
view: function() {
return import_mithril.default(".messages", { id: "message-box" }, messages.reverse().map(function(message) {
return import_mithril.default(".message", newMessageText(message.chatter, message.message));
}), import_mithril.default("#anchor"));
}
};
var MessageInput = { var MessageInput = {
view: function() { view: function() {
return import_mithril.default("div.chat-input", [ return import_mithril.default("div.chat-input", [

Binary file not shown.

View File

@ -76,20 +76,19 @@
<section> <section>
<h2>Doing it Yourself</h2> <h2>Doing it Yourself</h2>
<ul> <ul>
<li class="fragment">A domain</li> <li>Do not use AWS, its too expensive</li>
<li class="fragment">A server with a public IP address</li> <li>Your small project is not worth the cost</li>
<li class="fragment">A webserver</li> <li>Use a small VPS from DigitalOcean or Linode</li>
<li class="fragment">Patience</li> <li>Get a public IP address and root access</li>
</ul> </ul>
</section> </section>
<!-- Dokku -->
<section> <section>
<h2>Dokku</h2> <h3>Blue/Green Deployment</h3>
<p>Self-hosted platform as a service</p>
<p>Your very own Heroku</p>
</section> </section>
<!-- Dokku -->
<section> <section>
<h2>What Dokku Does</h2> <h2>What Dokku Does</h2>
<ul> <ul>
@ -104,21 +103,12 @@
</section> </section>
<section> <section>
<h3>Anatomy of the Server</h3> <h3>Create an application.</h3>
<ul> <pre>
<li>Linode VPS</li> $ dokku apps:create chat.freedoom.party
<li>Debian</li> -----> Creating chat.freedoom.party...
</ul> -----> Creating new app virtual host file...
</section> </pre>
<section>
<h3>Anatomy of the Application</h3>
<ul>
<li>Hono Web Server Application</li>
<li>Mithril.js Frontend Application</li>
<li>Dockerized</li>
</ul>
</section>
<!-- Deployment Example --> <!-- Deployment Example -->