Dialog
<wa-dialog>
Dialogs, sometimes called "modals", appear above the page and require the user's immediate attention.
<wa-dialog label="Dialog" id="dialog-overview"> Lorem ipsum dolor sit amet, consectetur adipiscing elit. <wa-button slot="footer" variant="brand" data-dialog="close">Close</wa-button> </wa-dialog> <wa-button>Open Dialog</wa-button> <script> const dialog = document.querySelector('#dialog-overview'); const openButton = dialog.nextElementSibling; openButton.addEventListener('click', () => (dialog.open = true)); </script>
Examples Jump to heading
Dialog without Header Jump to heading
Headers are enabled by default. To render a dialog without a header, add the without-header
attribute.
<wa-dialog label="Dialog" without-header class="dialog-without-header"> Lorem ipsum dolor sit amet, consectetur adipiscing elit. <wa-button slot="footer" variant="brand" data-dialog="close">Close</wa-button> </wa-dialog> <wa-button>Open Dialog</wa-button> <script> const dialog = document.querySelector('.dialog-without-header'); const openButton = dialog.nextElementSibling; openButton.addEventListener('click', () => (dialog.open = true)); </script>
Dialog with Footer Jump to heading
Footers can be used to display titles and more. Use the footer
slot to add a footer to the dialog.
<wa-dialog label="Dialog" class="dialog-footer"> Lorem ipsum dolor sit amet, consectetur adipiscing elit. <wa-button slot="footer" variant="brand" data-dialog="close">Close</wa-button> </wa-dialog> <wa-button>Open Dialog</wa-button> <script> const dialog = document.querySelector('.dialog-footer'); const openButton = dialog.nextElementSibling; openButton.addEventListener('click', () => (dialog.open = true)); </script>
Opening and Closing Dialogs Declaratively Jump to heading
You can open and close dialogs with JavaScript by toggling the open
attribute, but you can also do it declaratively. Add the data-dialog="open id"
to any button on the page, where id
is the ID of the dialog you want to open.
<wa-dialog label="Dialog" id="dialog-opening"> Lorem ipsum dolor sit amet, consectetur adipiscing elit. <wa-button slot="footer" variant="brand" data-dialog="close">Close</wa-button> </wa-dialog> <wa-button data-dialog="open dialog-opening">Open Dialog</wa-button>
Similarly, you can add data-dialog="close"
to a button inside of a dialog to tell it to close.
<wa-dialog label="Dialog" id="dialog-dismiss"> Lorem ipsum dolor sit amet, consectetur adipiscing elit. <wa-button slot="footer" variant="brand" data-dialog="close">Close</wa-button> </wa-dialog> <wa-button data-dialog="open dialog-dismiss">Open Dialog</wa-button>
Custom Width Jump to heading
Just use the --width
custom property to set the dialog's width.
<wa-dialog label="Dialog" class="dialog-width" style="--width: 50vw;"> Lorem ipsum dolor sit amet, consectetur adipiscing elit. <wa-button slot="footer" variant="brand" data-dialog="close">Close</wa-button> </wa-dialog> <wa-button>Open Dialog</wa-button> <script> const dialog = document.querySelector('.dialog-width'); const openButton = dialog.nextElementSibling; openButton.addEventListener('click', () => (dialog.open = true)); </script>
Scrolling Jump to heading
By design, a dialog's height will never exceed that of the viewport. As such, dialogs will not scroll with the page ensuring the header and footer are always accessible to the user.
Scroll down and give it a try! 👇
<wa-dialog label="Dialog" class="dialog-scrolling"> <div style="height: 150vh; border: dashed 2px var(--wa-color-surface-border); padding: 0 1rem;"> <p>Scroll down and give it a try! 👇</p> </div> <wa-button slot="footer" variant="brand" data-dialog="close">Close</wa-button> </wa-dialog> <wa-button>Open Dialog</wa-button> <script> const dialog = document.querySelector('.dialog-scrolling'); const openButton = dialog.nextElementSibling; openButton.addEventListener('click', () => (dialog.open = true)); </script>
Header Actions Jump to heading
The header shows a functional close button by default. You can use the header-actions
slot to add additional buttons if needed.
<wa-dialog label="Dialog" class="dialog-header-actions"> <wa-button class="new-window" slot="header-actions" appearance="plain"> <wa-icon name="arrow-up-right-from-square" variant="solid" label="Open in new window"></wa-icon> </wa-button> Lorem ipsum dolor sit amet, consectetur adipiscing elit. <wa-button slot="footer" variant="brand" data-dialog="close">Close</wa-button> </wa-dialog> <wa-button>Open Dialog</wa-button> <script> const dialog = document.querySelector('.dialog-header-actions'); const openButton = dialog.nextElementSibling; const newWindowButton = dialog.querySelector('.new-window'); openButton.addEventListener('click', () => (dialog.open = true)); newWindowButton.addEventListener('click', () => window.open(location.href)); </script>
Light Dismissal Jump to heading
If you want the dialog to close when the user clicks on the overlay, add the light-dismiss
attribute.
<wa-dialog label="Dialog" light-dismiss class="dialog-light-dismiss"> This dialog will close when you click on the overlay. <wa-button slot="footer" variant="brand" data-dialog="close">Close</wa-button> </wa-dialog> <wa-button>Open Dialog</wa-button> <script> const dialog = document.querySelector('.dialog-light-dismiss'); const openButton = dialog.nextElementSibling; openButton.addEventListener('click', () => (dialog.open = true)); </script>
Preventing the Dialog from Closing Jump to heading
By default, dialogs will close when the user clicks the close button, clicks the overlay, or presses the Escape key. In most cases, the default behavior is the best behavior in terms of UX. However, there are situations where this may be undesirable, such as when data loss will occur.
To keep the dialog open in such cases, you can cancel the wa-hide
event. When canceled, the dialog will remain open and pulse briefly to draw the user's attention to it.
You can use event.detail.source
to determine which element triggered the request to close. This example prevents the dialog from closing when the overlay is clicked, but allows the close button or Escape to dismiss it.
<wa-dialog label="Dialog" class="dialog-deny-close"> This dialog will only close when you click the button below. <wa-button slot="footer" variant="brand" data-dialog="close">Only this button will close it</wa-button> </wa-dialog> <wa-button>Open Dialog</wa-button> <script> const dialog = document.querySelector('.dialog-deny-close'); const openButton = dialog.nextElementSibling; const closeButton = dialog.querySelector('wa-button[slot="footer"]'); openButton.addEventListener('click', () => (dialog.open = true)); // Prevent the dialog from closing unless the close button was clicked dialog.addEventListener('wa-hide', event => { if (event.detail.source !== closeButton) { event.preventDefault(); } }); </script>
Setting Initial Focus Jump to heading
To give focus to a specific element when the dialog opens, use the autofocus
attribute.
<wa-dialog label="Dialog" class="dialog-focus"> <wa-input autofocus placeholder="I will have focus when the dialog is opened"></wa-input> <wa-button slot="footer" variant="brand" data-dialog="close">Close</wa-button> </wa-dialog> <wa-button>Open Dialog</wa-button> <script> const dialog = document.querySelector('.dialog-focus'); const input = dialog.querySelector('wa-input'); const openButton = dialog.nextElementSibling; openButton.addEventListener('click', () => (dialog.open = true)); </script>
Slots Jump to heading
Learn more about using slots.
Name | Description |
---|---|
(default) | The dialog's main content. |
label
|
The dialog's label. Alternatively, you can use the label attribute. |
header-actions
|
Optional actions to add to the header. Works best with <wa-button> . |
footer
|
The dialog's footer, usually one or more buttons representing various options. |
Attributes & Properties Jump to heading
Learn more about attributes and properties.
Name | Description | Reflects | |
---|---|---|---|
open open |
Indicates whether or not the dialog is open. Toggle this attribute to show and hide the dialog.
Type
boolean Default
false |
|
|
label label |
The dialog's label as displayed in the header. You should always include a relevant label, as it is required for
proper accessibility. If you need to display HTML, use the
label slot instead.Type
string Default
'' |
|
|
withoutHeader without-header |
Disables the header. This will also remove the default close button.
Type
boolean Default
false |
|
|
lightDismiss light-dismiss |
When enabled, the dialog will be closed when the user clicks outside of it.
Type
boolean Default
false |
Events Jump to heading
Learn more about events.
Name | Description |
---|---|
wa-show |
Emitted when the dialog opens. |
wa-after-show |
Emitted after the dialog opens and all animations are complete. |
wa-hide |
Emitted when the dialog is requested to close. Calling event.preventDefault() will prevent the dialog from closing. You can inspect event.detail.source to see which element caused the dialog to close. If the source is the dialog element itself, the user has pressed Escape or the dialog has been closed programmatically. Avoid using this unless closing the dialog will result in destructive behavior such as data loss. |
wa-after-hide |
Emitted after the dialog closes and all animations are complete. |
CSS custom properties Jump to heading
Learn more about CSS custom properties.
Name | Description |
---|---|
--spacing |
The amount of space around and between the dialog's content.
|
--width |
The preferred width of the dialog. Note that the dialog will shrink to accommodate smaller screens.
|
--show-duration |
The animation duration when showing the dialog.
Default
200ms
|
--hide-duration |
The animation duration when hiding the dialog.
Default
200ms
|
CSS parts Jump to heading
Learn more about CSS parts.
Name | Description |
---|---|
header |
The dialog's header. This element wraps the title and header actions. |
header-actions |
Optional actions to add to the header. Works best with <wa-button> . |
title |
The dialog's title. |
close-button |
The close button, a <wa-button> . |
close-button__base |
The close button's exported base part. |
body |
The dialog's body. |
footer |
The dialog's footer. |
Dependencies Jump to heading
This component automatically imports the following elements. Sub-dependencies, if any exist, will also be included in this list.
Importing Jump to heading
The autoloader is the recommended way to import components. If you prefer to do it manually, use one of the following code snippets.
To manually import this component from the CDN, use the following code.
import 'https://early.webawesome.com/[email protected]/dist/components/dialog/dialog.js';
To manually import this component from NPM, use the following code.
import '@awesome.me/webawesome/dist/components/dialog/dialog.js';
To manually import this component from React, use the following code.
import '@awesome.me/webawesome/dist/react/dialog';