mirror of https://github.com/go-gitea/gitea
Git with a cup of tea, painless self-hosted git service
Mirror for internal git.with.parts use
https://git.with.parts
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
835 B
30 lines
835 B
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');
|
|
});
|
|
}
|
|
|