summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/releases/components/releases_empty_state.vue
blob: 800497c186aa9983d9b59b8e5e167150459cf045 (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
<script>
import { GlEmptyState, GlLink } from '@gitlab/ui';
import { __ } from '~/locale';

export default {
  name: 'ReleasesEmptyState',
  components: {
    GlEmptyState,
    GlLink,
  },
  inject: {
    documentationPath: {
      default: '',
    },
    illustrationPath: {
      default: '',
    },
  },
  i18n: {
    emptyStateTitle: __('Getting started with releases'),
    emptyStateText: __(
      "Releases are based on Git tags and mark specific points in a project's development history. They can contain information about the type of changes and can also deliver binaries, like compiled versions of your software.",
    ),
    releasesDocumentation: __('Releases documentation'),
    moreInformation: __('More information'),
  },
};
</script>
<template>
  <gl-empty-state :title="$options.i18n.emptyStateTitle" :svg-path="illustrationPath">
    <template #description>
      <span id="releases-description">
        {{ $options.i18n.emptyStateText }}
        <gl-link
          :href="documentationPath"
          :aria-label="$options.i18n.releasesDocumentation"
          target="_blank"
        >
          {{ $options.i18n.moreInformation }}
        </gl-link>
      </span>
    </template>
  </gl-empty-state>
</template>