All files / app/assets/javascripts/profile/account/components delete_account_modal.vue

100% Statements 12/12
50% Branches 2/4
100% Functions 7/7
100% Lines 12/12

Press n or j to go to the next uncovered block, b, p or k for the previous block.

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        1x                                             4x             4x     4x     7x                     4x         7x 3x   4x         4x 2x   2x                                                                                                                                                          
<script>
import { GlModal, GlSprintf } from '@gitlab/ui';
import glFeatureFlagMixin from '~/vue_shared/mixins/gl_feature_flags_mixin';
import csrf from '~/lib/utils/csrf';
import { __, s__ } from '~/locale';
 
export default {
  components: {
    GlModal,
    GlSprintf,
  },
  mixins: [glFeatureFlagMixin()],
  props: {
    actionUrl: {
      type: String,
      required: true,
    },
    confirmWithPassword: {
      type: Boolean,
      required: true,
    },
    username: {
      type: String,
      required: true,
    },
  },
  data() {
    return {
      enteredPassword: '',
      enteredUsername: '',
    };
  },
  computed: {
    csrfToken() {
      return csrf.token;
    },
    confirmationValue() {
      return this.confirmWithPassword ? __('password') : __('username');
    },
    primaryProps() {
      return {
        text: __('Delete account'),
        attributes: {
          variant: 'danger',
          'data-testid': 'confirm-delete-account-button',
          category: 'primary',
          disabled: !this.canSubmit,
        },
      };
    },
    cancelProps() {
      return {
        text: __('Cancel'),
      };
    },
    canSubmit() {
      if (this.confirmWithPassword) {
        return this.enteredPassword !== '';
      }
      return this.enteredUsername === this.username;
    },
  },
  methods: {
    onSubmit() {
      if (!this.canSubmit) {
        return;
      }
      this.$refs.form.submit();
    },
  },
  i18n: {
    textdelay: 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. You might have to wait seven days before creating a new account with the same username or email.`),
    text: 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.`),
    inputLabel: s__('Profiles|Type your %{confirmationValue} to confirm:'),
  },
};
</script>
 
<template>
  <gl-modal
    modal-id="delete-account-modal"
    title="Profiles"
    :action-primary="primaryProps"
    :action-cancel="cancelProps"
    :ok-disabled="!canSubmit"
    @primary="onSubmit"
  >
    <p>
      <gl-sprintf v-if="glFeatures.delayDeleteOwnUser" :message="$options.i18n.textdelay">
        <template #yourAccount>
          <strong>{{ s__('Profiles|your account') }}</strong>
        </template>
 
        <template #deleteAccount>
          <strong>{{ s__('Profiles|Delete account') }}</strong>
        </template>
      </gl-sprintf>
      <gl-sprintf v-else :message="$options.i18n.text">
        <template #yourAccount>
          <strong>{{ s__('Profiles|your account') }}</strong>
        </template>
 
        <template #deleteAccount>
          <strong>{{ s__('Profiles|Delete account') }}</strong>
        </template>
      </gl-sprintf>
    </p>
 
    <form ref="form" :action="actionUrl" method="post">
      <input type="hidden" name="_method" value="delete" />
      <input :value="csrfToken" type="hidden" name="authenticity_token" />
 
      <p id="input-label">
        <gl-sprintf :message="$options.i18n.inputLabel">
          <template #confirmationValue>
            <code>{{ confirmationValue }}</code>
          </template>
        </gl-sprintf>
      </p>
 
      <input
        v-if="confirmWithPassword"
        v-model="enteredPassword"
        name="password"
        class="form-control"
        type="password"
        data-testid="password-confirmation-field"
        aria-labelledby="input-label"
      />
      <input
        v-else
        v-model="enteredUsername"
        name="username"
        class="form-control"
        type="text"
        aria-labelledby="input-label"
      />
    </form>
  </gl-modal>
</template>