67 lines
1.5 KiB
Vue
67 lines
1.5 KiB
Vue
<script>
|
|
import { uniqueId } from 'lodash';
|
|
import { GlButton, GlModal, GlModalDirective } from '@gitlab/ui';
|
|
import { __ } from '~/locale';
|
|
import csrf from '~/lib/utils/csrf';
|
|
|
|
export default {
|
|
components: {
|
|
GlButton,
|
|
GlModal,
|
|
},
|
|
directives: {
|
|
GlModal: GlModalDirective,
|
|
},
|
|
inject: ['path'],
|
|
data() {
|
|
return {
|
|
modalId: uniqueId('remove-topic-avatar-'),
|
|
};
|
|
},
|
|
methods: {
|
|
deleteApplication() {
|
|
this.$refs.deleteForm.submit();
|
|
},
|
|
},
|
|
i18n: {
|
|
remove: __('Remove avatar'),
|
|
title: __('Confirm remove avatar'),
|
|
body: __('Avatar will be removed. Are you sure?'),
|
|
},
|
|
modal: {
|
|
actionPrimary: {
|
|
text: __('Remove'),
|
|
attributes: {
|
|
variant: 'danger',
|
|
},
|
|
},
|
|
actionSecondary: {
|
|
text: __('Cancel'),
|
|
attributes: {
|
|
variant: 'default',
|
|
},
|
|
},
|
|
},
|
|
csrf,
|
|
};
|
|
</script>
|
|
<template>
|
|
<div>
|
|
<gl-button v-gl-modal="modalId" variant="danger" category="secondary" class="gl-mt-2">{{
|
|
$options.i18n.remove
|
|
}}</gl-button>
|
|
<gl-modal
|
|
:title="$options.i18n.title"
|
|
:action-primary="$options.modal.actionPrimary"
|
|
:action-secondary="$options.modal.actionSecondary"
|
|
:modal-id="modalId"
|
|
size="sm"
|
|
@primary="deleteApplication"
|
|
>{{ $options.i18n.body }}
|
|
<form ref="deleteForm" method="post" :action="path">
|
|
<input type="hidden" name="_method" value="delete" />
|
|
<input type="hidden" name="authenticity_token" :value="$options.csrf.token" />
|
|
</form>
|
|
</gl-modal>
|
|
</div>
|
|
</template>
|