parent
726afe8a9e
commit
04e97b8311
18 changed files with 384 additions and 606 deletions
|
@ -1,5 +1,5 @@
|
|||
import $ from 'jquery';
|
||||
import Vue from 'vue';
|
||||
import {createApp} from 'vue';
|
||||
import ContextPopup from '../components/ContextPopup.vue';
|
||||
import {parseIssueHref} from '../utils.js';
|
||||
import {createTippy} from '../modules/tippy.js';
|
||||
|
@ -17,17 +17,12 @@ export default function initContextPopups() {
|
|||
if (!owner) return;
|
||||
|
||||
const el = document.createElement('div');
|
||||
el.innerHTML = '<div></div>';
|
||||
this.parentNode.insertBefore(el, this.nextSibling);
|
||||
|
||||
const View = Vue.extend({
|
||||
render: (createElement) => createElement(ContextPopup),
|
||||
});
|
||||
|
||||
const view = new View();
|
||||
const view = createApp(ContextPopup);
|
||||
|
||||
try {
|
||||
view.$mount(el.firstChild);
|
||||
view.mount(el);
|
||||
} catch (err) {
|
||||
console.error(err);
|
||||
el.textContent = 'ContextPopup failed to load';
|
||||
|
@ -37,7 +32,7 @@ export default function initContextPopups() {
|
|||
content: el,
|
||||
interactive: true,
|
||||
onShow: () => {
|
||||
view.$emit('load-context-popup', {owner, repo, index});
|
||||
el.firstChild.dispatchEvent(new CustomEvent('us-load-context-popup', {detail: {owner, repo, index}}));
|
||||
}
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue