2023-06-19 07:46:50 +00:00
|
|
|
import $ from 'jquery';
|
2024-07-07 15:32:30 +00:00
|
|
|
import {svg} from '../../svg.ts';
|
2023-06-19 07:46:50 +00:00
|
|
|
import {htmlEscape} from 'escape-goat';
|
2024-07-07 15:32:30 +00:00
|
|
|
import {createElementFromHTML} from '../../utils/dom.ts';
|
2023-06-19 07:46:50 +00:00
|
|
|
|
|
|
|
const {i18n} = window.config;
|
|
|
|
|
2024-06-07 13:42:31 +00:00
|
|
|
export function confirmModal(content, {confirmButtonColor = 'primary'} = {}) {
|
2023-06-19 07:46:50 +00:00
|
|
|
return new Promise((resolve) => {
|
2024-06-07 13:42:31 +00:00
|
|
|
const modal = createElementFromHTML(`
|
|
|
|
<div class="ui g-modal-confirm modal">
|
|
|
|
<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);
|
|
|
|
const $modal = $(modal);
|
2023-06-19 07:46:50 +00:00
|
|
|
$modal.modal({
|
|
|
|
onApprove() {
|
|
|
|
resolve(true);
|
|
|
|
},
|
|
|
|
onHidden() {
|
|
|
|
$modal.remove();
|
|
|
|
resolve(false);
|
|
|
|
},
|
|
|
|
}).modal('show');
|
|
|
|
});
|
|
|
|
}
|