summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/jobs/components/job_sidebar_retry_button.vue
blob: a43b3297d758036711e419f39793c0a602da45ed (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
<script>
import { GlButton, GlLink, GlModalDirective } from '@gitlab/ui';
import { mapGetters } from 'vuex';
import { JOB_SIDEBAR } from '../constants';

export default {
  name: 'JobSidebarRetryButton',
  i18n: {
    retryLabel: JOB_SIDEBAR.retry,
  },
  components: {
    GlButton,
    GlLink,
  },
  directives: {
    GlModal: GlModalDirective,
  },
  props: {
    modalId: {
      type: String,
      required: true,
    },
    href: {
      type: String,
      required: true,
    },
  },
  computed: {
    ...mapGetters(['hasForwardDeploymentFailure']),
  },
};
</script>
<template>
  <gl-button
    v-if="hasForwardDeploymentFailure"
    v-gl-modal="modalId"
    :aria-label="$options.i18n.retryLabel"
    category="primary"
    variant="confirm"
    >{{ $options.i18n.retryLabel }}</gl-button
  >
  <gl-link v-else :href="href" class="btn gl-button btn-confirm" data-method="post" rel="nofollow"
    >{{ $options.i18n.retryLabel }}
  </gl-link>
</template>