mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-18 00:02:15 +00:00
117 lines
3.6 KiB
Vue
117 lines
3.6 KiB
Vue
<template>
|
|
<div v-if="hasSubscription" class="card shadow-card">
|
|
<FormLabel>
|
|
{{ $t('Edit your Subscription') }}
|
|
</FormLabel>
|
|
|
|
<AppInputButton
|
|
v-if="subscription.attributes.status !== 'cancelled'"
|
|
:title="$t('Cancel Subscription')"
|
|
:description="
|
|
$t(
|
|
'You can cancel your subscription now. You\'ll continue to have access to the features you\'ve paid for until the end of your billing cycle.'
|
|
)
|
|
"
|
|
>
|
|
<ButtonBase
|
|
@click.native="cancelSubscriptionConfirmation"
|
|
:loading="isCancelling"
|
|
class="w-full sm:w-auto"
|
|
button-style="secondary"
|
|
>
|
|
{{ $t('Cancel Now') }}
|
|
</ButtonBase>
|
|
</AppInputButton>
|
|
|
|
<AppInputButton
|
|
:title="$t('Upgrade or Downgrade Plan')"
|
|
:description="$t('You can upgrade your plan at any time you want.')"
|
|
:is-last="true"
|
|
>
|
|
<ButtonBase @click.native="$changeSubscriptionOptions" class="w-full sm:w-auto" button-style="secondary">
|
|
{{ $t('Change Plan') }}
|
|
</ButtonBase>
|
|
</AppInputButton>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import AppInputButton from '../Admin/AppInputButton'
|
|
import AppInputText from '../Admin/AppInputText'
|
|
import AppInputSwitch from '../Admin/AppInputSwitch'
|
|
import ButtonBase from '../FilesView/ButtonBase'
|
|
import FormLabel from '../Others/Forms/FormLabel'
|
|
import { events } from '../../bus'
|
|
import axios from 'axios'
|
|
|
|
export default {
|
|
name: 'UserEditSubscription',
|
|
components: {
|
|
AppInputButton,
|
|
AppInputSwitch,
|
|
AppInputText,
|
|
ButtonBase,
|
|
FormLabel,
|
|
},
|
|
computed: {
|
|
subscription() {
|
|
return this.$store.getters.user.data.relationships.subscription.data
|
|
},
|
|
hasSubscription() {
|
|
return this.$store.getters.user.data.relationships.subscription
|
|
},
|
|
},
|
|
data() {
|
|
return {
|
|
isCancelling: false,
|
|
}
|
|
},
|
|
methods: {
|
|
cancelSubscriptionConfirmation() {
|
|
events.$emit('confirm:open', {
|
|
title: this.$t('Are you sure you want to cancel subscription?'),
|
|
message: this.$t(
|
|
"popup_subscription_cancel.message"
|
|
),
|
|
action: {
|
|
operation: 'cancel-subscription',
|
|
},
|
|
})
|
|
},
|
|
},
|
|
created() {
|
|
events.$on('action:confirmed', (data) => {
|
|
if (data.operation === 'cancel-subscription') {
|
|
// Start deleting spinner button
|
|
this.isCancelling = true
|
|
|
|
// Send post request
|
|
axios
|
|
.post('/api/subscriptions/cancel')
|
|
.then(() => {
|
|
// Update user data
|
|
this.$store.dispatch('getAppData')
|
|
|
|
events.$emit('toaster', {
|
|
type: 'success',
|
|
message: this.$t('popup_subscription_cancel.title'),
|
|
})
|
|
})
|
|
.catch(() => {
|
|
events.$emit('toaster', {
|
|
type: 'danger',
|
|
message: this.$t('popup_error.title'),
|
|
})
|
|
})
|
|
.finally(() => {
|
|
this.isCancelling = false
|
|
})
|
|
}
|
|
})
|
|
},
|
|
destroyed() {
|
|
events.$off('action:confirmed')
|
|
},
|
|
}
|
|
</script>
|