summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_merge_request_widget/components/review_app_link.vue
blob: ebd2b5cd22d584e60e76f0733a1bcad78d81d7e3 (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
<script>
import { GlButton, GlTooltipDirective, GlIcon } from '@gitlab/ui';

export default {
  components: {
    GlButton,
    GlIcon,
  },
  directives: {
    GlTooltip: GlTooltipDirective,
  },
  props: {
    cssClass: {
      type: String,
      required: true,
    },
    display: {
      type: Object,
      required: true,
    },
    link: {
      type: String,
      required: true,
    },
    size: {
      type: String,
      required: false,
      default: 'medium',
    },
  },
};
</script>
<template>
  <gl-button
    v-gl-tooltip
    :title="display.tooltip"
    :href="link"
    :size="size"
    target="_blank"
    rel="noopener noreferrer nofollow"
    :class="cssClass"
    data-track-event="open_review_app"
    data-track-label="review_app"
  >
    {{ display.text }} <gl-icon class="fgray" name="external-link" />
  </gl-button>
</template>