summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/packages_and_registries/container_registry/explorer/components/delete_button.vue
blob: bb1dac40b920f3502df5c5d5526dc3a0a3acf06b (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
<script>
import { GlButton, GlLink, GlTooltip, GlSprintf } from '@gitlab/ui';

export default {
  name: 'DeleteButton',
  components: {
    GlButton,
    GlLink,
    GlTooltip,
    GlSprintf,
  },
  props: {
    title: {
      type: String,
      required: true,
    },
    tooltipTitle: {
      type: String,
      required: true,
    },
    tooltipLink: {
      type: String,
      default: '',
      required: false,
    },
    disabled: {
      type: Boolean,
      default: false,
      required: false,
    },
    tooltipDisabled: {
      type: Boolean,
      default: false,
      required: false,
    },
  },
};
</script>

<template>
  <div ref="deleteImageButton">
    <gl-button
      :disabled="disabled"
      :title="title"
      :aria-label="title"
      variant="danger"
      category="secondary"
      icon="remove"
      @click="$emit('delete')"
    />
    <gl-tooltip :target="() => $refs.deleteImageButton" :disabled="tooltipDisabled" placement="top">
      <gl-sprintf :message="tooltipTitle">
        <template #docLink="{ content }">
          <gl-link v-if="tooltipLink" :href="tooltipLink" target="_blank">
            {{ content }}
          </gl-link>
        </template>
      </gl-sprintf>
    </gl-tooltip>
  </div>
</template>