Welcome to mirror list, hosted at ThFree Co, Russian Federation.

top_nav_container_view.vue « components « nav « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6f98f85ff905b1c4ee44b7e88009693f8da634fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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
69
70
71
<script>
import FrequentItemsApp from '~/frequent_items/components/app.vue';
import eventHub from '~/frequent_items/event_hub';
import VuexModuleProvider from '~/vue_shared/components/vuex_module_provider.vue';
import TopNavMenuSections from './top_nav_menu_sections.vue';

export default {
  components: {
    FrequentItemsApp,
    TopNavMenuSections,
    VuexModuleProvider,
  },
  inheritAttrs: false,
  props: {
    frequentItemsVuexModule: {
      type: String,
      required: true,
    },
    frequentItemsDropdownType: {
      type: String,
      required: true,
    },
    containerClass: {
      type: String,
      required: false,
      default: '',
    },
    linksPrimary: {
      type: Array,
      required: false,
      default: () => [],
    },
    linksSecondary: {
      type: Array,
      required: false,
      default: () => [],
    },
  },
  computed: {
    menuSections() {
      return [
        { id: 'primary', menuItems: this.linksPrimary },
        { id: 'secondary', menuItems: this.linksSecondary },
      ].filter((x) => x.menuItems?.length);
    },
  },
  mounted() {
    // For historic reasons, the frequent-items-app component requires this too start up.
    this.$nextTick(() => {
      eventHub.$emit(`${this.frequentItemsDropdownType}-dropdownOpen`);
    });
  },
};
</script>

<template>
  <div class="top-nav-container-view gl-display-flex gl-flex-direction-column">
    <div
      class="frequent-items-dropdown-container gl-w-auto"
      :class="containerClass"
      data-testid="frequent-items-container"
    >
      <div class="frequent-items-dropdown-content gl-w-full! gl-pt-0!">
        <vuex-module-provider :vuex-module="frequentItemsVuexModule">
          <frequent-items-app v-bind="$attrs" />
        </vuex-module-provider>
      </div>
    </div>
    <top-nav-menu-sections class="gl-mt-auto" :sections="menuSections" with-top-border />
  </div>
</template>