-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(client): broadcast proxy (#622)
- Loading branch information
Showing
2 changed files
with
41 additions
and
6 deletions.
There are no files selected for viewing
This file contains 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,24 @@ | ||
--- | ||
"@pluv/client": patch | ||
--- | ||
|
||
Added broadcast proxy as a new way to broadcast events. | ||
|
||
```ts | ||
// backend | ||
|
||
const router = io.router({ | ||
SEND_MESSAGE: io.procedure | ||
.input(z.object({ message: z.string() })) | ||
.broadcast(({ message }) => ({ RECEIVE_MESSAGE: { message } })), | ||
}); | ||
|
||
// frontend | ||
const client = createClient(/* ... */); | ||
|
||
// Both of the examples below are equivalent. | ||
|
||
client.broadcast("SEND_MESSAGE", { message: "Hello world~!" }); | ||
|
||
client.broadcast.SEND_MESSAGE({ message: "Hello world~!" }); | ||
``` |
This file contains 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