mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-18 08:12:15 +00:00
236 lines
8.2 KiB
Vue
236 lines
8.2 KiB
Vue
<template>
|
|
<ValidationObserver @submit.prevent="createPlan" ref="createPlan" v-slot="{ invalid }" tag="form">
|
|
|
|
<div class="card shadow-card">
|
|
<FormLabel>
|
|
{{ $t('Details') }}
|
|
</FormLabel>
|
|
|
|
<!--Name-->
|
|
<ValidationProvider tag="div" mode="passive" name="Name" rules="required" v-slot="{ errors }">
|
|
<AppInputText :title="$t('admin_page_plans.form.name')">
|
|
<input v-model="plan.name" :placeholder="$t('admin_page_plans.form.name_plac')" type="text" :class="{'border-red': errors[0]}" class="focus-border-theme input-dark" />
|
|
</AppInputText>
|
|
</ValidationProvider>
|
|
|
|
<!--Description-->
|
|
<ValidationProvider tag="div" mode="passive" name="Description" v-slot="{ errors }">
|
|
<AppInputText :title="$t('admin_page_plans.form.description')">
|
|
<textarea v-model="plan.description" :placeholder="$t('admin_page_plans.form.description_plac')" :class="{'border-red': errors[0]}" class="focus-border-theme input-dark"></textarea>
|
|
</AppInputText>
|
|
</ValidationProvider>
|
|
|
|
<!--Currency-->
|
|
<ValidationProvider tag="div" mode="passive" name="Currency" rules="required" v-slot="{ errors }">
|
|
<AppInputText :title="$t('Currency')" class="w-full" :is-last="true">
|
|
<SelectInput v-model="plan.currency" :options="currencyList" :placeholder="$t('Select plan currency')" :isError="errors[0]" />
|
|
</AppInputText>
|
|
</ValidationProvider>
|
|
</div>
|
|
|
|
<div class="card shadow-card">
|
|
<FormLabel>
|
|
{{ $t('Charged Features') }}
|
|
</FormLabel>
|
|
|
|
<!--Bandwidth-->
|
|
<div>
|
|
<AppInputSwitch :title="$t('Bandwidth Price per 1GB')" :description="$t('Charge your user by the amount of data he upload or download.')">
|
|
<SwitchInput v-model="plan.features.bandwidth.active" class="switch" :state="plan.features.bandwidth.active" />
|
|
</AppInputSwitch>
|
|
|
|
<ValidationProvider v-if="plan.features.bandwidth.active" class="-mt-3" tag="div" mode="passive" name="Bandwidth Price" rules="required" v-slot="{ errors }">
|
|
<AppInputText class="w-full">
|
|
<input v-model="plan.features.bandwidth.per_unit" :placeholder="$t('Type the price per 1GB...')" type="number" step="0.01" min="0.01" max="999999999999" :class="{'border-red': errors[0]}" class="focus-border-theme input-dark" />
|
|
</AppInputText>
|
|
</ValidationProvider>
|
|
</div>
|
|
|
|
<!--Storage-->
|
|
<div>
|
|
<AppInputSwitch :title="$t('Storage Price per 1GB')" :description="$t('Charge your user by the amount of data he has stored on the disk per 1GB.')">
|
|
<SwitchInput v-model="plan.features.storage.active" class="switch" :state="plan.features.storage.active" />
|
|
</AppInputSwitch>
|
|
</div>
|
|
|
|
<ValidationProvider v-if="plan.features.storage.active" class="-mt-3" tag="div" mode="passive" name="Storage Price" rules="required" v-slot="{ errors }">
|
|
<AppInputText class="w-full">
|
|
<input v-model="plan.features.storage.per_unit" :placeholder="$t('Type the price per 1GB...')" type="number" step="0.01" min="0.01" max="999999999999" :class="{'border-red': errors[0]}" class="focus-border-theme input-dark" />
|
|
</AppInputText>
|
|
</ValidationProvider>
|
|
|
|
<!--Member-->
|
|
<div>
|
|
<AppInputSwitch :title="$t('Price per 1 Member')" :description="$t('Charge your user by the total members he use in his Team Folders.')">
|
|
<SwitchInput v-model="plan.features.member.active" class="switch" :state="plan.features.member.active" />
|
|
</AppInputSwitch>
|
|
</div>
|
|
|
|
<ValidationProvider v-if="plan.features.member.active" class="-mt-3" tag="div" mode="passive" name="Member Price" rules="required" v-slot="{ errors }">
|
|
<AppInputText class="w-full">
|
|
<input v-model="plan.features.member.per_unit" :placeholder="$t('Type the price per 1 member...')" type="number" step="0.01" min="0.01" max="999999999999" :class="{'border-red': errors[0]}" class="focus-border-theme input-dark" />
|
|
</AppInputText>
|
|
</ValidationProvider>
|
|
|
|
<!--Flat Fee-->
|
|
<div>
|
|
<AppInputSwitch :title="$t('Flat Fee per Cycle')" :description="$t('Charge monthly flat fee.')" :is-last="! plan.features.flatFee.active">
|
|
<SwitchInput v-model="plan.features.flatFee.active" class="switch" :state="plan.features.flatFee.active" />
|
|
</AppInputSwitch>
|
|
|
|
<ValidationProvider v-if="plan.features.flatFee.active" class="-mt-3" tag="div" mode="passive" name="FlatFee Price" rules="required" v-slot="{ errors }">
|
|
<AppInputText class="w-full" :is-last="true">
|
|
<input v-model="plan.features.flatFee.per_unit" :placeholder="$t('Type the price...')" type="number" step="0.01" min="0.01" max="999999999999" :class="{'border-red': errors[0]}" class="focus-border-theme input-dark" />
|
|
</AppInputText>
|
|
</ValidationProvider>
|
|
</div>
|
|
</div>
|
|
|
|
<ButtonBase :disabled="isLoading" :loading="isLoading" button-style="theme" type="submit">
|
|
{{ $t('admin_page_plans.create_plan_button') }}
|
|
</ButtonBase>
|
|
</ValidationObserver>
|
|
</template>
|
|
|
|
<script>
|
|
import SwitchInput from "../../../../components/Others/Forms/SwitchInput"
|
|
import AppInputSwitch from "../../../../components/Admin/AppInputSwitch"
|
|
import AppInputText from "../../../../components/Admin/AppInputText"
|
|
import {ValidationProvider, ValidationObserver} from 'vee-validate/dist/vee-validate.full'
|
|
import SelectInput from '/resources/js/components/Others/Forms/SelectInput'
|
|
import ImageInput from '/resources/js/components/Others/Forms/ImageInput'
|
|
import MobileHeader from '/resources/js/components/Mobile/MobileHeader'
|
|
import FormLabel from '/resources/js/components/Others/Forms/FormLabel'
|
|
import SectionTitle from '/resources/js/components/Others/SectionTitle'
|
|
import ButtonBase from '/resources/js/components/FilesView/ButtonBase'
|
|
import PageHeader from '/resources/js/components/Others/PageHeader'
|
|
import InfoBox from '/resources/js/components/Others/Forms/InfoBox'
|
|
import {required} from 'vee-validate/dist/rules'
|
|
import {mapGetters} from 'vuex'
|
|
import {events} from '/resources/js/bus'
|
|
import axios from 'axios'
|
|
|
|
export default {
|
|
name: 'CreateMeteredPlan',
|
|
components: {
|
|
ValidationProvider,
|
|
ValidationObserver,
|
|
AppInputSwitch,
|
|
SwitchInput,
|
|
SectionTitle,
|
|
AppInputText,
|
|
MobileHeader,
|
|
SelectInput,
|
|
ButtonBase,
|
|
ImageInput,
|
|
PageHeader,
|
|
FormLabel,
|
|
required,
|
|
InfoBox,
|
|
},
|
|
computed: {
|
|
...mapGetters([
|
|
'currencyList',
|
|
'intervalList',
|
|
])
|
|
},
|
|
data() {
|
|
return {
|
|
errorMessage: undefined,
|
|
isLoading: false,
|
|
isError: false,
|
|
plan: {
|
|
type: 'fixed',
|
|
name: undefined,
|
|
description: undefined,
|
|
currency: undefined,
|
|
features: {
|
|
bandwidth: {
|
|
active: false,
|
|
per_unit: undefined,
|
|
first_unit: 1,
|
|
aggregate_strategy: 'sum_of_usage',
|
|
},
|
|
storage: {
|
|
active: false,
|
|
per_unit: undefined,
|
|
first_unit: 1,
|
|
aggregate_strategy: 'maximum_usage',
|
|
},
|
|
member: {
|
|
active: false,
|
|
per_unit: undefined,
|
|
first_unit: 1,
|
|
aggregate_strategy: 'maximum_usage',
|
|
},
|
|
flatFee: {
|
|
active: false,
|
|
per_unit: undefined,
|
|
aggregate_strategy: 'maximum_usage',
|
|
},
|
|
},
|
|
}
|
|
}
|
|
},
|
|
methods: {
|
|
async createPlan() {
|
|
|
|
let tiers = []
|
|
|
|
Object.entries(this.plan.features).forEach(([key, feature]) => {
|
|
if (feature.active) {
|
|
tiers.push({
|
|
aggregate_strategy: feature.aggregate_strategy,
|
|
key: key,
|
|
tiers: [
|
|
{
|
|
per_unit: feature.per_unit,
|
|
first_unit: 1,
|
|
flat_fee: null,
|
|
last_unit: null,
|
|
}
|
|
]
|
|
})
|
|
}
|
|
})
|
|
|
|
// Validate fields
|
|
const isValid = await this.$refs.createPlan.validate();
|
|
|
|
if (!isValid) return;
|
|
|
|
// Start loading
|
|
this.isLoading = true
|
|
|
|
axios
|
|
.post('/api/subscriptions/admin/plans', {
|
|
type: 'metered',
|
|
name: this.plan.name,
|
|
description: this.plan.description,
|
|
currency: this.plan.currency,
|
|
meters: tiers
|
|
})
|
|
.then(response => {
|
|
|
|
events.$emit('toaster', {
|
|
type: 'success',
|
|
message: this.$t('toaster.plan_created'),
|
|
})
|
|
|
|
// Go to plan page
|
|
this.$router.push({name: 'PlanMeteredSettings', params: {id: response.data.data.id}})
|
|
})
|
|
.catch(error => {
|
|
events.$emit('toaster', {
|
|
type: 'danger',
|
|
message: this.$t('popup_error.title'),
|
|
})
|
|
})
|
|
.finally(() => {
|
|
this.isLoading = false
|
|
})
|
|
}
|
|
},
|
|
}
|
|
</script>
|