-
Notifications
You must be signed in to change notification settings - Fork 13
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
Web Experience Chat #33
Conversation
a092727
to
a0ac2e7
Compare
example/web-client/src/index.ts
Outdated
// this.textChatUI?.addTextMessage("testUser", `this is message ${i}`); | ||
// i++; | ||
// }, 2000); | ||
// }, 500); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Commented out code
example/web-client/src/index.ts
Outdated
// }, 500); | ||
} | ||
|
||
private sendMessageToServer = (_clientName: string, message: string): void => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This can use a regular method definition rather than an assignment (remove the =
)
example/web-client/src/index.ts
Outdated
// }, 500); | ||
} | ||
|
||
private sendMessageToServer = (_clientName: string, message: string): void => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
_clientName
is unused
Resolves #7
This PR implements text-chat (client and server).
What kind of change does your PR introduce? (check at least one)
Does your PR fulfill the following requirements?