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

delete_account_modal.vue « components « account « profile « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 36ad618aa46578e1b61873e5ed6ed94e4a8d9037 (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
<script>
  import modal from '~/vue_shared/components/modal.vue';
  import { __, s__, sprintf } from '~/locale';
  import csrf from '~/lib/utils/csrf';

  export default {
    props: {
      actionUrl: {
        type: String,
        required: true,
      },
      confirmWithPassword: {
        type: Boolean,
        required: true,
      },
      username: {
        type: String,
        required: true,
      },
    },
    data() {
      return {
        enteredPassword: '',
        enteredUsername: '',
      };
    },
    components: {
      modal,
    },
    computed: {
      csrfToken() {
        return csrf.token;
      },
      inputLabel() {
        let confirmationValue;
        if (this.confirmWithPassword) {
          confirmationValue = __('password');
        } else {
          confirmationValue = __('username');
        }

        confirmationValue = `<code>${confirmationValue}</code>`;

        return sprintf(
          s__('Profiles|Type your %{confirmationValue} to confirm:'),
          { confirmationValue },
          false,
        );
      },
      text() {
        return sprintf(
          s__(`Profiles|
You are about to permanently delete %{yourAccount}, and all of the issues, merge requests, and groups linked to your account.
Once you confirm %{deleteAccount}, it cannot be undone or recovered.`),
          {
            yourAccount: `<strong>${s__('Profiles|your account')}</strong>`,
            deleteAccount: `<strong>${s__('Profiles|Delete Account')}</strong>`,
          },
          false,
        );
      },
    },
    methods: {
      canSubmit() {
        if (this.confirmWithPassword) {
          return this.enteredPassword !== '';
        }

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

<template>
  <modal
    id="delete-account-modal"
    :title="s__('Profiles|Delete your account?')"
    :text="text"
    kind="danger"
    :primary-button-label="s__('Profiles|Delete account')"
    @submit="onSubmit"
    :submit-disabled="!canSubmit()">

    <template slot="body" slot-scope="props">
      <p v-html="props.text"></p>

      <form
        ref="form"
        :action="actionUrl"
        method="post">

        <input
          type="hidden"
          name="_method"
          value="delete" />
        <input
          type="hidden"
          name="authenticity_token"
          :value="csrfToken" />

        <p id="input-label" v-html="inputLabel"></p>

        <input
          v-if="confirmWithPassword"
          name="password"
          class="form-control"
          type="password"
          v-model="enteredPassword"
          aria-labelledby="input-label" />
        <input
          v-else
          name="username"
          class="form-control"
          type="text"
          v-model="enteredUsername"
          aria-labelledby="input-label" />
      </form>
    </template>

  </modal>
</template>