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

confirm_modal.vue « confirm_via_gl_modal « utils « lib « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 733d0f69f5d855b65a06134f410ea72d38916ccc (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 { GlModal } from '@gitlab/ui';
import { __ } from '~/locale';

export default {
  cancelAction: { text: __('Cancel') },
  components: {
    GlModal,
  },
  props: {
    primaryText: {
      type: String,
      required: false,
      default: __('OK'),
    },
    primaryVariant: {
      type: String,
      required: false,
      default: 'confirm',
    },
  },
  computed: {
    primaryAction() {
      return { text: this.primaryText, attributes: { variant: this.primaryVariant } };
    },
  },
  mounted() {
    this.$refs.modal.show();
  },
};
</script>

<template>
  <gl-modal
    ref="modal"
    size="sm"
    modal-id="confirmationModal"
    body-class="gl-display-flex"
    :action-primary="primaryAction"
    :action-cancel="$options.cancelAction"
    hide-header
    @primary="$emit('confirmed')"
    @hidden="$emit('closed')"
  >
    <div class="gl-align-self-center"><slot></slot></div>
  </gl-modal>
</template>