2017-02-20 15:29:09 -05:00
|
|
|
/* eslint-disable func-names, comma-dangle, new-cap, no-new, max-len */
|
2016-12-13 22:01:05 -05:00
|
|
|
/* global ResolveCount */
|
|
|
|
|
2017-03-17 13:21:25 -04:00
|
|
|
import Vue from 'vue';
|
|
|
|
|
2017-02-20 15:29:09 -05:00
|
|
|
require('./models/discussion');
|
|
|
|
require('./models/note');
|
|
|
|
require('./stores/comments');
|
|
|
|
require('./services/resolve');
|
|
|
|
require('./mixins/discussion');
|
|
|
|
require('./components/comment_resolve_btn');
|
|
|
|
require('./components/jump_to_discussion');
|
|
|
|
require('./components/resolve_btn');
|
|
|
|
require('./components/resolve_count');
|
|
|
|
require('./components/resolve_discussion_btn');
|
2017-03-08 11:07:26 -05:00
|
|
|
require('./components/diff_note_avatars');
|
2016-12-22 07:31:12 -05:00
|
|
|
require('./components/new_issue_for_discussion');
|
2016-07-26 06:56:36 -04:00
|
|
|
|
|
|
|
$(() => {
|
2017-02-08 09:58:08 -05:00
|
|
|
const projectPath = document.querySelector('.merge-request').dataset.projectPath;
|
2016-12-22 07:31:12 -05:00
|
|
|
const COMPONENT_SELECTOR = 'resolve-btn, resolve-discussion-btn, jump-to-discussion, comment-and-resolve-btn, new-issue-for-discussion-btn';
|
2016-11-09 03:54:48 -05:00
|
|
|
|
2016-11-08 11:54:18 -05:00
|
|
|
window.gl = window.gl || {};
|
|
|
|
window.gl.diffNoteApps = {};
|
2016-11-07 05:05:58 -05:00
|
|
|
|
2017-02-08 09:58:08 -05:00
|
|
|
window.ResolveService = new gl.DiffNotesResolveServiceClass(projectPath);
|
|
|
|
|
2016-11-08 11:54:18 -05:00
|
|
|
gl.diffNotesCompileComponents = () => {
|
2017-03-08 11:07:26 -05:00
|
|
|
$('diff-note-avatars').each(function () {
|
|
|
|
const tmp = Vue.extend({
|
|
|
|
template: $(this).get(0).outerHTML
|
|
|
|
});
|
|
|
|
const tmpApp = new tmp().$mount();
|
|
|
|
|
|
|
|
$(this).replaceWith(tmpApp.$el);
|
|
|
|
});
|
|
|
|
|
2016-11-09 03:54:48 -05:00
|
|
|
const $components = $(COMPONENT_SELECTOR).filter(function () {
|
|
|
|
return $(this).closest('resolve-count').length !== 1;
|
|
|
|
});
|
2016-11-08 11:54:18 -05:00
|
|
|
|
|
|
|
if ($components) {
|
|
|
|
$components.each(function () {
|
|
|
|
const $this = $(this);
|
|
|
|
const noteId = $this.attr(':note-id');
|
|
|
|
const tmp = Vue.extend({
|
|
|
|
template: $this.get(0).outerHTML
|
|
|
|
});
|
|
|
|
const tmpApp = new tmp().$mount();
|
|
|
|
|
|
|
|
if (noteId) {
|
|
|
|
gl.diffNoteApps[`note_${noteId}`] = tmpApp;
|
2016-08-01 05:21:57 -04:00
|
|
|
}
|
2016-11-08 11:54:18 -05:00
|
|
|
|
|
|
|
$this.replaceWith(tmpApp.$el);
|
|
|
|
});
|
2016-07-26 06:56:36 -04:00
|
|
|
}
|
2016-11-08 11:54:18 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
gl.diffNotesCompileComponents();
|
2016-07-26 06:56:36 -04:00
|
|
|
|
|
|
|
new Vue({
|
|
|
|
el: '#resolve-count-app',
|
|
|
|
components: {
|
|
|
|
'resolve-count': ResolveCount
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|