2021-07-13 18:09:19 +00:00
|
|
|
import Vue from 'vue';
|
2020-02-12 01:53:18 +00:00
|
|
|
|
2021-07-13 18:09:19 +00:00
|
|
|
import ContextPopup from '../components/ContextPopup.vue';
|
2020-02-12 01:53:18 +00:00
|
|
|
|
|
|
|
export default function initContextPopups() {
|
2020-01-20 04:39:21 +00:00
|
|
|
const refIssues = $('.ref-issue');
|
|
|
|
if (!refIssues.length) return;
|
|
|
|
|
|
|
|
refIssues.each(function () {
|
2021-09-15 09:38:20 +00:00
|
|
|
if ($(this).hasClass('ref-external-issue')) {
|
|
|
|
return;
|
|
|
|
}
|
2020-01-20 04:39:21 +00:00
|
|
|
const [index, _issues, repo, owner] = $(this).attr('href').replace(/[#?].*$/, '').split('/').reverse();
|
|
|
|
|
2021-07-13 18:09:19 +00:00
|
|
|
const el = document.createElement('div');
|
|
|
|
el.className = 'ui custom popup hidden';
|
|
|
|
el.innerHTML = '<div></div>';
|
|
|
|
this.parentNode.insertBefore(el, this.nextSibling);
|
2020-01-20 04:39:21 +00:00
|
|
|
|
2021-07-13 18:09:19 +00:00
|
|
|
const View = Vue.extend({
|
|
|
|
render: (createElement) => createElement(ContextPopup),
|
|
|
|
});
|
2020-01-20 04:39:21 +00:00
|
|
|
|
2021-07-13 18:09:19 +00:00
|
|
|
const view = new View();
|
2020-01-20 04:39:21 +00:00
|
|
|
|
2021-07-13 18:09:19 +00:00
|
|
|
try {
|
|
|
|
view.$mount(el.firstChild);
|
|
|
|
} catch (err) {
|
|
|
|
console.error(err);
|
|
|
|
el.textContent = 'ContextPopup failed to load';
|
2020-01-20 04:39:21 +00:00
|
|
|
}
|
|
|
|
|
2021-07-13 18:09:19 +00:00
|
|
|
$(this).popup({
|
2020-01-20 04:39:21 +00:00
|
|
|
variation: 'wide',
|
|
|
|
delay: {
|
|
|
|
show: 250
|
|
|
|
},
|
2021-07-13 18:09:19 +00:00
|
|
|
onShow: () => {
|
|
|
|
view.$emit('load-context-popup', {owner, repo, index}, () => {
|
|
|
|
$(this).popup('reposition');
|
|
|
|
});
|
|
|
|
},
|
|
|
|
popup: $(el),
|
2020-01-20 04:39:21 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|