summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pages/admin/users/components/delete_user_modal.vue
blob: e8905b479ee2be0ae5ca27231585ca64391de8c7 (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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<script>
import _ from 'underscore';
import DeprecatedModal from '~/vue_shared/components/deprecated_modal.vue';
import { s__, sprintf } from '~/locale';

export default {
  components: {
    DeprecatedModal,
  },
  props: {
    deleteUserUrl: {
      type: String,
      required: false,
      default: '',
    },
    blockUserUrl: {
      type: String,
      required: false,
      default: '',
    },
    deleteContributions: {
      type: Boolean,
      required: false,
      default: false,
    },
    username: {
      type: String,
      required: false,
      default: '',
    },
    csrfToken: {
      type: String,
      required: false,
      default: '',
    },
  },
  data() {
    return {
      enteredUsername: '',
    };
  },
  computed: {
    title() {
      const keepContributionsTitle = s__('AdminUsers|Delete User %{username}?');
      const deleteContributionsTitle = s__('AdminUsers|Delete User %{username} and contributions?');

      return sprintf(
        this.deleteContributions ? deleteContributionsTitle : keepContributionsTitle,
        {
          username: `'${_.escape(this.username)}'`,
        },
        false,
      );
    },
    text() {
      const keepContributionsText = s__(`AdminArea|
          You are about to permanently delete the user %{username}.
          Issues, merge requests, and groups linked to them will be transferred to a system-wide "Ghost-user".
          To avoid data loss, consider using the %{strong_start}block user%{strong_end} feature instead.
          Once you %{strong_start}Delete user%{strong_end}, it cannot be undone or recovered.`);

      const deleteContributionsText = s__(`AdminArea|
          You are about to permanently delete the user %{username}.
          This will delete all of the issues, merge requests, and groups linked to them.
          To avoid data loss, consider using the %{strong_start}block user%{strong_end} feature instead.
          Once you %{strong_start}Delete user%{strong_end}, it cannot be undone or recovered.`);
      return sprintf(
        this.deleteContributions ? deleteContributionsText : keepContributionsText,
        {
          username: `<strong>${_.escape(this.username)}</strong>`,
          strong_start: '<strong>',
          strong_end: '</strong>',
        },
        false,
      );
    },
    confirmationTextLabel() {
      return sprintf(
        s__('AdminUsers|To confirm, type %{username}'),
        {
          username: `<code>${_.escape(this.username)}</code>`,
        },
        false,
      );
    },
    primaryButtonLabel() {
      const keepContributionsLabel = s__('AdminUsers|Delete user');
      const deleteContributionsLabel = s__('AdminUsers|Delete user and contributions');

      return this.deleteContributions ? deleteContributionsLabel : keepContributionsLabel;
    },
    secondaryButtonLabel() {
      return s__('AdminUsers|Block user');
    },
    canSubmit() {
      return this.enteredUsername === this.username;
    },
  },
  methods: {
    onCancel() {
      this.enteredUsername = '';
    },
    onSecondaryAction() {
      const { form } = this.$refs;

      form.action = this.blockUserUrl;
      this.$refs.method.value = 'put';

      form.submit();
    },
    onSubmit() {
      this.$refs.form.submit();
      this.enteredUsername = '';
    },
  },
};
</script>

<template>
  <deprecated-modal
    id="delete-user-modal"
    :title="title"
    :text="text"
    :primary-button-label="primaryButtonLabel"
    :secondary-button-label="secondaryButtonLabel"
    :submit-disabled="!canSubmit"
    kind="danger"
    @submit="onSubmit"
    @cancel="onCancel"
  >
    <template slot="body" slot-scope="props">
      <p v-html="props.text"></p>
      <p v-html="confirmationTextLabel"></p>
      <form ref="form" :action="deleteUserUrl" method="post">
        <input ref="method" type="hidden" name="_method" value="delete" />
        <input :value="csrfToken" type="hidden" name="authenticity_token" />
        <input
          v-model="enteredUsername"
          type="text"
          name="username"
          class="form-control"
          aria-labelledby="input-label"
          autocomplete="off"
        />
      </form>
    </template>
    <template slot="secondary-button">
      <button
        :disabled="!canSubmit"
        type="button"
        class="btn js-secondary-button btn-warning"
        data-dismiss="modal"
        @click="onSecondaryAction"
      >
        {{ secondaryButtonLabel }}
      </button>
    </template>
  </deprecated-modal>
</template>