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

learn_gitlab_section_card.vue « components « learn_gitlab « projects « pages « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e8f0e6c47ee0eb8be7f4dd9eb9a7d6216d8c599f (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
<script>
import { GlCard } from '@gitlab/ui';
import { ACTION_LABELS, ACTION_SECTIONS } from '../constants';

import LearnGitlabSectionLink from './learn_gitlab_section_link.vue';

export default {
  name: 'LearnGitlabSectionCard',
  components: { GlCard, LearnGitlabSectionLink },
  i18n: {
    ...ACTION_SECTIONS,
  },
  props: {
    section: {
      required: true,
      type: String,
    },
    svg: {
      required: true,
      type: String,
    },
    actions: {
      required: true,
      type: Object,
    },
  },
  computed: {
    sortedActions() {
      return Object.entries(this.actions).sort(
        (a1, a2) => ACTION_LABELS[a1[0]].position - ACTION_LABELS[a2[0]].position,
      );
    },
  },
};
</script>
<template>
  <gl-card
    class="gl-pt-0 h-100"
    header-class="gl-bg-white gl-border-0 gl-pb-0"
    body-class="gl-pt-0"
  >
    <template #header>
      <img :src="svg" />
      <h2 class="gl-font-lg gl-mb-3">{{ $options.i18n[section].title }}</h2>
      <p class="gl-text-gray-700 gl-mb-6">{{ $options.i18n[section].description }}</p>
    </template>
    <template #default>
      <learn-gitlab-section-link
        v-for="[action, value] in sortedActions"
        :key="action"
        :action="action"
        :value="value"
      />
    </template>
  </gl-card>
</template>