2019-09-12 01:34:11 +02:00
|
|
|
import html from 'choo/html';
|
|
|
|
|
|
|
|
export const modal = (modalId, controller, contentHTML, options = {}) => {
|
|
|
|
/* Options:
|
|
|
|
* controller <class>: Pass the controller class with state; Requires get/set for openModal in state.
|
|
|
|
* buttonHTML <choo/html>: Displayed in place of the default button to open the modal
|
|
|
|
* buttonText <string>: Displayed if no buttonHTML is specified
|
|
|
|
* noHeader <bool>: Set to `true` and exclude headerHTML to not include a modal header
|
|
|
|
* headerHTML <choo/html>: Displayed in place of the default header; Recommended to use `<header>` tag
|
|
|
|
* headerText <string>: Displayed in an `<h3>` if no header is specified
|
|
|
|
* noFooter <bool>: Set to `true` and exclude footerHTML to not include a modal footer
|
|
|
|
* footerHTML <choo/html>: Displayed in place of the default footer; Recommended to use `<footer>` tag
|
2019-09-13 01:04:50 +02:00
|
|
|
* onShow <function>: Runs when the modal opens.
|
|
|
|
* onHide <function>: Runs when the modal closes.
|
2019-09-12 01:34:11 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
const isOpen = controller.openModal === modalId;
|
|
|
|
|
|
|
|
return [
|
|
|
|
(
|
|
|
|
typeof options.buttonHTML === 'undefined'
|
|
|
|
? html`<label for=${modalId} class="button">${options.buttonText}</label>`
|
|
|
|
: options.buttonHTML
|
|
|
|
),
|
|
|
|
|
|
|
|
// Modals in Picnic CSS uses pure CSS with clever usage of invisible checkboxes and labels
|
|
|
|
html`<div class="modal">
|
2019-09-13 01:04:50 +02:00
|
|
|
<input id=${modalId} type="checkbox" ${isOpen ? 'checked' : null} onchange=${event => {
|
|
|
|
controller.openModal = !isOpen ? modalId : null; // If it's not already open, set it to the open one
|
|
|
|
if (typeof options.onShow !== 'undefined' && event.target.checked) {
|
|
|
|
options.onShow();
|
|
|
|
}
|
|
|
|
if (typeof options.onHide !== 'undefined' && !event.target.checked) {
|
|
|
|
options.onHide();
|
|
|
|
}
|
|
|
|
}}>
|
2019-09-12 01:34:11 +02:00
|
|
|
<label for=${modalId} class="overlay"></label>
|
2019-09-13 01:04:50 +02:00
|
|
|
|
2019-09-12 07:41:05 +02:00
|
|
|
<article style=${typeof options.styles !== 'undefined' ? options.styles : null}>
|
2019-09-12 01:34:11 +02:00
|
|
|
|
|
|
|
${typeof options.headerHTML === 'undefined'
|
|
|
|
? (
|
|
|
|
options.noHeader
|
|
|
|
? null
|
|
|
|
: html`<header>
|
|
|
|
<h3>${options.headerText}</h3>
|
|
|
|
<label for=${modalId} class="close">${'\u00d7'}</label>
|
|
|
|
</header>`
|
|
|
|
)
|
|
|
|
: options.headerHTML
|
|
|
|
}
|
|
|
|
|
|
|
|
<section class="content">
|
|
|
|
${typeof contentHTML === 'undefined'
|
|
|
|
? null
|
|
|
|
: contentHTML
|
|
|
|
}
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
|
|
${typeof options.footerHTML === 'undefined'
|
|
|
|
? (
|
|
|
|
options.noFooter
|
|
|
|
? null
|
|
|
|
: html`<footer>
|
|
|
|
<label for=${modalId} class="button dangerous">
|
|
|
|
Close
|
|
|
|
</label>
|
|
|
|
</footer>`
|
|
|
|
)
|
|
|
|
: options.footerHTML
|
|
|
|
}
|
|
|
|
</article>
|
|
|
|
</div>`,
|
|
|
|
];
|
|
|
|
}
|