summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/runner/components/runner_list_empty_state.vue
blob: ab9cde6a401487b478f8ba1e80e1670de7940a43 (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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<script>
import { GlEmptyState, GlLink, GlSprintf, GlModalDirective } from '@gitlab/ui';
import RunnerInstructionsModal from '~/vue_shared/components/runner_instructions/runner_instructions_modal.vue';

export default {
  components: {
    GlEmptyState,
    GlLink,
    GlSprintf,
    RunnerInstructionsModal,
  },
  directives: {
    GlModal: GlModalDirective,
  },
  props: {
    isSearchFiltered: {
      type: Boolean,
      required: false,
      default: false,
    },
    svgPath: {
      type: String,
      required: false,
      default: '',
    },
    filteredSvgPath: {
      type: String,
      required: false,
      default: '',
    },
    registrationToken: {
      type: String,
      required: false,
      default: null,
    },
  },
  modalId: 'runners-empty-state-instructions-modal',
  svgHeight: 145,
};
</script>

<template>
  <gl-empty-state
    v-if="isSearchFiltered"
    :title="s__('Runners|No results found')"
    :svg-path="filteredSvgPath"
    :svg-height="$options.svgHeight"
    :description="s__('Runners|Edit your search and try again')"
  />
  <gl-empty-state
    v-else
    :title="s__('Runners|Get started with runners')"
    :svg-path="svgPath"
    :svg-height="$options.svgHeight"
  >
    <template #description>
      <gl-sprintf
        :message="
          s__(
            'Runners|Runners are the agents that run your CI/CD jobs. Follow the %{linkStart}installation and registration instructions%{linkEnd} to set up a runner.',
          )
        "
      >
        <template #link="{ content }">
          <gl-link v-gl-modal="$options.modalId">{{ content }}</gl-link>
        </template>
      </gl-sprintf>

      <runner-instructions-modal
        :modal-id="$options.modalId"
        :registration-token="registrationToken"
      />
    </template>
  </gl-empty-state>
</template>