summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/terraform/components/empty_state.vue
blob: d86ba3af2b17b7e05e8126560a875bf4c5d58783 (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, GlIcon, GlLink, GlSprintf } from '@gitlab/ui';

export default {
  components: {
    GlEmptyState,
    GlIcon,
    GlLink,
    GlSprintf,
  },
  props: {
    image: {
      type: String,
      required: true,
    },
  },
};
</script>

<template>
  <gl-empty-state :svg-path="image" :title="s__('Terraform|Get started with Terraform')">
    <template #description>
      <p>
        <gl-sprintf
          :message="
            s__(
              'Terraform|Find out how to use the %{linkStart}GitLab managed Terraform State%{linkEnd}',
            )
          "
        >
          <template #link="{ content }">
            <gl-link
              href="https://docs.gitlab.com/ee/user/infrastructure/index.html"
              target="_blank"
            >
              {{ content }}
              <gl-icon name="external-link" />
            </gl-link>
          </template>
        </gl-sprintf>
      </p>
    </template>
  </gl-empty-state>
</template>