diff_notes_bundle.js.es6 1.5 KB
Newer Older
1
/* eslint-disable func-names, comma-dangle, new-cap, no-new, import/newline-after-import, no-multi-spaces, max-len */
2 3 4
/* global Vue */
/* global ResolveCount */

5 6 7 8 9 10
function requireAll(context) { return context.keys().map(context); }
requireAll(require.context('./models',     false, /^\.\/.*\.(js|es6)$/));
requireAll(require.context('./stores',     false, /^\.\/.*\.(js|es6)$/));
requireAll(require.context('./services',   false, /^\.\/.*\.(js|es6)$/));
requireAll(require.context('./mixins',     false, /^\.\/.*\.(js|es6)$/));
requireAll(require.context('./components', false, /^\.\/.*\.(js|es6)$/));
Phil Hughes's avatar
Phil Hughes committed
11 12

$(() => {
13 14
  const COMPONENT_SELECTOR = 'resolve-btn, resolve-discussion-btn, jump-to-discussion, comment-and-resolve-btn';

15 16
  window.gl = window.gl || {};
  window.gl.diffNoteApps = {};
Phil Hughes's avatar
Phil Hughes committed
17

18
  gl.diffNotesCompileComponents = () => {
19 20 21
    const $components = $(COMPONENT_SELECTOR).filter(function () {
      return $(this).closest('resolve-count').length !== 1;
    });
22 23 24 25 26 27 28 29 30 31 32 33

    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;
34
        }
35 36 37

        $this.replaceWith(tmpApp.$el);
      });
Phil Hughes's avatar
Phil Hughes committed
38
    }
39 40 41
  };

  gl.diffNotesCompileComponents();
Phil Hughes's avatar
Phil Hughes committed
42 43 44 45 46 47 48 49

  new Vue({
    el: '#resolve-count-app',
    components: {
      'resolve-count': ResolveCount
    }
  });
});