If true
, the modal will be open.
Modal
A modal is a dialog that focuses the user's attention exclusively on an information via a window that is overlaid on primary content.
Import#
Chakra exports 7 components to help you create any modal dialog.
Modal
: The wrapper that provides context for its children.ModalOverlay
: The dimmed overlay behind the modal dialog.ModalContent
: The container for the modal dialog's content.ModalHeader
: The header that labels the modal dialog.ModalFooter
: The footer that houses the modal actions.ModalBody
: The wrapper that houses the modal's main content.ModalCloseButton
: The button that closes the modal.
import {Modal,ModalOverlay,ModalContent,ModalHeader,ModalFooter,ModalBody,ModalCloseButton,} from '@chakra-ui/react'
Usage#
When the modal opens:
- focus is trapped within the modal and set to the first tabbable element.
- content behind a modal dialog is inert, meaning that users cannot interact with it.
function BasicUsage() {const { isOpen, onOpen, onClose } = useDisclosure()return (<><Button onClick={onOpen}>Open Modal</Button><Modal isOpen={isOpen} onClose={onClose}><ModalOverlay /><ModalContent><ModalHeader>Modal Title</ModalHeader><ModalCloseButton /><ModalBody><Lorem count={2} /></ModalBody><ModalFooter><Button colorScheme='blue' mr={3} onClick={onClose}>Close</Button><Button variant='ghost'>Secondary Action</Button></ModalFooter></ModalContent></Modal></>)}
Control Focus when Modal closes#
When the dialog closes, it returns focus to the element that triggered it. Set
finalFocusRef
to change the element that should receive focus when the modal
closes.
function ReturnFocus() {const { isOpen, onOpen, onClose } = useDisclosure()const finalRef = React.useRef(null)return (<><Box ref={finalRef} tabIndex={-1} aria-label='Focus moved to this box'>Some other content that'll receive focus on close.</Box><Button mt={4} onClick={onOpen}>Open Modal</Button><Modal finalFocusRef={finalRef} isOpen={isOpen} onClose={onClose}><ModalOverlay /><ModalContent><ModalHeader>Modal Title</ModalHeader><ModalCloseButton /><ModalBody><Lorem count={2} /></ModalBody><ModalFooter><Button colorScheme='blue' mr={3} onClick={onClose}>Close</Button><Button variant='ghost'>Secondary Action</Button></ModalFooter></ModalContent></Modal></>)}
Block Scrolling when Modal opens#
For accessibility, it is recommended to block scrolling on the main document
behind the modal. Chakra does this by default but you can set
blockScrollOnMount
to false
to allow scrolling behind the modal.
function BasicUsage() {const { isOpen, onOpen, onClose } = useDisclosure()return (<><Button onClick={onOpen}>Open Modal</Button><Modal blockScrollOnMount={false} isOpen={isOpen} onClose={onClose}><ModalOverlay /><ModalContent><ModalHeader>Modal Title</ModalHeader><ModalCloseButton /><ModalBody><Text fontWeight='bold' mb='1rem'>You can scroll the content behind the modal</Text><Lorem count={2} /></ModalBody><ModalFooter><Button colorScheme='blue' mr={3} onClick={onClose}>Close</Button><Button variant='ghost'>Secondary Action</Button></ModalFooter></ModalContent></Modal></>)}
Focus on specific element#
Chakra automatically sets focus on the first tabbable element in the modal. However, there might be scenarios where you need to manually control where focus goes.
Chakra provides 2 props for this use case:
initialFocusRef
: Theref
of the component that receives focus when the modal opens.finalFocusRef
: Theref
of the component that receives focus when the modal closes.
If you set
finalFocusRef
, internally we setreturnFocusOnClose
tofalse
so it doesn't return focus to the element that triggered it.
function InitialFocus() {const { isOpen, onOpen, onClose } = useDisclosure()const initialRef = React.useRef(null)const finalRef = React.useRef(null)return (<><Button onClick={onOpen}>Open Modal</Button><Button ml={4} ref={finalRef}>I'll receive focus on close</Button><ModalinitialFocusRef={initialRef}finalFocusRef={finalRef}isOpen={isOpen}onClose={onClose}><ModalOverlay /><ModalContent><ModalHeader>Create your account</ModalHeader><ModalCloseButton /><ModalBody pb={6}><FormControl><FormLabel>First name</FormLabel><Input ref={initialRef} placeholder='First name' /></FormControl><FormControl mt={4}><FormLabel>Last name</FormLabel><Input placeholder='Last name' /></FormControl></ModalBody><ModalFooter><Button colorScheme='blue' mr={3}>Save</Button><Button onClick={onClose}>Cancel</Button></ModalFooter></ModalContent></Modal></>)}
Close Modal on Overlay Click#
By default, the modal closes when you click its overlay. You can set
closeOnOverlayClick
to false
if you want the modal to stay visible.
function ManualClose() {const { isOpen, onOpen, onClose } = useDisclosure()return (<><Button onClick={onOpen}>Open Modal</Button><Modal closeOnOverlayClick={false} isOpen={isOpen} onClose={onClose}><ModalOverlay /><ModalContent><ModalHeader>Create your account</ModalHeader><ModalCloseButton /><ModalBody pb={6}><Lorem count={2} /></ModalBody><ModalFooter><Button colorScheme='blue' mr={3}>Save</Button><Button onClick={onClose}>Cancel</Button></ModalFooter></ModalContent></Modal></>)}
Make modal vertically centered#
By default the modal has a vertical offset of 3.75rem
which you can change by
passing top
to the ModalContent
. If you need to vertically center the modal,
pass the isCentered
prop.
If the content within the modal overflows beyond the viewport, don't use this prop. Try setting the overflow behavior instead.
function VerticallyCenter() {const { isOpen, onOpen, onClose } = useDisclosure()return (<><Button onClick={onOpen}>Trigger modal</Button><Modal onClose={onClose} isOpen={isOpen} isCentered><ModalOverlay /><ModalContent><ModalHeader>Modal Title</ModalHeader><ModalCloseButton /><ModalBody><Lorem count={2} /></ModalBody><ModalFooter><Button onClick={onClose}>Close</Button></ModalFooter></ModalContent></Modal></>)}
Changing the transition#
The Modal
comes with a scale transition by default but you can change it by
passing a motionPreset
prop, and setting its value to either slideInBottom
,
slideInRight
, scale
or none
.
function TransitionExample() {const { isOpen, onOpen, onClose } = useDisclosure()return (<><Button onClick={onOpen}>Open Modal</Button><ModalisCenteredonClose={onClose}isOpen={isOpen}motionPreset='slideInBottom'><ModalOverlay /><ModalContent><ModalHeader>Modal Title</ModalHeader><ModalCloseButton /><ModalBody><Lorem count={2} /></ModalBody><ModalFooter><Button colorScheme='blue' mr={3} onClick={onClose}>Close</Button><Button variant='ghost'>Secondary Action</Button></ModalFooter></ModalContent></Modal></>)}
Modal overflow behavior#
If the content within the modal overflows beyond the viewport, you can use the
scrollBehavior
to control how scrolling should happen.
- If set to
inside
, scroll only occurs within theModalBody
. - If set to
outside
, the entireModalContent
will scroll within the viewport.
function ScrollingExample() {const { isOpen, onOpen, onClose } = useDisclosure()const [scrollBehavior, setScrollBehavior] = React.useState('inside')const btnRef = React.useRef(null)return (<><RadioGroup value={scrollBehavior} onChange={setScrollBehavior}><Stack direction='row'><Radio value='inside'>inside</Radio><Radio value='outside'>outside</Radio></Stack></RadioGroup><Button mt={3} ref={btnRef} onClick={onOpen}>Trigger modal</Button><ModalonClose={onClose}finalFocusRef={btnRef}isOpen={isOpen}scrollBehavior={scrollBehavior}><ModalOverlay /><ModalContent><ModalHeader>Modal Title</ModalHeader><ModalCloseButton /><ModalBody><Lorem count={15} /></ModalBody><ModalFooter><Button onClick={onClose}>Close</Button></ModalFooter></ModalContent></Modal></>)}
Modal Sizes#
Pass the size
prop if you need to adjust the size of the modal. Values can be
xs
, sm
, md
, lg
, xl
, or full
.
function SizeExample() {const { isOpen, onOpen, onClose } = useDisclosure()const [size, setSize] = React.useState('md')const handleSizeClick = (newSize) => {setSize(newSize)onOpen()}const sizes = ['xs', 'sm', 'md', 'lg', 'xl', 'full']return (<>{sizes.map((size) => (<ButtononClick={() => handleSizeClick(size)}key={size}m={4}>{`Open ${size} Modal`}</Button>))}<Modal onClose={onClose} size={size} isOpen={isOpen}><ModalOverlay /><ModalContent><ModalHeader>Modal Title</ModalHeader><ModalCloseButton /><ModalBody><Lorem count={2} /></ModalBody><ModalFooter><Button onClick={onClose}>Close</Button></ModalFooter></ModalContent></Modal></>)}
Making other elements Inert#
When the modal is open, it is rendered within a portal and all its siblings have
aria-hidden
set to true
so the only thing screen readers see is the modal.
To disable this behavior, set useInert
to false
.
Prevent focus trapping#
By default the modal, alert dialog and drawer locks the focus inside them. Normally this is what you want to maintain accessibility standards.
While we strongly discourage this use case due to the accessibility impacts, there are certain situations where you might not want the modal to trap focus.
To prevent focus trapping, pass trapFocus
and set its value to false
.
Styling the backdrop#
The backdrop's background by default is set to blackAlpha.600
, but if you want
to achieve a different style you can also use the backdrop style props, like
backdropBlur
, backdropBrightness
, backdropContrast
, backdropHueRotate
,
backdropInvert
, and backdropSaturate
. To use these style props, you'd have
to set the backdropFilter
prop to auto
.
Please be aware that not every browser supports the backdrop-filter CSS property, the example below included.
The filter
property will have no effect on the background because the Modal is
rendered within a Portal
. This means you can only style components within the
Modal by using this property.
function BackdropExample() {const OverlayOne = () => (<ModalOverlaybg='blackAlpha.300'backdropFilter='blur(10px) hue-rotate(90deg)'/>)const OverlayTwo = () => (<ModalOverlaybg='none'backdropFilter='auto'backdropInvert='80%'backdropBlur='2px'/>)const { isOpen, onOpen, onClose } = useDisclosure()const [overlay, setOverlay] = React.useState(<OverlayOne />)return (<><ButtononClick={() => {setOverlay(<OverlayOne />)onOpen()}}>Use Overlay one</Button><Buttonml='4'onClick={() => {setOverlay(<OverlayTwo />)onOpen()}}>Use Overlay two</Button><Modal isCentered isOpen={isOpen} onClose={onClose}>{overlay}<ModalContent><ModalHeader>Modal Title</ModalHeader><ModalCloseButton /><ModalBody><Text>Custom backdrop filters!</Text></ModalBody><ModalFooter><Button onClick={onClose}>Close</Button></ModalFooter></ModalContent></Modal></>)}
Accessibility#
Keyboard and Focus Management#
- When the modal opens, focus is trapped within it.
- When the modal opens, focus is automatically set to the first enabled element,
or the element from
initialFocusRef
. - When the modal closes, focus returns to the element that was focused before
the modal activated, or the element from
finalFocusRef
. - Clicking on the overlay closes the Modal.
- Pressing Esc closes the Modal.
- Scrolling is blocked on the elements behind the modal.
- The modal is rendered in a portal attached to the end of
document.body
to break it out of the source order and make it easy to addaria-hidden
to its siblings.
ARIA#
- The
ModalContent
hasaria-modal
set totrue
. - The
ModalContent
hasaria-labelledby
set to theid
of theModalHeader
. - The
ModalContent
hasaria-describedby
set to theid
of theModalBody
.
Props#
Modal Props#
isOpen
required
isOpen
required
boolean
onClose
required
onClose
required
Callback invoked to close the modal.
() => void
allowPinchZoom
allowPinchZoom
Handle zoom/pinch gestures on iOS devices when scroll locking is enabled.
boolean
false.
autoFocus
autoFocus
If true
, the modal will autofocus the first enabled and interactive
element within the ModalContent
boolean
true
blockScrollOnMount
blockScrollOnMount
If true
, scrolling will be disabled on the body
when the modal opens.
boolean
true
closeOnEsc
closeOnEsc
If true
, the modal will close when the Esc
key is pressed
boolean
true
closeOnOverlayClick
closeOnOverlayClick
If true
, the modal will close when the overlay is clicked
boolean
true
colorScheme
colorScheme
The visual color appearance of the component
"whiteAlpha" | "blackAlpha" | "gray" | "red" | "orange" | "yellow" | "green" | "teal" | "blue" | "cyan" | "purple" | "pink" | "linkedin" | "facebook" | "messenger" | "whatsapp" | "twitter" | "telegram"
finalFocusRef
finalFocusRef
The ref
of element to receive focus when the modal closes.
RefObject<FocusableElement>
id
id
The id
of the modal
string
initialFocusRef
initialFocusRef
The ref
of element to receive focus when the modal opens.
RefObject<FocusableElement>
isCentered
isCentered
If true
, the modal will be centered on screen.
boolean
false
lockFocusAcrossFrames
lockFocusAcrossFrames
Enables aggressive focus capturing within iframes.
- If true
: keep focus in the lock, no matter where lock is active
- If false
: allows focus to move outside of iframe
boolean
false
motionPreset
motionPreset
The transition that should be used for the modal
MotionPreset
scale
onCloseComplete
onCloseComplete
Fires when all exiting nodes have completed animating out
() => void
onEsc
onEsc
Callback fired when the escape key is pressed and focus is within modal
() => void
onOverlayClick
onOverlayClick
Callback fired when the overlay is clicked.
() => void
portalProps
portalProps
Props to be forwarded to the portal component
Pick<
PortalProps,
"appendToParentPortal" | "containerRef"
>
preserveScrollBarGap
preserveScrollBarGap
If true
, a `padding-right` will be applied to the body element
that's equal to the width of the scrollbar.
This can help prevent some unpleasant flickering effect
and content adjustment when the modal opens
boolean
true
returnFocusOnClose
returnFocusOnClose
If true
, the modal will return focus to the element that triggered it when it closes.
boolean
true
scrollBehavior
scrollBehavior
Where scroll behavior should originate.
- If set to inside
, scroll only occurs within the ModalBody
.
- If set to outside
, the entire ModalContent
will scroll within the viewport.
ScrollBehavior
outside
size
size
The size of the Modal
"xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "full"
md
trapFocus
trapFocus
If false
, focus lock will be disabled completely.
This is useful in situations where you still need to interact with
other surrounding elements.
🚨Warning: We don't recommend doing this because it hurts the
accessibility of the modal, based on WAI-ARIA specifications.
boolean
true
useInert
useInert
A11y: If true
, the siblings of the modal
will have `aria-hidden`
set to true
so that screen readers can only see the modal
.
This is commonly known as making the other elements **inert**
boolean
true
variant
variant
The variant of the Modal
string
Other components#
ModalOverlay
,ModalHeader
,ModalFooter
andModalBody
composesBox
component.ModalCloseButton
composesCloseButton
.
Theming#
The Modal
component is a multipart component.
To learn more about styling multipart components, visit the Component Style page.
Anatomy#
- A:
header
- B:
overlay
- C:
dialogContainer
- D:
dialog
- E:
closeButton
- F:
body
- G:
footer
You can find more information in the source here.
Theming properties#
The properties that affect the theming of the Modal
component are:
variant
: The visual variant of theModal
. Defaults to baseStyle.size
: The size of theModal
. Defaults to md.
Theming utilities#
createMultiStyleConfigHelpers
: a function that returns a set of utilities for creating style configs for a multipart component (definePartsStyle and defineMultiStyleConfig).definePartsStyle
: a function used to create multipart style objects.defineMultiStyleConfig
: a function used to define the style configuration for a multipart component.
Customizing the default theme#
import { modalAnatomy as parts } from '@chakra-ui/anatomy'import { createMultiStyleConfigHelpers } from '@chakra-ui/styled-system'const { definePartsStyle, defineMultiStyleConfig } =createMultiStyleConfigHelpers(parts.keys)const baseStyle = definePartsStyle({// define the part you're going to styleoverlay: {bg: 'blackAlpha.200', //change the background},dialog: {borderRadius: 'md',bg: `purple.100`,},})export const modalTheme = defineMultiStyleConfig({baseStyle,})
After customizing the modal theme, we can import it in our theme file and add it in the components property:
import { extendTheme } from '@chakra-ui/react'import { modalTheme } from './components/theme/modal'export const theme = extendTheme({components: { Modal: modalTheme },})
This is a crucial step to make sure that any changes that we make to the
Modal
theme are applied.
Adding a custom size#
Let's assume we want to change the font size of both header and dialog.
import { modalAnatomy as parts } from '@chakra-ui/anatomy'import {createMultiStyleConfigHelpers,defineStyle,} from '@chakra-ui/styled-system'const { definePartsStyle, defineMultiStyleConfig } =createMultiStyleConfigHelpers(parts.keys)const xl = defineStyle({px: '6',py: '2',fontSize: 'xl',})const sm = defineStyle({fontSize: 'sm',py: '6',})const sizes = {xl: definePartsStyle({ header: sm, dialog: xl }),}export const modalTheme = defineMultiStyleConfig({sizes,})// Now we can use the new `xl` size<Modal size="xl" ... />
Every time you're adding anything new to the theme, you'd need to run the CLI command to get proper autocomplete in your IDE. You can learn more about the CLI tool here.
Adding a custom variant#
Let's assume we want to include a custom variant. Here's how we can do that:
import { modalAnatomy as parts } from '@chakra-ui/anatomy'import { createMultiStyleConfigHelpers } from '@chakra-ui/styled-system'const { definePartsStyle, defineMultiStyleConfig } =createMultiStyleConfigHelpers(parts.keys)const purple = definePartsStyle({dialog: {borderRadius: 'md',bg: `purple.100`,// Let's also provide dark mode alternatives_dark: {bg: `purple.600`,color: 'white',},},})export const modalTheme = defineMultiStyleConfig({variants: { purple },})// Now we can use the new `purple` variant<Modal variant='purple' ... />
Changing the default properties#
Let's assume we want to change the default size and variant of every Modal
in
our app.
import { modalAnatomy as parts } from '@chakra-ui/anatomy'import { createMultiStyleConfigHelpers } from '@chakra-ui/styled-system'const { defineMultiStyleConfig } = createMultiStyleConfigHelpers(parts.keys)export const modalTheme = defineMultiStyleConfig({defaultProps: {size: 'xl',variant: 'purple',},})// This saves you time, instead of manually setting the size and variant every time you use an Modal:<Modal size="xl" variant="purple" ... />
Showcase#
import { Modal, ModalOverlay, ModalContent, ModalHeader, ModalFooter, ModalBody, ModalCloseButton, useDisclosure, Button, Box, IconButton, useColorMode, } from "@chakra-ui/react"; import { FaMoon, FaSun } from "react-icons/fa"; export default function App() { const { isOpen, onOpen, onClose } = useDisclosure(); const { toggleColorMode, colorMode } = useColorMode(); return ( <Box position="relative" h="100vh" p={12}> <Button onClick={onOpen}>Open Modal</Button> <Modal isOpen={isOpen} onClose={onClose}> <ModalOverlay /> <ModalContent> <ModalHeader>Modal Title</ModalHeader> <ModalCloseButton /> <ModalBody> Lorem ipsum dolor sit amet. Et corporis quisquam eum adipisci impedit quo eius nisi est aspernatur vel veniam velit qui numquam totam. Vel debitis sint ut culpa cupiditate a dolores voluptates ut vero voluptatem non rerum aliquid qui sapiente possimus. Eum natus voluptates hic galisum architecto et nobis incidunt ut odio ipsum qui repudiandae voluptatem. </ModalBody> <ModalFooter> <Button colorScheme="blue" mr={3} onClick={onClose}> Close </Button> <Button variant="ghost">Secondary Action</Button> </ModalFooter> </ModalContent> </Modal> <IconButton aria-label="change theme" rounded="full" size="xs" position="absolute" bottom={4} left={4} onClick={toggleColorMode} icon={colorMode === "dark" ? <FaSun /> : <FaMoon />} /> </Box> ); }