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

tabs_section.vue « components « default « frontend « content - gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1d0d7266b829e958332d54e69648a8512d8f387c (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
<script>
import { GlTabs, GlTab, GlSafeHtmlDirective as SafeHtml } from '@gitlab/ui';

export default {
  components: {
    GlTabs,
    GlTab,
  },
  directives: {
    SafeHtml,
  },
  props: {
    tabTitles: {
      type: Array,
      required: true,
    },
    tabContents: {
      type: Array,
      required: true,
    },
  },
  data() {
    return {
      // Allows GitLab SVGs to render through v-safe-html
      // https://gitlab.com/groups/gitlab-org/-/epics/4273#svgs
      safe_html_config: { ADD_TAGS: ['use'] },
    };
  },
  computed: {
    // Validate that the tabset has an equal number of tab titles and tab content sections.
    // We won't render the content if this is false.
    hasValidContent() {
      return this.tabTitles.filter(Boolean).length === this.tabContents.filter(Boolean).length;
    },
  },
};
</script>

<template>
  <gl-tabs v-if="hasValidContent" :sync-active-tab-with-query-params="true">
    <gl-tab
      v-for="(title, key) in tabTitles"
      :key="key"
      v-safe-html:[safe_html_config]="tabContents[key]"
      :title="title"
      :query-param-value="title"
    />
  </gl-tabs>
</template>