2021-04-22 13:29:33 +00:00
|
|
|
<template>
|
|
|
|
<FormBase>
|
|
|
|
<FormSuspense :p="init">
|
2021-09-29 15:50:45 +00:00
|
|
|
<FormSwitch v-model="cacheRemoteFiles">
|
2021-04-22 13:29:33 +00:00
|
|
|
{{ $ts.cacheRemoteFiles }}
|
|
|
|
<template #desc>{{ $ts.cacheRemoteFilesDescription }}</template>
|
|
|
|
</FormSwitch>
|
|
|
|
|
2021-09-29 15:50:45 +00:00
|
|
|
<FormSwitch v-model="proxyRemoteFiles">
|
2021-04-22 13:29:33 +00:00
|
|
|
{{ $ts.proxyRemoteFiles }}
|
|
|
|
<template #desc>{{ $ts.proxyRemoteFilesDescription }}</template>
|
|
|
|
</FormSwitch>
|
|
|
|
|
2021-09-29 15:50:45 +00:00
|
|
|
<FormInput v-model="localDriveCapacityMb" type="number">
|
2021-04-22 13:29:33 +00:00
|
|
|
<span>{{ $ts.driveCapacityPerLocalAccount }}</span>
|
|
|
|
<template #suffix>MB</template>
|
|
|
|
<template #desc>{{ $ts.inMb }}</template>
|
|
|
|
</FormInput>
|
|
|
|
|
2021-09-29 15:50:45 +00:00
|
|
|
<FormInput v-model="remoteDriveCapacityMb" type="number" :disabled="!cacheRemoteFiles">
|
2021-04-22 13:29:33 +00:00
|
|
|
<span>{{ $ts.driveCapacityPerRemoteAccount }}</span>
|
|
|
|
<template #suffix>MB</template>
|
|
|
|
<template #desc>{{ $ts.inMb }}</template>
|
|
|
|
</FormInput>
|
|
|
|
|
|
|
|
<FormButton @click="save" primary><i class="fas fa-save"></i> {{ $ts.save }}</FormButton>
|
|
|
|
</FormSuspense>
|
|
|
|
</FormBase>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import { defineComponent } from 'vue';
|
2021-09-29 15:50:45 +00:00
|
|
|
import FormSwitch from '@client/components/debobigego/switch.vue';
|
|
|
|
import FormInput from '@client/components/debobigego/input.vue';
|
|
|
|
import FormButton from '@client/components/debobigego/button.vue';
|
|
|
|
import FormBase from '@client/components/debobigego/base.vue';
|
|
|
|
import FormGroup from '@client/components/debobigego/group.vue';
|
|
|
|
import FormSuspense from '@client/components/debobigego/suspense.vue';
|
2021-04-22 13:29:33 +00:00
|
|
|
import * as os from '@client/os';
|
|
|
|
import * as symbols from '@client/symbols';
|
|
|
|
import { fetchInstance } from '@client/instance';
|
|
|
|
|
|
|
|
export default defineComponent({
|
|
|
|
components: {
|
|
|
|
FormSwitch,
|
|
|
|
FormInput,
|
|
|
|
FormBase,
|
|
|
|
FormGroup,
|
|
|
|
FormButton,
|
|
|
|
FormSuspense,
|
|
|
|
},
|
|
|
|
|
|
|
|
emits: ['info'],
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
[symbols.PAGE_INFO]: {
|
|
|
|
title: this.$ts.files,
|
|
|
|
icon: 'fas fa-cloud'
|
|
|
|
},
|
|
|
|
cacheRemoteFiles: false,
|
|
|
|
proxyRemoteFiles: false,
|
|
|
|
localDriveCapacityMb: 0,
|
|
|
|
remoteDriveCapacityMb: 0,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
async mounted() {
|
|
|
|
this.$emit('info', this[symbols.PAGE_INFO]);
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
async init() {
|
|
|
|
const meta = await os.api('meta', { detail: true });
|
|
|
|
this.cacheRemoteFiles = meta.cacheRemoteFiles;
|
|
|
|
this.proxyRemoteFiles = meta.proxyRemoteFiles;
|
|
|
|
this.localDriveCapacityMb = meta.driveCapacityPerLocalUserMb;
|
|
|
|
this.remoteDriveCapacityMb = meta.driveCapacityPerRemoteUserMb;
|
|
|
|
},
|
|
|
|
save() {
|
|
|
|
os.apiWithDialog('admin/update-meta', {
|
|
|
|
cacheRemoteFiles: this.cacheRemoteFiles,
|
|
|
|
proxyRemoteFiles: this.proxyRemoteFiles,
|
|
|
|
localDriveCapacityMb: parseInt(this.localDriveCapacityMb, 10),
|
|
|
|
remoteDriveCapacityMb: parseInt(this.remoteDriveCapacityMb, 10),
|
|
|
|
}).then(() => {
|
|
|
|
fetchInstance();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|