2020-02-16 18:21:27 +01:00
|
|
|
<template>
|
2022-06-20 10:38:49 +02:00
|
|
|
<div>
|
|
|
|
<MkStickyContainer>
|
2023-03-02 12:47:24 +01:00
|
|
|
<template #header><XHeader :tabs="headerTabs"/></template>
|
2022-06-20 10:38:49 +02:00
|
|
|
<MkSpacer :content-max="700" :margin-min="16" :margin-max="32">
|
|
|
|
<FormSuspense :p="init">
|
2023-01-06 05:40:17 +01:00
|
|
|
<div class="_gaps_m">
|
2023-01-07 07:09:46 +01:00
|
|
|
<MkInput v-model="name">
|
2022-06-20 10:38:49 +02:00
|
|
|
<template #label>{{ i18n.ts.instanceName }}</template>
|
2023-01-07 07:09:46 +01:00
|
|
|
</MkInput>
|
2021-12-30 19:21:26 +01:00
|
|
|
|
2023-01-07 07:09:46 +01:00
|
|
|
<MkTextarea v-model="description">
|
2022-06-20 10:38:49 +02:00
|
|
|
<template #label>{{ i18n.ts.instanceDescription }}</template>
|
2023-01-07 07:09:46 +01:00
|
|
|
</MkTextarea>
|
2022-06-20 10:38:49 +02:00
|
|
|
|
2023-01-07 07:09:46 +01:00
|
|
|
<MkInput v-model="tosUrl">
|
2022-12-19 11:01:30 +01:00
|
|
|
<template #prefix><i class="ti ti-link"></i></template>
|
2022-06-20 10:38:49 +02:00
|
|
|
<template #label>{{ i18n.ts.tosUrl }}</template>
|
2023-01-07 07:09:46 +01:00
|
|
|
</MkInput>
|
2022-01-04 19:09:20 +01:00
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
<FormSplit :min-width="300">
|
2023-01-07 07:09:46 +01:00
|
|
|
<MkInput v-model="maintainerName">
|
2022-06-20 10:38:49 +02:00
|
|
|
<template #label>{{ i18n.ts.maintainerName }}</template>
|
2023-01-07 07:09:46 +01:00
|
|
|
</MkInput>
|
2022-01-04 19:09:20 +01:00
|
|
|
|
2023-01-07 07:09:46 +01:00
|
|
|
<MkInput v-model="maintainerEmail" type="email">
|
2022-12-19 11:01:30 +01:00
|
|
|
<template #prefix><i class="ti ti-mail"></i></template>
|
2022-06-20 10:38:49 +02:00
|
|
|
<template #label>{{ i18n.ts.maintainerEmail }}</template>
|
2023-01-07 07:09:46 +01:00
|
|
|
</MkInput>
|
2022-06-20 10:38:49 +02:00
|
|
|
</FormSplit>
|
2022-01-04 19:09:20 +01:00
|
|
|
|
2023-01-07 07:09:46 +01:00
|
|
|
<MkTextarea v-model="pinnedUsers">
|
2022-06-20 10:38:49 +02:00
|
|
|
<template #label>{{ i18n.ts.pinnedUsers }}</template>
|
|
|
|
<template #caption>{{ i18n.ts.pinnedUsersDescription }}</template>
|
2023-01-07 07:09:46 +01:00
|
|
|
</MkTextarea>
|
2022-01-04 19:09:20 +01:00
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
<FormSection>
|
2023-01-06 05:40:17 +01:00
|
|
|
<div class="_gaps_s">
|
2023-01-07 06:59:54 +01:00
|
|
|
<MkSwitch v-model="enableRegistration">
|
2023-01-05 13:04:56 +01:00
|
|
|
<template #label>{{ i18n.ts.enableRegistration }}</template>
|
2023-01-07 06:59:54 +01:00
|
|
|
</MkSwitch>
|
2023-01-05 13:04:56 +01:00
|
|
|
|
2023-01-07 06:59:54 +01:00
|
|
|
<MkSwitch v-model="emailRequiredForSignup">
|
2023-01-05 13:04:56 +01:00
|
|
|
<template #label>{{ i18n.ts.emailRequiredForSignup }}</template>
|
2023-01-07 06:59:54 +01:00
|
|
|
</MkSwitch>
|
2023-01-05 13:04:56 +01:00
|
|
|
</div>
|
2022-06-20 10:38:49 +02:00
|
|
|
</FormSection>
|
|
|
|
|
|
|
|
<FormSection>
|
|
|
|
<template #label>{{ i18n.ts.theme }}</template>
|
|
|
|
|
2023-01-06 05:40:17 +01:00
|
|
|
<div class="_gaps_m">
|
2023-01-07 07:09:46 +01:00
|
|
|
<MkInput v-model="iconUrl">
|
2023-01-05 13:04:56 +01:00
|
|
|
<template #prefix><i class="ti ti-link"></i></template>
|
|
|
|
<template #label>{{ i18n.ts.iconUrl }}</template>
|
2023-01-07 07:09:46 +01:00
|
|
|
</MkInput>
|
2022-06-20 10:38:49 +02:00
|
|
|
|
2023-01-07 07:09:46 +01:00
|
|
|
<MkInput v-model="bannerUrl">
|
2023-01-05 13:04:56 +01:00
|
|
|
<template #prefix><i class="ti ti-link"></i></template>
|
|
|
|
<template #label>{{ i18n.ts.bannerUrl }}</template>
|
2023-01-07 07:09:46 +01:00
|
|
|
</MkInput>
|
2022-06-20 10:38:49 +02:00
|
|
|
|
2023-01-07 07:09:46 +01:00
|
|
|
<MkInput v-model="backgroundImageUrl">
|
2023-01-05 13:04:56 +01:00
|
|
|
<template #prefix><i class="ti ti-link"></i></template>
|
|
|
|
<template #label>{{ i18n.ts.backgroundImageUrl }}</template>
|
2023-01-07 07:09:46 +01:00
|
|
|
</MkInput>
|
2022-06-20 10:38:49 +02:00
|
|
|
|
2023-01-07 07:09:46 +01:00
|
|
|
<MkInput v-model="themeColor">
|
2023-01-05 13:04:56 +01:00
|
|
|
<template #prefix><i class="ti ti-palette"></i></template>
|
|
|
|
<template #label>{{ i18n.ts.themeColor }}</template>
|
|
|
|
<template #caption>#RRGGBB</template>
|
2023-01-07 07:09:46 +01:00
|
|
|
</MkInput>
|
2022-06-20 10:38:49 +02:00
|
|
|
|
2023-01-07 07:09:46 +01:00
|
|
|
<MkTextarea v-model="defaultLightTheme">
|
2023-01-05 13:04:56 +01:00
|
|
|
<template #label>{{ i18n.ts.instanceDefaultLightTheme }}</template>
|
|
|
|
<template #caption>{{ i18n.ts.instanceDefaultThemeDescription }}</template>
|
2023-01-07 07:09:46 +01:00
|
|
|
</MkTextarea>
|
2022-06-20 10:38:49 +02:00
|
|
|
|
2023-01-07 07:09:46 +01:00
|
|
|
<MkTextarea v-model="defaultDarkTheme">
|
2023-01-05 13:04:56 +01:00
|
|
|
<template #label>{{ i18n.ts.instanceDefaultDarkTheme }}</template>
|
|
|
|
<template #caption>{{ i18n.ts.instanceDefaultThemeDescription }}</template>
|
2023-01-07 07:09:46 +01:00
|
|
|
</MkTextarea>
|
2023-01-05 13:04:56 +01:00
|
|
|
</div>
|
2022-06-20 10:38:49 +02:00
|
|
|
</FormSection>
|
|
|
|
|
|
|
|
<FormSection>
|
|
|
|
<template #label>{{ i18n.ts.files }}</template>
|
|
|
|
|
2023-01-06 05:40:17 +01:00
|
|
|
<div class="_gaps_m">
|
2023-01-07 06:59:54 +01:00
|
|
|
<MkSwitch v-model="cacheRemoteFiles">
|
2023-01-05 13:04:56 +01:00
|
|
|
<template #label>{{ i18n.ts.cacheRemoteFiles }}</template>
|
|
|
|
<template #caption>{{ i18n.ts.cacheRemoteFilesDescription }}</template>
|
2023-01-07 06:59:54 +01:00
|
|
|
</MkSwitch>
|
2023-01-05 13:04:56 +01:00
|
|
|
</div>
|
2022-06-20 10:38:49 +02:00
|
|
|
</FormSection>
|
|
|
|
|
|
|
|
<FormSection>
|
|
|
|
<template #label>ServiceWorker</template>
|
|
|
|
|
2023-01-06 05:40:17 +01:00
|
|
|
<div class="_gaps_m">
|
2023-01-07 06:59:54 +01:00
|
|
|
<MkSwitch v-model="enableServiceWorker">
|
2023-01-05 13:04:56 +01:00
|
|
|
<template #label>{{ i18n.ts.enableServiceworker }}</template>
|
|
|
|
<template #caption>{{ i18n.ts.serviceworkerInfo }}</template>
|
2023-01-07 06:59:54 +01:00
|
|
|
</MkSwitch>
|
2023-01-05 13:04:56 +01:00
|
|
|
|
|
|
|
<template v-if="enableServiceWorker">
|
2023-01-07 07:09:46 +01:00
|
|
|
<MkInput v-model="swPublicKey">
|
2023-01-05 13:04:56 +01:00
|
|
|
<template #prefix><i class="ti ti-key"></i></template>
|
|
|
|
<template #label>Public key</template>
|
2023-01-07 07:09:46 +01:00
|
|
|
</MkInput>
|
2023-01-05 13:04:56 +01:00
|
|
|
|
2023-01-07 07:09:46 +01:00
|
|
|
<MkInput v-model="swPrivateKey">
|
2023-01-05 13:04:56 +01:00
|
|
|
<template #prefix><i class="ti ti-key"></i></template>
|
|
|
|
<template #label>Private key</template>
|
2023-01-07 07:09:46 +01:00
|
|
|
</MkInput>
|
2023-01-05 13:04:56 +01:00
|
|
|
</template>
|
|
|
|
</div>
|
2022-06-20 10:38:49 +02:00
|
|
|
</FormSection>
|
|
|
|
|
|
|
|
<FormSection>
|
|
|
|
<template #label>DeepL Translation</template>
|
|
|
|
|
2023-01-06 05:40:17 +01:00
|
|
|
<div class="_gaps_m">
|
2023-01-07 07:09:46 +01:00
|
|
|
<MkInput v-model="deeplAuthKey">
|
2023-01-05 13:04:56 +01:00
|
|
|
<template #prefix><i class="ti ti-key"></i></template>
|
|
|
|
<template #label>DeepL Auth Key</template>
|
2023-01-07 07:09:46 +01:00
|
|
|
</MkInput>
|
2023-01-07 06:59:54 +01:00
|
|
|
<MkSwitch v-model="deeplIsPro">
|
2023-01-05 13:04:56 +01:00
|
|
|
<template #label>Pro account</template>
|
2023-01-07 06:59:54 +01:00
|
|
|
</MkSwitch>
|
2023-01-05 13:04:56 +01:00
|
|
|
</div>
|
2022-06-20 10:38:49 +02:00
|
|
|
</FormSection>
|
|
|
|
</div>
|
|
|
|
</FormSuspense>
|
|
|
|
</MkSpacer>
|
2023-03-02 12:47:24 +01:00
|
|
|
<template #footer>
|
|
|
|
<div :class="$style.footer">
|
|
|
|
<MkSpacer :content-max="700" :margin-min="16" :margin-max="16">
|
|
|
|
<MkButton primary rounded @click="save"><i class="ti ti-check"></i> {{ i18n.ts.save }}</MkButton>
|
|
|
|
</MkSpacer>
|
|
|
|
</div>
|
|
|
|
</template>
|
2022-06-20 10:38:49 +02:00
|
|
|
</MkStickyContainer>
|
|
|
|
</div>
|
2020-02-16 18:21:27 +01:00
|
|
|
</template>
|
|
|
|
|
2022-05-19 13:30:23 +02:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { } from 'vue';
|
2022-06-20 10:38:49 +02:00
|
|
|
import XHeader from './_header_.vue';
|
2023-01-07 06:59:54 +01:00
|
|
|
import MkSwitch from '@/components/MkSwitch.vue';
|
2023-01-07 07:09:46 +01:00
|
|
|
import MkInput from '@/components/MkInput.vue';
|
|
|
|
import MkTextarea from '@/components/MkTextarea.vue';
|
2021-12-30 13:47:48 +01:00
|
|
|
import FormSection from '@/components/form/section.vue';
|
|
|
|
import FormSplit from '@/components/form/split.vue';
|
|
|
|
import FormSuspense from '@/components/form/suspense.vue';
|
2021-11-11 18:02:25 +01:00
|
|
|
import * as os from '@/os';
|
2022-02-28 19:51:31 +01:00
|
|
|
import { fetchInstance } from '@/instance';
|
2022-05-19 13:30:23 +02:00
|
|
|
import { i18n } from '@/i18n';
|
2022-06-20 10:38:49 +02:00
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
2023-03-02 12:47:24 +01:00
|
|
|
import MkButton from '@/components/MkButton.vue';
|
2020-02-16 18:21:27 +01:00
|
|
|
|
2022-05-19 13:30:23 +02:00
|
|
|
let name: string | null = $ref(null);
|
|
|
|
let description: string | null = $ref(null);
|
|
|
|
let tosUrl: string | null = $ref(null);
|
|
|
|
let maintainerName: string | null = $ref(null);
|
|
|
|
let maintainerEmail: string | null = $ref(null);
|
|
|
|
let iconUrl: string | null = $ref(null);
|
|
|
|
let bannerUrl: string | null = $ref(null);
|
|
|
|
let backgroundImageUrl: string | null = $ref(null);
|
|
|
|
let themeColor: any = $ref(null);
|
|
|
|
let defaultLightTheme: any = $ref(null);
|
|
|
|
let defaultDarkTheme: any = $ref(null);
|
|
|
|
let pinnedUsers: string = $ref('');
|
|
|
|
let cacheRemoteFiles: boolean = $ref(false);
|
|
|
|
let enableRegistration: boolean = $ref(false);
|
|
|
|
let emailRequiredForSignup: boolean = $ref(false);
|
|
|
|
let enableServiceWorker: boolean = $ref(false);
|
|
|
|
let swPublicKey: any = $ref(null);
|
|
|
|
let swPrivateKey: any = $ref(null);
|
|
|
|
let deeplAuthKey: string = $ref('');
|
|
|
|
let deeplIsPro: boolean = $ref(false);
|
2020-02-16 18:21:27 +01:00
|
|
|
|
2022-05-19 13:30:23 +02:00
|
|
|
async function init() {
|
|
|
|
const meta = await os.api('admin/meta');
|
|
|
|
name = meta.name;
|
|
|
|
description = meta.description;
|
|
|
|
tosUrl = meta.tosUrl;
|
|
|
|
iconUrl = meta.iconUrl;
|
|
|
|
bannerUrl = meta.bannerUrl;
|
|
|
|
backgroundImageUrl = meta.backgroundImageUrl;
|
|
|
|
themeColor = meta.themeColor;
|
|
|
|
defaultLightTheme = meta.defaultLightTheme;
|
|
|
|
defaultDarkTheme = meta.defaultDarkTheme;
|
|
|
|
maintainerName = meta.maintainerName;
|
|
|
|
maintainerEmail = meta.maintainerEmail;
|
|
|
|
pinnedUsers = meta.pinnedUsers.join('\n');
|
|
|
|
cacheRemoteFiles = meta.cacheRemoteFiles;
|
|
|
|
enableRegistration = !meta.disableRegistration;
|
|
|
|
emailRequiredForSignup = meta.emailRequiredForSignup;
|
|
|
|
enableServiceWorker = meta.enableServiceWorker;
|
|
|
|
swPublicKey = meta.swPublickey;
|
|
|
|
swPrivateKey = meta.swPrivateKey;
|
|
|
|
deeplAuthKey = meta.deeplAuthKey;
|
|
|
|
deeplIsPro = meta.deeplIsPro;
|
|
|
|
}
|
2021-04-22 15:29:33 +02:00
|
|
|
|
2022-05-19 13:30:23 +02:00
|
|
|
function save() {
|
|
|
|
os.apiWithDialog('admin/update-meta', {
|
|
|
|
name,
|
|
|
|
description,
|
|
|
|
tosUrl,
|
|
|
|
iconUrl,
|
|
|
|
bannerUrl,
|
|
|
|
backgroundImageUrl,
|
|
|
|
themeColor: themeColor === '' ? null : themeColor,
|
|
|
|
defaultLightTheme: defaultLightTheme === '' ? null : defaultLightTheme,
|
|
|
|
defaultDarkTheme: defaultDarkTheme === '' ? null : defaultDarkTheme,
|
|
|
|
maintainerName,
|
|
|
|
maintainerEmail,
|
|
|
|
pinnedUsers: pinnedUsers.split('\n'),
|
|
|
|
cacheRemoteFiles,
|
|
|
|
disableRegistration: !enableRegistration,
|
|
|
|
emailRequiredForSignup,
|
|
|
|
enableServiceWorker,
|
|
|
|
swPublicKey,
|
|
|
|
swPrivateKey,
|
|
|
|
deeplAuthKey,
|
|
|
|
deeplIsPro,
|
|
|
|
}).then(() => {
|
|
|
|
fetchInstance();
|
|
|
|
});
|
|
|
|
}
|
2020-02-16 18:21:27 +01:00
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
|
|
|
|
definePageMetadata({
|
|
|
|
title: i18n.ts.general,
|
2022-12-19 11:01:30 +01:00
|
|
|
icon: 'ti ti-settings',
|
2020-02-16 18:21:27 +01:00
|
|
|
});
|
|
|
|
</script>
|
2023-03-02 12:47:24 +01:00
|
|
|
|
|
|
|
<style lang="scss" module>
|
|
|
|
.footer {
|
|
|
|
-webkit-backdrop-filter: var(--blur, blur(15px));
|
|
|
|
backdrop-filter: var(--blur, blur(15px));
|
|
|
|
}
|
|
|
|
</style>
|