Welcome to mirror list, hosted at ThFree Co, Russian Federation.

delete_label_modal.vue « components « labels « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1ff0938d086744ab017d8e8d771ea98e7671c860 (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
76
77
78
79
80
81
<script>
import { GlModal, GlSprintf, GlButton } from '@gitlab/ui';
import { uniqueId } from 'lodash';

export default {
  components: {
    GlModal,
    GlSprintf,
    GlButton,
  },
  props: {
    selector: {
      type: String,
      required: true,
    },
  },
  data() {
    return {
      labelName: '',
      subjectName: '',
      destroyPath: '',
      modalId: uniqueId('modal-delete-label-'),
    };
  },
  mounted() {
    document.querySelectorAll(this.selector).forEach((button) => {
      button.addEventListener('click', (e) => {
        e.preventDefault();

        const { labelName, subjectName, destroyPath } = button.dataset;
        this.labelName = labelName;
        this.subjectName = subjectName;
        this.destroyPath = destroyPath;
        this.openModal();
      });
    });
  },
  methods: {
    openModal() {
      this.$refs.modal.show();
    },
    closeModal() {
      this.$refs.modal.hide();
    },
  },
};
</script>

<template>
  <gl-modal ref="modal" :modal-id="modalId">
    <template #modal-title>
      <gl-sprintf :message="__('Delete label: %{labelName}')">
        <template #labelName>
          {{ labelName }}
        </template>
      </gl-sprintf>
    </template>
    <gl-sprintf
      :message="
        __(
          `%{strongStart}${labelName}%{strongEnd} will be permanently deleted from ${subjectName}. This cannot be undone.`,
        )
      "
    >
      <template #strong="{ content }">
        <strong>{{ content }}</strong>
      </template>
    </gl-sprintf>
    <template #modal-footer>
      <gl-button category="secondary" @click="closeModal">{{ __('Cancel') }}</gl-button>
      <gl-button
        category="primary"
        variant="danger"
        :href="destroyPath"
        data-method="delete"
        data-testid="delete-button"
        >{{ __('Delete label') }}</gl-button
      >
    </template>
  </gl-modal>
</template>