2022-01-28 21:00:11 +00:00
|
|
|
import $ from 'jquery';
|
2022-10-01 14:26:38 +00:00
|
|
|
import {createApp} from 'vue';
|
2021-07-13 18:09:19 +00:00
|
|
|
import ContextPopup from '../components/ContextPopup.vue';
|
2021-10-22 14:34:01 +00:00
|
|
|
import {parseIssueHref} from '../utils.js';
|
2022-07-18 22:33:34 +00:00
|
|
|
import {createTippy} from '../modules/tippy.js';
|
2020-02-12 01:53:18 +00:00
|
|
|
|
2022-12-23 16:03:11 +00:00
|
|
|
export function initContextPopups() {
|
2020-01-20 04:39:21 +00:00
|
|
|
const refIssues = $('.ref-issue');
|
|
|
|
if (!refIssues.length) return;
|
|
|
|
|
|
|
|
refIssues.each(function () {
|
2021-09-15 08:45:27 +00:00
|
|
|
if ($(this).hasClass('ref-external-issue')) {
|
|
|
|
return;
|
|
|
|
}
|
2021-10-22 14:34:01 +00:00
|
|
|
|
|
|
|
const {owner, repo, index} = parseIssueHref($(this).attr('href'));
|
|
|
|
if (!owner) return;
|
2020-01-20 04:39:21 +00:00
|
|
|
|
2021-07-13 18:09:19 +00:00
|
|
|
const el = document.createElement('div');
|
|
|
|
this.parentNode.insertBefore(el, this.nextSibling);
|
2020-01-20 04:39:21 +00:00
|
|
|
|
2022-10-01 14:26:38 +00:00
|
|
|
const view = createApp(ContextPopup);
|
2020-01-20 04:39:21 +00:00
|
|
|
|
2021-07-13 18:09:19 +00:00
|
|
|
try {
|
2022-10-01 14:26:38 +00:00
|
|
|
view.mount(el);
|
2021-07-13 18:09:19 +00:00
|
|
|
} catch (err) {
|
|
|
|
console.error(err);
|
|
|
|
el.textContent = 'ContextPopup failed to load';
|
2020-01-20 04:39:21 +00:00
|
|
|
}
|
|
|
|
|
2022-07-18 22:33:34 +00:00
|
|
|
createTippy(this, {
|
|
|
|
content: el,
|
|
|
|
interactive: true,
|
2023-03-05 15:40:50 +00:00
|
|
|
interactiveBorder: 5,
|
2021-07-13 18:09:19 +00:00
|
|
|
onShow: () => {
|
2023-03-05 14:23:42 +00:00
|
|
|
el.firstChild.dispatchEvent(new CustomEvent('ce-load-context-popup', {detail: {owner, repo, index}}));
|
2022-07-18 22:33:34 +00:00
|
|
|
}
|
2020-01-20 04:39:21 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|