When requiring users to interact with the application, but without jumping to a new page and interrupting the user's workflow, you can use Modal to create a new floating layer over the current page to get user feedback or display information.
2
const [visible, setVisible] = React.useState(false);
3
const { Cluster } = KubeIcon;
4
const ref = React.createRef();
6
const openModal = () => {
10
const closeModal = () => {
11
console.log(ref.current);
17
<Button onClick={openModal}>Open Modal</Button>
22
description="Modal description"
23
titleIcon={<Cluster size={40} />}
2
const modal = useModal();
4
const openChildModal = () => {
6
title: 'Imperative Modal',
7
description: 'description text',
8
content: 'modal content',
12
const content = <Button onClick={openChildModal}>Nest Imperative Modal</Button>;
14
const openModal = () => {
16
title: 'Imperative Modal',
17
description: 'description text',
22
return <Button onClick={openModal}>Imperative Modal</Button>;
2
const modal = useModal();
6
modal.confirm({ title: 'confirm modal', content: 'confirm content' });