index.js 1.84 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
import $ from 'jquery';
import Vue from 'vue';
import Translate from '~/vue_shared/translate';
import eventHub from '~/frequent_items/event_hub';
import frequentItems from './components/app.vue';

Vue.use(Translate);

const frequentItemDropdowns = [
  {
    namespace: 'projects',
    key: 'project',
  },
  {
    namespace: 'groups',
    key: 'group',
  },
];

Tim Zallmann's avatar
Tim Zallmann committed
20
const initFrequentItemDropdowns = () => {
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
  frequentItemDropdowns.forEach(dropdown => {
    const { namespace, key } = dropdown;
    const el = document.getElementById(`js-${namespace}-dropdown`);
    const navEl = document.getElementById(`nav-${namespace}-dropdown`);

    // Don't do anything if element doesn't exist (No groups dropdown)
    // This is for when the user accesses GitLab without logging in
    if (!el || !navEl) {
      return;
    }

    $(navEl).on('shown.bs.dropdown', () => {
      eventHub.$emit(`${namespace}-dropdownOpen`);
    });

    // eslint-disable-next-line no-new
    new Vue({
      el,
      components: {
        frequentItems,
      },
      data() {
        const { dataset } = this.$options.el;
        const item = {
          id: Number(dataset[`${key}Id`]),
          name: dataset[`${key}Name`],
          namespace: dataset[`${key}Namespace`],
          webUrl: dataset[`${key}WebUrl`],
          avatarUrl: dataset[`${key}AvatarUrl`] || null,
          lastAccessedOn: Date.now(),
        };

        return {
          currentUserName: dataset.userName,
          currentItem: item,
        };
      },
      render(createElement) {
        return createElement('frequent-items', {
          props: {
            namespace,
            currentUserName: this.currentUserName,
            currentItem: this.currentItem,
          },
        });
      },
    });
  });
Tim Zallmann's avatar
Tim Zallmann committed
69
};
70 71 72

document.addEventListener('DOMContentLoaded', () => {
  requestIdleCallback(initFrequentItemDropdowns);
73
});