Skip to content
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

Bugs in the example implementation: messageHistory state definition and markup #265

Open
darkhaniop opened this issue Mar 27, 2025 · 1 comment

Comments

@darkhaniop
Copy link

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 bug

The problem is in the messageHistory state instantiation line:

const [messageHistory, setMessageHistory] =
    useState < MessageEvent < any > [] > [];

The example works after changing it to:

const [messageHistory, setMessageHistory] = useState<MessageEvent<any>[]>([]);

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).

Image

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.

Image

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.

Here's the npm list output:

├── @eslint/js@9.23.0
├── @types/react-dom@19.0.4
├── @types/react@19.0.12
├── @vitejs/plugin-react@4.3.4
├── eslint-plugin-react-hooks@5.2.0
├── eslint-plugin-react-refresh@0.4.19
├── eslint@9.23.0
├── globals@15.15.0
├── react-dom@19.0.0
├── react-use-websocket@4.13.0
├── react@19.0.0
├── typescript-eslint@8.28.0
├── typescript@5.7.3
└── vite@6.2.3
darkhaniop added a commit to darkhaniop/react-use-websocket that referenced this issue Mar 27, 2025
Addresses two minor bugs in the first usage example in README.md:
- messageHistory state instantiation bug
- WebSocketDemo markup

Issue robtaussig#265
@darkhaniop
Copy link
Author

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant