You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I decided to try this package for the first time and noticed that the WebSocketDemo component in the Example Implementation in "README.md" does not work out of the box. I made it work with a small fix (bug 1), and then noticed a problem with markup that produces a not-so-good-looking page (bug 2).
1. messageHistory state instantiation bug
The problem is in the messageHistory state instantiation line:
When I put this component in an empty app (no other components and CSS styles), all of the text in the UI was jumbled up and was hard to read (see the first screenshot).
The screenshot shows no visual separation between "The WebSocket is currently Open" and "Last message: Hello." Similarly, no space between "Request served by 7811941c69e658" and the message history (four times "Hello"). I made the following minimal changes to fix this:
Inserted several line breaks, <br />.
Inside <ul>...</ul>, in the Message History list, replaced the <span> element with <li>.
Added a heading to visually separate the list from the other elements.
The second screenshot shows the page after these changes.
Package versions in my env
I created the test app with npm create vite@latest, then installed this package with npm i react-use-websocket.
Just noticed that if I allow Prettier to format the README on save, it will revert the example back to the buggy version. Also, it seems the issue appears only when formatting a .md file, no problem when it formats a .tsx file.
Hi,
I decided to try this package for the first time and noticed that the
WebSocketDemo
component in the Example Implementation in "README.md" does not work out of the box. I made it work with a small fix (bug 1), and then noticed a problem with markup that produces a not-so-good-looking page (bug 2).1.
messageHistory
state instantiation bugThe problem is in the
messageHistory
state instantiation line:The example works after changing it to:
2. Makrup
When I put this component in an empty app (no other components and CSS styles), all of the text in the UI was jumbled up and was hard to read (see the first screenshot).
The screenshot shows no visual separation between "The WebSocket is currently Open" and "Last message: Hello." Similarly, no space between "Request served by 7811941c69e658" and the message history (four times "Hello"). I made the following minimal changes to fix this:
<br />
.<ul>...</ul>
, in the Message History list, replaced the<span>
element with<li>
.The second screenshot shows the page after these changes.
Package versions in my env
I created the test app with
npm create vite@latest
, then installed this package withnpm i react-use-websocket
.Here's the
npm list
output:The text was updated successfully, but these errors were encountered: