summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/packages_and_registries/package_registry/components/delete_modal.vue
blob: 011a2668a8b1e11319fd5c9132e8761a37f7a2eb (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
<script>
import { GlModal } from '@gitlab/ui';
import { __, n__ } from '~/locale';
import {
  DELETE_PACKAGES_MODAL_TITLE,
  DELETE_PACKAGE_MODAL_PRIMARY_ACTION,
} from '~/packages_and_registries/package_registry/constants';

export default {
  name: 'DeleteModal',
  i18n: {
    DELETE_PACKAGES_MODAL_TITLE,
  },
  components: {
    GlModal,
  },
  props: {
    itemsToBeDeleted: {
      type: Array,
      required: true,
    },
  },
  computed: {
    description() {
      return n__(
        'PackageRegistry|You are about to delete 1 package. This operation is irreversible.',
        `PackageRegistry|You are about to delete %d packages. This operation is irreversible.`,
        this.itemsToBeDeleted.length,
      );
    },
  },
  modal: {
    packagesDeletePrimaryAction: {
      text: DELETE_PACKAGE_MODAL_PRIMARY_ACTION,
      attributes: [{ variant: 'danger' }, { category: 'primary' }],
    },
    cancelAction: {
      text: __('Cancel'),
    },
  },
  methods: {
    show() {
      this.$refs.deleteModal.show();
    },
  },
};
</script>

<template>
  <gl-modal
    ref="deleteModal"
    size="sm"
    modal-id="delete-packages-modal"
    :action-primary="$options.modal.packagesDeletePrimaryAction"
    :action-cancel="$options.modal.cancelAction"
    :title="$options.i18n.DELETE_PACKAGES_MODAL_TITLE"
    @primary="$emit('confirm')"
    @cancel="$emit('cancel')"
  >
    <span>{{ description }}</span>
  </gl-modal>
</template>