2020-02-16 18:21:27 +01:00
|
|
|
<template>
|
2021-04-22 15:29:33 +02:00
|
|
|
<FormBase>
|
|
|
|
<FormSuspense :p="init">
|
2021-09-29 17:50:45 +02:00
|
|
|
<FormInput v-model="name">
|
2021-04-22 15:29:33 +02:00
|
|
|
<span>{{ $ts.instanceName }}</span>
|
|
|
|
</FormInput>
|
|
|
|
|
2021-09-29 17:50:45 +02:00
|
|
|
<FormTextarea v-model="description">
|
2021-04-22 15:29:33 +02:00
|
|
|
<span>{{ $ts.instanceDescription }}</span>
|
|
|
|
</FormTextarea>
|
|
|
|
|
2021-09-29 17:50:45 +02:00
|
|
|
<FormInput v-model="iconUrl">
|
2021-04-22 15:29:33 +02:00
|
|
|
<template #prefix><i class="fas fa-link"></i></template>
|
|
|
|
<span>{{ $ts.iconUrl }}</span>
|
|
|
|
</FormInput>
|
|
|
|
|
2021-09-29 17:50:45 +02:00
|
|
|
<FormInput v-model="bannerUrl">
|
2021-04-22 15:29:33 +02:00
|
|
|
<template #prefix><i class="fas fa-link"></i></template>
|
|
|
|
<span>{{ $ts.bannerUrl }}</span>
|
|
|
|
</FormInput>
|
|
|
|
|
2021-09-29 17:50:45 +02:00
|
|
|
<FormInput v-model="backgroundImageUrl">
|
2021-06-08 05:17:17 +02:00
|
|
|
<template #prefix><i class="fas fa-link"></i></template>
|
|
|
|
<span>{{ $ts.backgroundImageUrl }}</span>
|
|
|
|
</FormInput>
|
|
|
|
|
2021-09-29 17:50:45 +02:00
|
|
|
<FormInput v-model="tosUrl">
|
2021-04-22 15:29:33 +02:00
|
|
|
<template #prefix><i class="fas fa-link"></i></template>
|
|
|
|
<span>{{ $ts.tosUrl }}</span>
|
|
|
|
</FormInput>
|
|
|
|
|
2021-09-29 17:50:45 +02:00
|
|
|
<FormInput v-model="maintainerName">
|
2021-04-22 15:29:33 +02:00
|
|
|
<span>{{ $ts.maintainerName }}</span>
|
|
|
|
</FormInput>
|
|
|
|
|
2021-09-29 17:50:45 +02:00
|
|
|
<FormInput v-model="maintainerEmail" type="email">
|
2021-04-22 15:29:33 +02:00
|
|
|
<template #prefix><i class="fas fa-envelope"></i></template>
|
|
|
|
<span>{{ $ts.maintainerEmail }}</span>
|
|
|
|
</FormInput>
|
|
|
|
|
2021-09-29 17:50:45 +02:00
|
|
|
<FormInput v-model="maxNoteTextLength" type="number">
|
2021-04-22 15:29:33 +02:00
|
|
|
<template #prefix><i class="fas fa-pencil-alt"></i></template>
|
|
|
|
<span>{{ $ts.maxNoteTextLength }}</span>
|
|
|
|
</FormInput>
|
|
|
|
|
2021-09-29 17:50:45 +02:00
|
|
|
<FormSwitch v-model="enableLocalTimeline">{{ $ts.enableLocalTimeline }}</FormSwitch>
|
|
|
|
<FormSwitch v-model="enableGlobalTimeline">{{ $ts.enableGlobalTimeline }}</FormSwitch>
|
2021-04-22 15:29:33 +02:00
|
|
|
<FormInfo>{{ $ts.disablingTimelinesInfo }}</FormInfo>
|
|
|
|
|
|
|
|
<FormButton @click="save" primary><i class="fas fa-save"></i> {{ $ts.save }}</FormButton>
|
|
|
|
</FormSuspense>
|
|
|
|
</FormBase>
|
2020-02-16 18:21:27 +01:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2021-04-22 15:29:33 +02:00
|
|
|
import { defineComponent } from 'vue';
|
2021-09-29 17:50:45 +02: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 FormTextarea from '@client/components/debobigego/textarea.vue';
|
|
|
|
import FormInfo from '@client/components/debobigego/info.vue';
|
|
|
|
import FormSuspense from '@client/components/debobigego/suspense.vue';
|
2021-03-23 09:30:14 +01:00
|
|
|
import * as os from '@client/os';
|
2021-04-10 05:54:12 +02:00
|
|
|
import * as symbols from '@client/symbols';
|
2021-04-22 15:29:33 +02:00
|
|
|
import { fetchInstance } from '@client/instance';
|
2020-02-16 18:21:27 +01:00
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
export default defineComponent({
|
2020-02-16 18:21:27 +01:00
|
|
|
components: {
|
2021-04-22 15:29:33 +02:00
|
|
|
FormSwitch,
|
|
|
|
FormInput,
|
|
|
|
FormBase,
|
|
|
|
FormGroup,
|
|
|
|
FormButton,
|
|
|
|
FormTextarea,
|
|
|
|
FormInfo,
|
|
|
|
FormSuspense,
|
2020-02-16 18:21:27 +01:00
|
|
|
},
|
|
|
|
|
2021-04-22 15:29:33 +02:00
|
|
|
emits: ['info'],
|
|
|
|
|
2020-02-16 18:21:27 +01:00
|
|
|
data() {
|
|
|
|
return {
|
2021-04-10 05:54:12 +02:00
|
|
|
[symbols.PAGE_INFO]: {
|
2021-04-22 15:29:33 +02:00
|
|
|
title: this.$ts.general,
|
|
|
|
icon: 'fas fa-cog'
|
2020-10-17 13:12:00 +02:00
|
|
|
},
|
2020-02-16 18:21:27 +01:00
|
|
|
name: null,
|
|
|
|
description: null,
|
2020-07-26 04:05:26 +02:00
|
|
|
tosUrl: null as string | null,
|
2021-04-22 15:29:33 +02:00
|
|
|
maintainerName: null,
|
|
|
|
maintainerEmail: null,
|
2020-02-16 18:21:27 +01:00
|
|
|
iconUrl: null,
|
2021-04-22 15:29:33 +02:00
|
|
|
bannerUrl: null,
|
2021-06-08 05:17:17 +02:00
|
|
|
backgroundImageUrl: null,
|
2020-02-16 18:21:27 +01:00
|
|
|
maxNoteTextLength: 0,
|
|
|
|
enableLocalTimeline: false,
|
|
|
|
enableGlobalTimeline: false,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2021-04-22 15:29:33 +02:00
|
|
|
async mounted() {
|
|
|
|
this.$emit('info', this[symbols.PAGE_INFO]);
|
2020-04-29 02:35:37 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
2021-04-22 15:29:33 +02:00
|
|
|
async init() {
|
|
|
|
const meta = await os.api('meta', { detail: true });
|
|
|
|
this.name = meta.name;
|
|
|
|
this.description = meta.description;
|
|
|
|
this.tosUrl = meta.tosUrl;
|
|
|
|
this.iconUrl = meta.iconUrl;
|
|
|
|
this.bannerUrl = meta.bannerUrl;
|
2021-06-08 05:17:17 +02:00
|
|
|
this.backgroundImageUrl = meta.backgroundImageUrl;
|
2021-04-22 15:29:33 +02:00
|
|
|
this.maintainerName = meta.maintainerName;
|
|
|
|
this.maintainerEmail = meta.maintainerEmail;
|
|
|
|
this.maxNoteTextLength = meta.maxNoteTextLength;
|
|
|
|
this.enableLocalTimeline = !meta.disableLocalTimeline;
|
|
|
|
this.enableGlobalTimeline = !meta.disableGlobalTimeline;
|
2020-03-21 15:27:54 +01:00
|
|
|
},
|
|
|
|
|
2021-04-22 15:29:33 +02:00
|
|
|
save() {
|
|
|
|
os.apiWithDialog('admin/update-meta', {
|
2020-02-16 18:21:27 +01:00
|
|
|
name: this.name,
|
|
|
|
description: this.description,
|
|
|
|
tosUrl: this.tosUrl,
|
|
|
|
iconUrl: this.iconUrl,
|
2021-04-22 15:29:33 +02:00
|
|
|
bannerUrl: this.bannerUrl,
|
2021-06-08 05:17:17 +02:00
|
|
|
backgroundImageUrl: this.backgroundImageUrl,
|
2020-02-16 18:21:27 +01:00
|
|
|
maintainerName: this.maintainerName,
|
|
|
|
maintainerEmail: this.maintainerEmail,
|
|
|
|
maxNoteTextLength: this.maxNoteTextLength,
|
|
|
|
disableLocalTimeline: !this.enableLocalTimeline,
|
|
|
|
disableGlobalTimeline: !this.enableGlobalTimeline,
|
|
|
|
}).then(() => {
|
2020-12-19 02:55:52 +01:00
|
|
|
fetchInstance();
|
2020-02-16 18:21:27 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|