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

context_switcher_toggle.vue « components « super_sidebar « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: faa7eba64701da4fedcf54e5a577e18a1f8096d4 (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
<script>
import { GlIcon } from '@gitlab/ui';
import ContextHeader from './context_header.vue';

export default {
  components: {
    GlIcon,
    ContextHeader,
  },
  props: {
    /*
     * Contains metadata about the current view, e.g. `id`, `title` and `avatar`
     */
    context: {
      type: Object,
      required: true,
    },
    expanded: {
      type: Boolean,
      required: true,
    },
  },
  computed: {
    collapseIcon() {
      return this.expanded ? 'chevron-up' : 'chevron-down';
    },
  },
};
</script>

<template>
  <context-header
    :context="context"
    tag="button"
    type="button"
    class="context-switcher-toggle gl-p-0 gl-bg-transparent gl-hover-bg-t-gray-a-08 gl-focus-bg-t-gray-a-08 gl-border-0 gl-box-shadow-none gl-text-left"
    data-testid="context-switcher"
  >
    <template #end>
      <gl-icon class="gl-text-gray-400" :name="collapseIcon" />
    </template>
  </context-header>
</template>