mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-19 00:22:15 +00:00
310 lines
9.0 KiB
Vue
310 lines
9.0 KiB
Vue
<template>
|
|
<PageTab :is-loading="isLoading">
|
|
<div v-if="subscription" class="card shadow-card">
|
|
<FormLabel>
|
|
{{ $t('Details') }}
|
|
</FormLabel>
|
|
<div class="md:flex md:space-x-10 mb-8">
|
|
<div class="md:mb-0 mb-6">
|
|
<b class="block leading-5 text-lg">
|
|
{{ status }}
|
|
</b>
|
|
<small class="text-gray-500">
|
|
{{ $t('We will send you a notification upon Subscription expiration') }}
|
|
</small>
|
|
</div>
|
|
<div>
|
|
<b class="block leading-5 text-lg">
|
|
{{ price }}
|
|
</b>
|
|
<small class="text-gray-500">
|
|
{{ subscription.relationships.plan.data.attributes.name }}
|
|
</small>
|
|
</div>
|
|
</div>
|
|
|
|
<div v-for="(limit, i) in limitations" :key="i" :class="{'mb-6': (Object.keys(limitations).length - 1) !== i}">
|
|
<b class="mb-3 block text-sm text-gray-400">
|
|
{{ limit.message }}
|
|
</b>
|
|
<ProgressLine :data="limit.distribution" />
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div v-if="subscription && ['paystack', 'paypal'].includes(subscription.attributes.driver)" class="card shadow-card">
|
|
<FormLabel>
|
|
{{ $t('Update Payments') }}
|
|
</FormLabel>
|
|
|
|
<AppInputSwitch :title="$t('Update your Payment Method')" :description="$t('You will be redirected to your payment provider to edit your payment method.')" :is-last="true">
|
|
<ButtonBase @click.native="updatePaymentMethod" :loading="isGeneratedUpdateLink" class="popup-button" button-style="theme">
|
|
{{ $t('Update Payments') }}
|
|
</ButtonBase>
|
|
</AppInputSwitch>
|
|
</div>
|
|
|
|
<div v-if="subscription" class="card shadow-card">
|
|
<FormLabel>
|
|
{{ $t('Edit your Subscription') }}
|
|
</FormLabel>
|
|
|
|
<AppInputSwitch :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="popup-button" button-style="secondary">
|
|
{{ $t('Cancel Now') }}
|
|
</ButtonBase>
|
|
</AppInputSwitch>
|
|
|
|
<AppInputSwitch :title="$t('Upgrade Plan')" :description="$t('You can upgrade your plan at any time you want.')" :is-last="true">
|
|
<ButtonBase @click.native="$openUpgradeOptions" class="popup-button" button-style="secondary">
|
|
{{ $t('Upgrade Now') }}
|
|
</ButtonBase>
|
|
</AppInputSwitch>
|
|
</div>
|
|
|
|
<!--Transactions-->
|
|
<div class="card shadow-card">
|
|
<FormLabel icon="file-text">
|
|
{{ $t('Transactions') }}
|
|
</FormLabel>
|
|
|
|
<DatatableWrapper
|
|
@init="isLoading = false"
|
|
api="/api/subscriptions/transactions"
|
|
:paginator="true"
|
|
:columns="columns"
|
|
>
|
|
<template slot-scope="{ row }">
|
|
<tr class="border-b dark:border-opacity-5 border-light border-dashed">
|
|
<td class="py-4">
|
|
<span class="text-sm font-bold">
|
|
{{ row.data.attributes.note }}
|
|
</span>
|
|
</td>
|
|
<td>
|
|
<ColorLabel :color="$getTransactionStatusColor(row.data.attributes.status)">
|
|
{{ row.data.attributes.status }}
|
|
</ColorLabel>
|
|
</td>
|
|
<td>
|
|
<span class="text-sm font-bold" :class="$getTransactionTypeTextColor(row.data.attributes.type)">
|
|
{{ $getTransactionMark(row.data.attributes.type) + row.data.attributes.price }}
|
|
</span>
|
|
</td>
|
|
<td>
|
|
<span class="text-sm font-bold">
|
|
{{ row.data.attributes.created_at }}
|
|
</span>
|
|
</td>
|
|
<td class="text-right">
|
|
<img class="inline-block max-h-5" :src="$getPaymentLogo(row.data.attributes.driver)" :alt="row.data.attributes.driver">
|
|
</td>
|
|
</tr>
|
|
</template>
|
|
|
|
<!--Empty page-->
|
|
<template v-slot:empty-page>
|
|
<InfoBox>
|
|
<p>{{ $t('admin_page_user.invoices.empty') }}</p>
|
|
</InfoBox>
|
|
</template>
|
|
</DatatableWrapper>
|
|
</div>
|
|
|
|
<div v-if="! subscription && !isLoading" class="card shadow-card">
|
|
<InfoBox style="margin-bottom: 0">
|
|
<p>{{ $t("You don't have any subscription") }}</p>
|
|
</InfoBox>
|
|
</div>
|
|
</PageTab>
|
|
</template>
|
|
|
|
<script>
|
|
import DatatableWrapper from "../../components/Others/Tables/DatatableWrapper";
|
|
import ColorLabel from "../../components/Others/ColorLabel";
|
|
import ButtonBase from '/resources/js/components/FilesView/ButtonBase'
|
|
import PageTab from '/resources/js/components/Others/Layout/PageTab'
|
|
import InfoBox from '/resources/js/components/Others/Forms/InfoBox'
|
|
import AppInputSwitch from "../../components/Admin/AppInputSwitch"
|
|
import FormLabel from "../../components/Others/Forms/FormLabel"
|
|
import ProgressLine from "../../components/Admin/ProgressLine"
|
|
import {events} from '/resources/js/bus'
|
|
import {mapGetters} from 'vuex'
|
|
import axios from 'axios'
|
|
|
|
export default {
|
|
name: 'UserSubscription',
|
|
components: {
|
|
DatatableWrapper,
|
|
ColorLabel,
|
|
AppInputSwitch,
|
|
ProgressLine,
|
|
ButtonBase,
|
|
FormLabel,
|
|
InfoBox,
|
|
PageTab,
|
|
},
|
|
computed: {
|
|
...mapGetters([
|
|
'user',
|
|
]),
|
|
status() {
|
|
return {
|
|
'active': `Active until ${this.subscription.attributes.renews_at}`,
|
|
'cancelled': `Ends at ${this.subscription.attributes.ends_at}`,
|
|
}[this.subscription.attributes.status]
|
|
},
|
|
price() {
|
|
return {
|
|
'month': `${this.subscription.relationships.plan.data.attributes.price} Per Month`,
|
|
'year': `${this.subscription.relationships.plan.data.attributes.price} Per Year`,
|
|
}[this.subscription.relationships.plan.data.attributes.interval]
|
|
},
|
|
},
|
|
data() {
|
|
return {
|
|
isGeneratedUpdateLink: false,
|
|
subscription: undefined,
|
|
isCancelling: false,
|
|
limitations: [],
|
|
isLoading: true,
|
|
columns: [
|
|
{
|
|
label: this.$t('Note'),
|
|
field: 'note',
|
|
sortable: true
|
|
},
|
|
{
|
|
label: this.$t('Status'),
|
|
field: 'status',
|
|
sortable: true
|
|
},
|
|
{
|
|
label: this.$t('admin_page_invoices.table.total'),
|
|
field: 'amount',
|
|
sortable: true
|
|
},
|
|
{
|
|
label: this.$t('Payed At'),
|
|
field: 'created_at',
|
|
sortable: true
|
|
},
|
|
{
|
|
label: this.$t('Service'),
|
|
field: 'driver',
|
|
sortable: true
|
|
},
|
|
],
|
|
}
|
|
},
|
|
methods: {
|
|
updatePaymentMethod() {
|
|
|
|
this.isGeneratedUpdateLink = true
|
|
|
|
axios.post(`/api/subscriptions/edit/${this.subscription.id}`)
|
|
.then(response => {
|
|
window.location = response.data.url
|
|
})
|
|
.catch(() => {
|
|
events.$emit('toaster', {
|
|
type: 'danger',
|
|
message: this.$t('popup_error.title'),
|
|
})
|
|
this.isGeneratedUpdateLink = false
|
|
})
|
|
},
|
|
cancelSubscriptionConfirmation() {
|
|
events.$emit('confirm:open', {
|
|
title: this.$t('Are you sure you want to cancel subscription?'),
|
|
message: this.$t("You'll continue to have access to the features you've paid for until the end of your billing cycle."),
|
|
action: {
|
|
operation: 'cancel-subscription',
|
|
}
|
|
})
|
|
},
|
|
cancelSubscription() {
|
|
|
|
// Start deleting spinner button
|
|
this.isCancelling = true
|
|
|
|
// Send post request
|
|
axios
|
|
.post('/api/subscriptions/cancel')
|
|
.then(() => {
|
|
|
|
// Update user data
|
|
this.$store.dispatch('getAppData').then(() => {
|
|
this.fetchSubscriptionDetail()
|
|
})
|
|
|
|
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
|
|
})
|
|
},
|
|
fetchSubscriptionDetail() {
|
|
axios.get('/api/subscriptions/detail')
|
|
.then(response => {
|
|
|
|
this.subscription = response.data.data
|
|
|
|
Object
|
|
.entries(this.user.data.meta.limitations)
|
|
.map(([key, item]) => {
|
|
|
|
let payload = {
|
|
color: {
|
|
'max_storage_amount': 'warning',
|
|
'max_team_members': 'purple',
|
|
},
|
|
message: {
|
|
'max_storage_amount': `Total ${item.use} of ${item.total} Used`,
|
|
'max_team_members': `Total ${item.use} of ${item.total} Members`,
|
|
},
|
|
title: {
|
|
'max_storage_amount': `Storage`,
|
|
'max_team_members': `Team Members`,
|
|
}
|
|
}
|
|
|
|
this.limitations.push({
|
|
message: payload.message[key],
|
|
distribution: [
|
|
{
|
|
progress: item.percentage,
|
|
color: payload.color[key],
|
|
title: payload.title[key],
|
|
}
|
|
]
|
|
})
|
|
})
|
|
|
|
this.isLoading = false
|
|
})
|
|
.finally(() => {
|
|
this.isLoading = false
|
|
})
|
|
}
|
|
},
|
|
created() {
|
|
this.fetchSubscriptionDetail()
|
|
|
|
events.$on('action:confirmed', data => {
|
|
if (data.operation === 'cancel-subscription')
|
|
this.cancelSubscription()
|
|
})
|
|
}
|
|
}
|
|
</script>
|