Refresh
<RefreshButton>
uses Chakra UI's <Button>
component to update the data shown on the page via the useOne
method provided by your dataProvider
.
You can swizzle this component to customize it with the refine CLI
Usage
Properties
recordItemId
recordItemId
allows us to manage which data is going to be refreshed.
Clicking the button will trigger the useOne
method and then fetches the record whose resource is "post" and whose id is "123".
<RefreshButton>
component reads the id information from the route by default.
resourceNameOrRouteName
resourceNameOrRouteName
allows us to manage which resource is going to be refreshed.
Clicking the button will trigger the useOne
method and then fetches the record whose resource is "categories" and whose id is "2".
<RefreshButton>
component reads the resource name from the route by default.
hideText
It is used to show and not show the text of the button. When true
, only the button icon is visible.