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

confirm_danger.vue « confirm_danger « components « vue_shared « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4c07cf44fed94be261717ae12bf855fdeaad98e9 (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
<script>
import { GlButton, GlModalDirective } from '@gitlab/ui';
import { CONFIRM_DANGER_MODAL_ID } from './constants';
import ConfirmDangerModal from './confirm_danger_modal.vue';

export default {
  name: 'ConfirmDanger',
  components: {
    GlButton,
    ConfirmDangerModal,
  },
  directives: {
    GlModal: GlModalDirective,
  },
  props: {
    disabled: {
      type: Boolean,
      required: false,
      default: false,
    },
    phrase: {
      type: String,
      required: true,
    },
    buttonText: {
      type: String,
      required: true,
    },
    buttonTestid: {
      type: String,
      required: false,
      default: 'confirm-danger-button',
    },
  },
  modalId: CONFIRM_DANGER_MODAL_ID,
};
</script>
<template>
  <div>
    <gl-button
      v-gl-modal="$options.modalId"
      class="gl-button"
      variant="danger"
      :disabled="disabled"
      :data-testid="buttonTestid"
      >{{ buttonText }}</gl-button
    >
    <confirm-danger-modal
      :modal-id="$options.modalId"
      :phrase="phrase"
      @confirm="$emit('confirm')"
    />
  </div>
</template>