2024-07-07 23:32:30 +08:00
|
|
|
import {svg} from '../../svg.ts';
|
2023-06-19 15:46:50 +08:00
|
|
|
import {htmlEscape} from 'escape-goat';
|
2024-07-07 23:32:30 +08:00
|
|
|
import {createElementFromHTML} from '../../utils/dom.ts';
|
2024-11-15 02:48:41 +08:00
|
|
|
import {fomanticQuery} from '../../modules/fomantic/base.ts';
|
2023-06-19 15:46:50 +08:00
|
|
|
|
|
|
|
const {i18n} = window.config;
|
|
|
|
|
2024-11-26 23:36:55 +08:00
|
|
|
export function confirmModal({header = '', content = '', confirmButtonColor = 'primary'} = {}) {
|
2023-06-19 15:46:50 +08:00
|
|
|
return new Promise((resolve) => {
|
2024-11-26 23:36:55 +08:00
|
|
|
const headerHtml = header ? `<div class="header">${htmlEscape(header)}</div>` : '';
|
2024-06-07 21:42:31 +08:00
|
|
|
const modal = createElementFromHTML(`
|
|
|
|
<div class="ui g-modal-confirm modal">
|
2024-11-26 23:36:55 +08:00
|
|
|
${headerHtml}
|
2024-06-07 21:42:31 +08:00
|
|
|
<div class="content">${htmlEscape(content)}</div>
|
|
|
|
<div class="actions">
|
|
|
|
<button class="ui cancel button">${svg('octicon-x')} ${htmlEscape(i18n.modal_cancel)}</button>
|
|
|
|
<button class="ui ${confirmButtonColor} ok button">${svg('octicon-check')} ${htmlEscape(i18n.modal_confirm)}</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
`);
|
|
|
|
document.body.append(modal);
|
2024-11-15 02:48:41 +08:00
|
|
|
const $modal = fomanticQuery(modal);
|
2023-06-19 15:46:50 +08:00
|
|
|
$modal.modal({
|
|
|
|
onApprove() {
|
|
|
|
resolve(true);
|
|
|
|
},
|
|
|
|
onHidden() {
|
|
|
|
$modal.remove();
|
|
|
|
resolve(false);
|
|
|
|
},
|
|
|
|
}).modal('show');
|
|
|
|
});
|
|
|
|
}
|