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-04 16:15:46 +02:00
|
|
|
<div slot="title">%fa:cog% %i18n:@instance%</div>
|
2018-11-02 16:05:53 +02:00
|
|
|
<section class="fit-top">
|
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>
|
|
|
|
<ui-input v-model="bannerUrl">%i18n:@banner-url%</ui-input>
|
2018-11-05 04:09:05 +02:00
|
|
|
<ui-input v-model="maxNoteTextLength">%i18n:@max-note-text-length%</ui-input>
|
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-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-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,
|
|
|
|
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>
|