10.0.0 base
Some checks are pending
Integration tests for the release process / release-simulation (push) Waiting to run
Some checks are pending
Integration tests for the release process / release-simulation (push) Waiting to run
This commit is contained in:
commit
49fe13eb4a
6629 changed files with 777382 additions and 0 deletions
30
web_src/js/features/comp/ConfirmModal.js
Normal file
30
web_src/js/features/comp/ConfirmModal.js
Normal file
|
@ -0,0 +1,30 @@
|
|||
import $ from 'jquery';
|
||||
import {svg} from '../../svg.js';
|
||||
import {htmlEscape} from 'escape-goat';
|
||||
|
||||
const {i18n} = window.config;
|
||||
|
||||
export async function confirmModal(opts = {content: '', buttonColor: 'primary'}) {
|
||||
return new Promise((resolve) => {
|
||||
const $modal = $(`
|
||||
<div class="ui g-modal-confirm modal">
|
||||
<div class="content">${htmlEscape(opts.content)}</div>
|
||||
<div class="actions">
|
||||
<button class="ui cancel button">${svg('octicon-x')} ${i18n.modal_cancel}</button>
|
||||
<button class="ui ${opts.buttonColor || 'primary'} ok button">${svg('octicon-check')} ${i18n.modal_confirm}</button>
|
||||
</div>
|
||||
</div>
|
||||
`);
|
||||
|
||||
$modal.appendTo(document.body);
|
||||
$modal.modal({
|
||||
onApprove() {
|
||||
resolve(true);
|
||||
},
|
||||
onHidden() {
|
||||
$modal.remove();
|
||||
resolve(false);
|
||||
},
|
||||
}).modal('show');
|
||||
});
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue