-
-
Notifications
You must be signed in to change notification settings - Fork 55
NW | 26-SDC-Mar | TzeMing Ho | Sprint 2 | Chat App frontend and backend #78
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
TzeMingHo
wants to merge
9
commits into
CodeYourFuture:main
Choose a base branch
from
TzeMingHo:long-polling
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
474cc24
added files
TzeMingHo da4170f
chore: remove accidental node_modules and ignore them globally
TzeMingHo 4c084cb
switch back to localhost, and make timestamp at the backend
TzeMingHo 1f6e2a7
added a helper function to scroll to the bottom
TzeMingHo e329fa9
fixed display overlaping and layout, removed messageString and userSt…
TzeMingHo f31a7d6
updated scripts in frontend
TzeMingHo b8238ea
added a comment in scripts.js
TzeMingHo 53ad20c
updated scripts with latest methods
TzeMingHo ba291bc
updated scripts
TzeMingHo File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| **/node_modules/ | ||
| .env | ||
| dist/ | ||
| .DS_Store |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,85 @@ | ||
| import express from "express"; | ||
| import cors from "cors"; | ||
|
|
||
| const port = 4000; | ||
|
|
||
| const waitingRoom = []; | ||
|
|
||
| const chatHistory = [ | ||
| { | ||
| message: "Welcome to the channel.", | ||
| user: "System", | ||
| timestamp: new Date().getTime(), | ||
| }, | ||
| ]; | ||
|
|
||
| const app = express(); | ||
| app.use( | ||
| cors({ | ||
| // origin: "https://tzemingho-chatapp-server-frontend.hosting.codeyourfuture.io" | ||
| }), | ||
| ); | ||
| app.use(express.json()); | ||
|
|
||
| app.get("/", (req, res) => { | ||
| res.json(chatHistory); | ||
| }); | ||
|
|
||
| app.get("/messages", (req, res) => { | ||
| const since = parseInt(req.query.since); | ||
|
|
||
| if (isNaN(since)) { | ||
| return res.json(chatHistory); | ||
| } | ||
| const newMessages = chatHistory.filter(({ timestamp }) => timestamp > since); | ||
|
cjyuan marked this conversation as resolved.
|
||
|
|
||
| if (newMessages.length > 0) { | ||
| return res.json(newMessages); | ||
| } | ||
|
|
||
| const callback = (message) => res.json([message]); | ||
| waitingRoom.push(callback); | ||
|
|
||
| const seconds = 25; | ||
| const milliseconds = 1000; | ||
|
|
||
| const timeout = setTimeout(() => { | ||
| const index = waitingRoom.indexOf(callback); | ||
| if (index !== -1) { | ||
| waitingRoom.splice(index, 1); | ||
| res.send([]); | ||
| } | ||
| }, seconds * milliseconds); | ||
|
cjyuan marked this conversation as resolved.
|
||
| }); | ||
|
|
||
| app.post("/", (req, res) => { | ||
| try { | ||
| let { message, user } = req.body; | ||
| if (!message?.trim() || !user?.trim()) { | ||
| res.status(406).json({ error: "Empty message or user are not allowed." }); | ||
| return; | ||
| } else { | ||
| const newTimestamp = new Date().getTime(); | ||
| const newMessage = { | ||
| message: message, | ||
| user: user, | ||
| timestamp: newTimestamp, | ||
| }; | ||
| chatHistory.push(newMessage); | ||
|
|
||
| while (waitingRoom.length > 0) { | ||
| const callback = waitingRoom.pop(); | ||
| callback(newMessage); | ||
| } | ||
| res.status(201).send("sent"); | ||
| } | ||
| } catch (error) { | ||
| console.error(`Failed to parse body as JSON: ${error}`); | ||
| res.status(400).json({ error: "Expected body to be JSON." }); | ||
| return; | ||
| } | ||
| }); | ||
|
|
||
| app.listen(port, () => { | ||
| console.log(`chatApp server is listening on port: ${port}`); | ||
| }); | ||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.