mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-09-30 19:22:08 +00:00
34 lines
1.3 KiB
TypeScript
34 lines
1.3 KiB
TypeScript
|
// Copyright 2025 The Forgejo Authors. All rights reserved.
|
||
|
// SPDX-License-Identifier: MIT
|
||
|
|
||
|
// showModal will show the given modal and run `onApprove` if the approve/ok/yes
|
||
|
// button is pressed.
|
||
|
export function showModal(modalID: string, onApprove: () => void) {
|
||
|
const modal = document.getElementById(modalID) as HTMLDialogElement;
|
||
|
// Move the modal to `<body>`, to avoid inheriting any bad CSS or if the
|
||
|
// parent becomes `display: hidden`.
|
||
|
document.body.append(modal);
|
||
|
|
||
|
// Close the modal if the cancel button is pressed.
|
||
|
modal.querySelector('.cancel')?.addEventListener('click', () => {
|
||
|
modal.close();
|
||
|
}, {once: true, passive: true});
|
||
|
modal.querySelector('.ok')?.addEventListener('click', onApprove, {once: true, passive: true});
|
||
|
|
||
|
// The modal is ready to be shown.
|
||
|
modal.showModal();
|
||
|
}
|
||
|
|
||
|
// NOTE: Can be replaced in late 2026 with `closedBy` attribute on `<dialog>` element.
|
||
|
export function initModalClose() {
|
||
|
document.addEventListener('click', (event) => {
|
||
|
const dialog = document.querySelector<HTMLDialogElement>('dialog[open]');
|
||
|
// No open dialogs on page, nothing to do.
|
||
|
if (dialog === null) return;
|
||
|
|
||
|
const target = event.target as HTMLElement;
|
||
|
// User clicked dialog itself (not it's content), likely ::backdrop, so close it.
|
||
|
if (dialog === target) dialog.close();
|
||
|
});
|
||
|
}
|