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>
|
2018-11-06 00:52:13 +02:00
|
|
|
<ui-switch v-model="cacheRemoteFiles">%i18n:@cache-remote-files%<span slot="desc">%i18n:@cache-remote-files-desc%</span></ui-switch>
|
2018-11-06 08:08:22 +02:00
|
|
|
<ui-input v-model="localDriveCapacityMb">%i18n:@local-drive-capacity-mb%<span slot="desc">%i18n:@mb%</span><span slot="suffix">MB</span></ui-input>
|
|
|
|
<ui-input v-model="remoteDriveCapacityMb" :disabled="!cacheRemoteFiles">%i18n:@remote-drive-capacity-mb%<span slot="desc">%i18n:@mb%</span><span slot="suffix">MB</span></ui-input>
|
2018-11-06 00:22:39 +02:00
|
|
|
</section>
|
2018-11-06 17:08:21 +02:00
|
|
|
<section class="fit-bottom">
|
|
|
|
<header><fa icon="shield-alt"/> %i18n:@recaptcha-config%</header>
|
|
|
|
<ui-switch v-model="enableRecaptcha">%i18n:@enable-recaptcha%</ui-switch>
|
|
|
|
<ui-info>%i18n:@recaptcha-info%</ui-info>
|
|
|
|
<ui-input v-model="recaptchaSiteKey" :disabled="!enableRecaptcha"><i slot="icon"><fa icon="key"/></i>%i18n:@recaptcha-site-key%</ui-input>
|
|
|
|
<ui-input v-model="recaptchaSecretKey" :disabled="!enableRecaptcha"><i slot="icon"><fa icon="key"/></i>%i18n:@recaptcha-secret-key%</ui-input>
|
|
|
|
</section>
|
2018-11-06 00:22:39 +02:00
|
|
|
<section>
|
2018-11-06 17:16:08 +02:00
|
|
|
<ui-switch v-model="disableRegistration">%i18n:@disable-registration%</ui-switch>
|
2018-11-02 16:05:53 +02:00
|
|
|
</section>
|
|
|
|
<section>
|
2018-11-06 17:16:08 +02:00
|
|
|
<ui-switch v-model="disableLocalTimeline">%i18n:@disable-local-timeline%</ui-switch>
|
|
|
|
</section>
|
|
|
|
<section>
|
|
|
|
<ui-button @click="updateMeta">%i18n:@save%</ui-button>
|
2018-11-02 16:05:53 +02:00
|
|
|
</section>
|
|
|
|
</ui-card>
|
|
|
|
|
|
|
|
<ui-card>
|
2018-11-06 17:16:08 +02:00
|
|
|
<div slot="title">%i18n:@invite%</div>
|
2018-11-02 16:05:53 +02:00
|
|
|
<section>
|
2018-11-06 17:16:08 +02:00
|
|
|
<ui-button @click="invite">%i18n:@invite%</ui-button>
|
|
|
|
<p v-if="inviteCode">Code: <code>{{ inviteCode }}</code></p>
|
2018-11-02 16:05:53 +02:00
|
|
|
</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:52:13 +02:00
|
|
|
cacheRemoteFiles: false,
|
2018-11-06 00:14:43 +02:00
|
|
|
localDriveCapacityMb: null,
|
|
|
|
remoteDriveCapacityMb: null,
|
2018-11-05 04:09:05 +02:00
|
|
|
maxNoteTextLength: null,
|
2018-11-06 17:08:21 +02:00
|
|
|
enableRecaptcha: false,
|
|
|
|
recaptchaSiteKey: null,
|
|
|
|
recaptchaSecretKey: 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:52:13 +02:00
|
|
|
this.cacheRemoteFiles = meta.cacheRemoteFiles;
|
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-06 17:08:21 +02:00
|
|
|
this.enableRecaptcha = meta.enableRecaptcha;
|
|
|
|
this.recaptchaSiteKey = meta.recaptchaSiteKey;
|
|
|
|
this.recaptchaSecretKey = meta.recaptchaSecretKey;
|
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:52:13 +02:00
|
|
|
cacheRemoteFiles: this.cacheRemoteFiles,
|
2018-11-06 00:14:43 +02:00
|
|
|
localDriveCapacityMb: parseInt(this.localDriveCapacityMb, 10),
|
|
|
|
remoteDriveCapacityMb: parseInt(this.remoteDriveCapacityMb, 10),
|
2018-11-06 17:08:21 +02:00
|
|
|
maxNoteTextLength: parseInt(this.maxNoteTextLength, 10),
|
|
|
|
enableRecaptcha: this.enableRecaptcha,
|
|
|
|
recaptchaSiteKey: this.recaptchaSiteKey,
|
|
|
|
recaptchaSecretKey: this.recaptchaSecretKey
|
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>
|