summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/ide/components/pipelines/empty_state.vue
blob: 25e1698e3f4525b372a19271c4cb553339e61030 (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
<script>
import { GlEmptyState } from '@gitlab/ui';
import { mapState } from 'vuex';
import { s__ } from '~/locale';
import { helpPagePath } from '~/helpers/help_page_helper';

export default {
  components: {
    GlEmptyState,
  },
  computed: {
    ...mapState(['pipelinesEmptyStateSvgPath']),
    ciHelpPagePath() {
      return helpPagePath('ci/quick_start/index.md');
    },
  },
  i18n: {
    title: s__('Pipelines|Build with confidence'),
    description: s__(`Pipelines|GitLab CI/CD can automatically build,
      test, and deploy your code. Let GitLab take care of time
      consuming tasks, so you can spend more time creating.`),
    primaryButtonText: s__('Pipelines|Get started with GitLab CI/CD'),
  },
};
</script>

<template>
  <gl-empty-state
    :title="$options.i18n.title"
    :svg-path="pipelinesEmptyStateSvgPath"
    :svg-height="150"
    :description="$options.i18n.description"
    :primary-button-text="$options.i18n.primaryButtonText"
    :primary-button-link="ciHelpPagePath"
  />
</template>