mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-18 16:22:14 +00:00
127 lines
4.2 KiB
Vue
127 lines
4.2 KiB
Vue
<template>
|
|
<PageTab>
|
|
<PageTabGroup>
|
|
<SetupBox
|
|
theme="danger"
|
|
title="Delete Plan"
|
|
description="You can delete plan, but, pay attention!"
|
|
>
|
|
<ValidationObserver ref="deletePlan" @submit.prevent="deletePlan" v-slot="{ invalid }" tag="form"
|
|
class="form block-form">
|
|
<ValidationProvider tag="div" class="block-wrapper" v-slot="{ errors }" mode="passive"
|
|
name="Plan name" :rules="'required|is:' + plan.attributes.name">
|
|
<label>{{ $t('admin_page_user.label_delete_user', {user: plan.attributes.name}) }}:</label>
|
|
<div class="single-line-form">
|
|
<input v-model="planName"
|
|
placeholder="Type plan name"
|
|
type="text"
|
|
:class="{'is-error': errors[0]}"
|
|
/>
|
|
<ButtonBase :loading="isSendingRequest" :disabled="isSendingRequest" type="submit"
|
|
button-style="danger" class="submit-button">
|
|
Delete Plan
|
|
</ButtonBase>
|
|
</div>
|
|
<span class="error-message" v-if="errors[0]">{{ errors[0] }}</span>
|
|
</ValidationProvider>
|
|
</ValidationObserver>
|
|
</SetupBox>
|
|
</PageTabGroup>
|
|
</PageTab>
|
|
</template>
|
|
|
|
<script>
|
|
import PageTabGroup from '@/components/Others/Layout/PageTabGroup'
|
|
import PageTab from '@/components/Others/Layout/PageTab'
|
|
import {ValidationProvider, ValidationObserver} from 'vee-validate/dist/vee-validate.full'
|
|
import ButtonBase from '@/components/FilesView/ButtonBase'
|
|
import SetupBox from '@/components/Others/Forms/SetupBox'
|
|
import {required, is} from 'vee-validate/dist/rules'
|
|
import {events} from "@/bus"
|
|
import axios from 'axios'
|
|
|
|
export default {
|
|
name: 'PlanDelete',
|
|
props: [
|
|
'plan'
|
|
],
|
|
components: {
|
|
PageTabGroup,
|
|
PageTab,
|
|
ValidationProvider,
|
|
ValidationObserver,
|
|
ButtonBase,
|
|
SetupBox,
|
|
required,
|
|
},
|
|
data() {
|
|
return {
|
|
isSendingRequest: false,
|
|
isLoading: false,
|
|
planName: '',
|
|
}
|
|
},
|
|
methods: {
|
|
async deletePlan() {
|
|
|
|
// Validate fields
|
|
const isValid = await this.$refs.deletePlan.validate();
|
|
|
|
if (!isValid) return;
|
|
|
|
this.isSendingRequest = true
|
|
|
|
axios
|
|
.delete(this.$store.getters.api + '/plans/' + this.$route.params.id + '/delete',
|
|
{
|
|
data: {
|
|
name: this.planName
|
|
}
|
|
}
|
|
)
|
|
.then(() => {
|
|
this.isSendingRequest = false
|
|
|
|
// Show error message
|
|
events.$emit('success:open', {
|
|
emoji: '👍',
|
|
title: this.$t('popup_deleted_user.title'),
|
|
message: this.$t('popup_deleted_user.message'),
|
|
})
|
|
|
|
this.$router.push({name: 'Plans'})
|
|
})
|
|
.catch(() => {
|
|
|
|
this.isSendingRequest = false
|
|
|
|
events.$emit('alert:open', {
|
|
title: this.$t('popup_error.title'),
|
|
message: this.$t('popup_error.message'),
|
|
})
|
|
})
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
@import '@assets/vue-file-manager/_variables';
|
|
@import '@assets/vue-file-manager/_mixins';
|
|
@import '@assets/vue-file-manager/_forms';
|
|
|
|
.block-form {
|
|
max-width: 100%;
|
|
}
|
|
|
|
|
|
@media only screen and (max-width: 960px) {
|
|
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
|
|
}
|
|
|
|
</style>
|