Files
tabler/shared/components/modals/Modal.astro
T

31 lines
1.1 KiB
Plaintext

---
// Modal shell markup. Wrap with <CaptureModal> at the call site to emit at the
// end of <body> (see PageModals). For inline gallery demos use ModalInline.
interface Props {
modalId?: string
size?: string
top?: boolean
scrollable?: boolean
class?: string
show?: boolean
style?: string
/** id of the title element the root references via aria-labelledby; defaults to `modal-${modalId}-title` */
titleId?: string
}
const { modalId = 'simple', size, top, scrollable, class: className, show, style, titleId = `modal-${modalId}-title` } = Astro.props
const modalClass = ['modal modal-blur fade', className, show && 'show'].filter(Boolean).join(' ')
const dialogClass = ['modal-dialog', size && `modal-${size}`, !top && 'modal-dialog-centered', scrollable && 'modal-dialog-scrollable'].filter(Boolean).join(' ')
---
<!-- BEGIN MODAL -->
<div class={modalClass} style={style} id={`modal-${modalId}`} tabindex="-1" role="dialog" aria-modal="true" aria-labelledby={titleId} aria-hidden={show ? undefined : 'true'}>
<div class={dialogClass}>
<div class="modal-content">
<slot />
</div>
</div>
</div>
<!-- END MODAL -->