mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 06:48:56 +00:00
4124f8ef70
Backport #25254 by @wxiaoguang Close #25249 Use "dialog" for the role ![image](https://github.com/go-gitea/gitea/assets/2114189/2b5b7552-48bc-4ecf-947b-34917232cff9) Co-authored-by: wxiaoguang <wxiaoguang@gmail.com> Co-authored-by: silverwind <me@silverwind.io>
44 lines
1.2 KiB
JavaScript
44 lines
1.2 KiB
JavaScript
import $ from 'jquery';
|
|
import {createApp} from 'vue';
|
|
import ContextPopup from '../components/ContextPopup.vue';
|
|
import {parseIssueHref} from '../utils.js';
|
|
import {createTippy} from '../modules/tippy.js';
|
|
|
|
export function initContextPopups() {
|
|
const refIssues = $('.ref-issue');
|
|
attachRefIssueContextPopup(refIssues);
|
|
}
|
|
|
|
export function attachRefIssueContextPopup(refIssues) {
|
|
for (const refIssue of refIssues) {
|
|
if (refIssue.classList.contains('ref-external-issue')) {
|
|
return;
|
|
}
|
|
|
|
const {owner, repo, index} = parseIssueHref(refIssue.getAttribute('href'));
|
|
if (!owner) return;
|
|
|
|
const el = document.createElement('div');
|
|
refIssue.parentNode.insertBefore(el, refIssue.nextSibling);
|
|
|
|
const view = createApp(ContextPopup);
|
|
|
|
try {
|
|
view.mount(el);
|
|
} catch (err) {
|
|
console.error(err);
|
|
el.textContent = 'ContextPopup failed to load';
|
|
}
|
|
|
|
createTippy(refIssue, {
|
|
content: el,
|
|
placement: 'top-start',
|
|
interactive: true,
|
|
role: 'dialog',
|
|
interactiveBorder: 5,
|
|
onShow: () => {
|
|
el.firstChild.dispatchEvent(new CustomEvent('ce-load-context-popup', {detail: {owner, repo, index}}));
|
|
}
|
|
});
|
|
}
|
|
}
|