2018-11-02 16:05:53 +02:00
|
|
|
<template>
|
2018-11-04 08:16:05 +02:00
|
|
|
<div class="axbwjelsbymowqjyywpirzhdlszoncqs">
|
2018-11-02 16:05:53 +02:00
|
|
|
<ui-card>
|
2018-11-05 21:01:22 +02:00
|
|
|
<div slot="title"><fa icon="cog"/> %i18n:@instance%</div>
|
2018-11-06 00:28:49 +02:00
|
|
|
<section class="fit-top fit-bottom">
|
2018-11-04 16:00:43 +02:00
|
|
|
<ui-input v-model="name">%i18n:@instance-name%</ui-input>
|
|
|
|
<ui-textarea v-model="description">%i18n:@instance-description%</ui-textarea>
|
2018-11-06 00:28:49 +02:00
|
|
|
<ui-input v-model="bannerUrl"><i slot="icon"><fa icon="link"/></i>%i18n:@banner-url%</ui-input>
|
2018-11-06 00:22:39 +02:00
|
|
|
</section>
|
|
|
|
<section class="fit-top fit-bottom">
|
|
|
|
<ui-input v-model="maxNoteTextLength">%i18n:@max-note-text-length%</ui-input>
|
|
|
|
</section>
|
|
|
|
<section class="fit-bottom">
|
2018-11-06 00:28:49 +02:00
|
|
|
<header><fa icon="cloud"/> %i18n:@drive-config%</header>
|
|
|
|
<ui-input v-model="localDriveCapacityMb">%i18n:@local-drive-capacity-mb%<span slot="text">%i18n:@mb%</span><span slot="suffix">MB</span></ui-input>
|
|
|
|
<ui-input v-model="remoteDriveCapacityMb">%i18n:@remote-drive-capacity-mb%<span slot="text">%i18n:@mb%</span><span slot="suffix">MB</span></ui-input>
|
2018-11-06 00:22:39 +02:00
|
|
|
</section>
|
|
|
|
<section>
|
2018-11-02 16:05:53 +02:00
|
|
|
<ui-button @click="updateMeta">%i18n:@save%</ui-button>
|
|
|
|
</section>
|
|
|
|
</ui-card>
|
|
|
|
|
|
|
|
<ui-card>
|
|
|
|
<div slot="title">%i18n:@disable-registration%</div>
|
|
|
|
<section>
|
|
|
|
<input type="checkbox" v-model="disableRegistration" @change="updateMeta">
|
|
|
|
<button class="ui" @click="invite">%i18n:@invite%</button>
|
|
|
|
<p v-if="inviteCode">Code: <code>{{ inviteCode }}</code></p>
|
|
|
|
</section>
|
|
|
|
</ui-card>
|
|
|
|
|
|
|
|
<ui-card>
|
|
|
|
<div slot="title">%i18n:@disable-local-timeline%</div>
|
|
|
|
<section>
|
|
|
|
<input type="checkbox" v-model="disableLocalTimeline" @change="updateMeta">
|
|
|
|
</section>
|
|
|
|
</ui-card>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from "vue";
|
|
|
|
|
|
|
|
export default Vue.extend({
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
disableRegistration: false,
|
|
|
|
disableLocalTimeline: false,
|
|
|
|
bannerUrl: null,
|
2018-11-04 16:00:43 +02:00
|
|
|
name: null,
|
|
|
|
description: null,
|
2018-11-06 00:14:43 +02:00
|
|
|
localDriveCapacityMb: null,
|
|
|
|
remoteDriveCapacityMb: null,
|
2018-11-05 04:09:05 +02:00
|
|
|
maxNoteTextLength: null,
|
2018-11-02 16:05:53 +02:00
|
|
|
inviteCode: null,
|
|
|
|
};
|
|
|
|
},
|
2018-11-04 16:00:43 +02:00
|
|
|
|
|
|
|
created() {
|
|
|
|
(this as any).os.getMeta().then(meta => {
|
|
|
|
this.bannerUrl = meta.bannerUrl;
|
|
|
|
this.name = meta.name;
|
|
|
|
this.description = meta.description;
|
2018-11-06 00:14:43 +02:00
|
|
|
this.localDriveCapacityMb = meta.driveCapacityPerLocalUserMb;
|
|
|
|
this.remoteDriveCapacityMb = meta.driveCapacityPerRemoteUserMb;
|
2018-11-05 04:09:05 +02:00
|
|
|
this.maxNoteTextLength = meta.maxNoteTextLength;
|
2018-11-04 16:00:43 +02:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2018-11-02 16:05:53 +02:00
|
|
|
methods: {
|
|
|
|
invite() {
|
|
|
|
(this as any).api('admin/invite').then(x => {
|
|
|
|
this.inviteCode = x.code;
|
|
|
|
}).catch(e => {
|
2018-11-05 03:32:45 +02:00
|
|
|
this.$swal({
|
|
|
|
type: 'error',
|
|
|
|
text: e
|
|
|
|
});
|
2018-11-02 16:05:53 +02:00
|
|
|
});
|
|
|
|
},
|
2018-11-04 16:00:43 +02:00
|
|
|
|
2018-11-02 16:05:53 +02:00
|
|
|
updateMeta() {
|
|
|
|
(this as any).api('admin/update-meta', {
|
|
|
|
disableRegistration: this.disableRegistration,
|
|
|
|
disableLocalTimeline: this.disableLocalTimeline,
|
2018-11-04 16:00:43 +02:00
|
|
|
bannerUrl: this.bannerUrl,
|
|
|
|
name: this.name,
|
2018-11-05 04:09:05 +02:00
|
|
|
description: this.description,
|
2018-11-06 00:14:43 +02:00
|
|
|
localDriveCapacityMb: parseInt(this.localDriveCapacityMb, 10),
|
|
|
|
remoteDriveCapacityMb: parseInt(this.remoteDriveCapacityMb, 10),
|
2018-11-05 04:09:05 +02:00
|
|
|
maxNoteTextLength: parseInt(this.maxNoteTextLength, 10)
|
2018-11-02 16:05:53 +02:00
|
|
|
}).then(() => {
|
2018-11-05 03:32:45 +02:00
|
|
|
this.$swal({
|
|
|
|
type: 'success',
|
|
|
|
text: '%i18n:@saved%'
|
|
|
|
});
|
2018-11-02 16:05:53 +02:00
|
|
|
}).catch(e => {
|
2018-11-05 03:32:45 +02:00
|
|
|
this.$swal({
|
|
|
|
type: 'error',
|
|
|
|
text: e
|
|
|
|
});
|
2018-11-02 16:05:53 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
2018-11-04 08:16:05 +02:00
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
|
|
|
.axbwjelsbymowqjyywpirzhdlszoncqs
|
|
|
|
@media (min-width 500px)
|
|
|
|
padding 16px
|
|
|
|
|
|
|
|
</style>
|