usePublish
usePublish
returns the publish
method from liveProvider
. It is useful when you want to publish a custom event.
refine use this hook internally in mutation hooks to publish
events after successful mutation. You can refer liveProvider's Publish Events from Hooks section for more information.
Usageβ
import { usePublish } from "@refinedev/core";
const publish = usePublish();
publish({
channel: "custom-channel-name",
type: "custom-event-name",
payload: {
ids: [1, 2, 3],
"custom-property": "custom-property-value",
},
date: new Date(),
});
This method is used to publish an event on the client side. Beware that publishing events on the client side is not recommended and the best practice is to publish events from the server side. You can refer Publish Events from API to see which events must be published from the server.
Publish Propertiesβ
Will be passed to the publish method from the liveProvider as a parameter. You can use these properties from the liveProvider
's publish
method and use them to publish an event.
Refer to LiveEvent interface for type of properties.
channel requiredβ
The channel name to publish the event.
type requiredβ
The event name to publish.
payload requiredβ
The payload to publish.
date requiredβ
The date of the event.