useModal
useModal
hook allows you to manage a modal. Since it is designed as headless, it returns the show
and close
functions, and the visible
state. It expects you to handle the UI.
const { show, close, visible } = useModal();
You can use visible
state to show or hide the modal. The show
and close
functions allow changing the visible
state. It does not provide any functionality besides this. You can use this hook anywhere.
Basic Usageβ
Let's see an example:
import {
useModal,
} from "@refinedev/core";
export const PostList: React.FC = () => {
const { visible, show, close } = useModal();
return (
<>
<button onClick={show}>Show Modal</button>
{visible && (
<YourModalComponent>
<p>Dummy Modal Content</p>
<button onClick={close}>Close Modal</button>
</YourModalComponent>
)}
</>
);
};
Here, we show a button somewhere on the page and use show
on its onClick
callback to trigger the opening of the <YourModalComponent>
. When the user clicks on the button, the <YourModalComponent>
appears.
We also created a <button>
to close the <YourModalComponent>
and gave the onClick function close
, the modal dialog will be closed. We do this to demonstrate close
function.
Propertiesβ
defaultVisible
β
Default:
false
defaultVisible
is a boolean value that determines whether the modal is visible by default.
useModal({
defaultVisible: true,
});
Return Valuesβ
visible
β
Visible state of the modal.
show
β
A function that can change the visible
state to true
.
close
β
A function that can change the visible
state to false
.
API Referenceβ
Propertiesβ
Return Valueβ
Key | Description | Type |
---|---|---|
visible | Returns the visible state of the modal. | boolean |
show | A function that can open the modal. | () => void |
close | A function that can close the modal. | () => void |
Exampleβ
npm create refine-app@latest -- --example core-use-modal