dialog-el:
[ This description is mirrored from README.md at github.com/jshcrowthe/dialog-el on 2019-05-10 ]
<dialog-el>
This repo is a Custom Element for creating accessible dialogs/modals It is heavily inspired by Polymer’s paper-dialog and the A11y Dialog fork from Edenspiekermann.
Dependencies
There are no non-native dependencies in this Web Component. If your browser supports the following two things you are good. If not you will need to make sure you load the Polyfills first
- Promises
- Web Components (including Shadow DOM)
Utilization
Examples:
HTML
<dialog-el id='dialog'>
<h1>A header</h1>
<p>Dialog Content</p>
</dialog-el>
<dialog-el id='modal' modal>
<h1>A modal</h1>
<p>Modal Content</p>
</dialog-el>
JavaScript
var dialogEl = document.createElement('dialog-el');
document.body.appendChild(dialogEl);
Methods
-
dialog.showThis is the means of displaying the dialog/modal. Simply select the element and call this method to display the dialog/modal.
Example:
var dialog = document.querySelector('dialog-el'); dialog.show();This function returns a
Promisethat you can use to perform operations after the dialog/modal has displayed.NOTE: The
showfunction, if called on an already open dialog, will throw an errordialog.showcan also take an optional DOM Element as an argument. If passed the dialog will attempt to intelligently
position itself relative to the passed element.Example:
var dialog = document.querySelector('dialog-el'); var button = document.querySelector('#myMagicButton'); dialog.show(button);Positioning will be handled based on the existence of a valid
arrowPositionvalue. If the value does not exist
the dialog will position itself where there is the most available screen real estate. If the value does exist,
the dialog will be positioned such that the arrow points at the center of the passed element.Restrictions
-
If your
dialog-elis positioned inside of a container withoverflow: hiddenthis can cause
the dialog to not be visible on the screen. -
Your dialog must have a fixed height & width to ensure correct positioning, consider doing
something like the following:<style> .sizeMe { width: 500px; height: 300px; } </style> <dialog-el> <div class='sizeMe'> <!--Content--> </div> </dialog-el>
-
-
dialog.closeThis is the means of closing an open dialog/modal. Simply select the element and call this method to close it.
Example:
var dialog = document.querySelector('dialog-el'); dialog.close();This function returns a
Promisethat you can use to perform operations after the dialog/modal has closed.NOTE: The
closefunction, if called on an already closed dialog, will throw an error
Properties
-
modalIf set the dialog will render as a fixed position modal instead of an absolute positioned dialog.
-
arrowDirectionBased on the value of this property (left, right, top, bottom), it will render an arrow on that side of the dialog. For example, a value of
leftadds an arrow to the left side of the dialog.Example:
<dialog-el arrow-direction='left'> <h1>A header</h1> <p>Dialog Content</p> </dialog-el>var dialog = document.createElement('dialog-el'); dialog.arrowDirection = 'left'; document.body.appendChild(dialog);NOTE: This does not work with the
modalproperty
Events
-
dialog-openedFired whenever the dialog is opened.
-
dialog-closedFired whenever the dialog is closed.
CSS Custom Properties
Use these to override default styles
| Property Name | Description | Default Value |
|---|---|---|
--dialog-el-padding |
Used as the padding for the dialog | 15px |
--dialog-el-background |
Used for the background property of the dialog |
#FFFFFF |
These defaults effectively wrap your provided local DOM in a 15px white border. Override them to change the appearance.