Sharkey/packages/frontend/src/pages/admin/settings.vue

233 lines
7.7 KiB
Vue
Raw Normal View History

<!--
SPDX-FileCopyrightText: syuilo and other misskey contributors
SPDX-License-Identifier: AGPL-3.0-only
-->
2020-02-16 19:21:27 +02:00
<template>
<div>
<MkStickyContainer>
2023-03-02 13:47:24 +02:00
<template #header><XHeader :tabs="headerTabs"/></template>
2023-05-19 07:35:46 +03:00
<MkSpacer :contentMax="700" :marginMin="16" :marginMax="32">
<FormSuspense :p="init">
2023-01-06 06:40:17 +02:00
<div class="_gaps_m">
2023-01-07 08:09:46 +02:00
<MkInput v-model="name">
<template #label>{{ i18n.ts.instanceName }}</template>
2023-01-07 08:09:46 +02:00
</MkInput>
2021-12-30 20:21:26 +02:00
<MkInput v-model="shortName">
<template #label>{{ i18n.ts._serverSettings.shortName }} ({{ i18n.ts.optional }})</template>
<template #caption>{{ i18n.ts._serverSettings.shortNameDescription }}</template>
</MkInput>
2023-01-07 08:09:46 +02:00
<MkTextarea v-model="description">
<template #label>{{ i18n.ts.instanceDescription }}</template>
2023-01-07 08:09:46 +02:00
</MkTextarea>
2023-05-19 07:35:46 +03:00
<FormSplit :minWidth="300">
2023-01-07 08:09:46 +02:00
<MkInput v-model="maintainerName">
<template #label>{{ i18n.ts.maintainerName }}</template>
2023-01-07 08:09:46 +02:00
</MkInput>
2022-01-04 20:09:20 +02:00
2023-01-07 08:09:46 +02:00
<MkInput v-model="maintainerEmail" type="email">
2023-09-30 22:53:52 +03:00
<template #prefix><i class="ph-envelope ph-bold ph-lg"></i></template>
<template #label>{{ i18n.ts.maintainerEmail }}</template>
2023-01-07 08:09:46 +02:00
</MkInput>
</FormSplit>
2022-01-04 20:09:20 +02:00
<MkInput v-model="impressumUrl">
<template #label>{{ i18n.ts.impressumUrl }}</template>
<template #prefix><i class="ti ti-link"></i></template>
<template #caption>{{ i18n.ts.impressumDescription }}</template>
</MkInput>
2023-01-07 08:09:46 +02:00
<MkTextarea v-model="pinnedUsers">
<template #label>{{ i18n.ts.pinnedUsers }}</template>
<template #caption>{{ i18n.ts.pinnedUsersDescription }}</template>
2023-01-07 08:09:46 +02:00
</MkTextarea>
2022-01-04 20:09:20 +02:00
<FormSection>
<template #label>{{ i18n.ts.files }}</template>
2023-01-06 06:40:17 +02:00
<div class="_gaps_m">
2023-01-07 07:59:54 +02:00
<MkSwitch v-model="cacheRemoteFiles">
2023-01-05 14:04:56 +02:00
<template #label>{{ i18n.ts.cacheRemoteFiles }}</template>
<template #caption>{{ i18n.ts.cacheRemoteFilesDescription }}{{ i18n.ts.youCanCleanRemoteFilesCache }}</template>
2023-01-07 07:59:54 +02:00
</MkSwitch>
<template v-if="cacheRemoteFiles">
<MkSwitch v-model="cacheRemoteSensitiveFiles">
<template #label>{{ i18n.ts.cacheRemoteSensitiveFiles }}</template>
<template #caption>{{ i18n.ts.cacheRemoteSensitiveFilesDescription }}</template>
</MkSwitch>
</template>
2023-01-05 14:04:56 +02:00
</div>
</FormSection>
<FormSection>
<template #label>ServiceWorker</template>
2023-01-06 06:40:17 +02:00
<div class="_gaps_m">
2023-01-07 07:59:54 +02:00
<MkSwitch v-model="enableServiceWorker">
2023-01-05 14:04:56 +02:00
<template #label>{{ i18n.ts.enableServiceworker }}</template>
<template #caption>{{ i18n.ts.serviceworkerInfo }}</template>
2023-01-07 07:59:54 +02:00
</MkSwitch>
2023-01-05 14:04:56 +02:00
<template v-if="enableServiceWorker">
2023-01-07 08:09:46 +02:00
<MkInput v-model="swPublicKey">
2023-09-30 22:53:52 +03:00
<template #prefix><i class="ph-key ph-bold ph-lg"></i></template>
2023-01-05 14:04:56 +02:00
<template #label>Public key</template>
2023-01-07 08:09:46 +02:00
</MkInput>
2023-01-05 14:04:56 +02:00
2023-01-07 08:09:46 +02:00
<MkInput v-model="swPrivateKey">
2023-09-30 22:53:52 +03:00
<template #prefix><i class="ph-key ph-bold ph-lg"></i></template>
2023-01-05 14:04:56 +02:00
<template #label>Private key</template>
2023-01-07 08:09:46 +02:00
</MkInput>
2023-01-05 14:04:56 +02:00
</template>
</div>
</FormSection>
<FormSection>
<template #label>Timeline caching</template>
2023-01-06 06:40:17 +02:00
<div class="_gaps_m">
<MkInput v-model="perLocalUserUserTimelineCacheMax" type="number">
<template #label>perLocalUserUserTimelineCacheMax</template>
</MkInput>
<MkInput v-model="perRemoteUserUserTimelineCacheMax" type="number">
<template #label>perRemoteUserUserTimelineCacheMax</template>
</MkInput>
<MkInput v-model="perUserHomeTimelineCacheMax" type="number">
<template #label>perUserHomeTimelineCacheMax</template>
</MkInput>
<MkInput v-model="perUserListTimelineCacheMax" type="number">
<template #label>perUserListTimelineCacheMax</template>
2023-01-07 08:09:46 +02:00
</MkInput>
2023-01-05 14:04:56 +02:00
</div>
</FormSection>
<FormSection>
<template #label>{{ i18n.ts._ad.adsSettings }}</template>
<div class="_gaps_m">
<div class="_gaps_s">
2023-10-08 11:57:48 +03:00
<MkInput v-model="notesPerOneAd" :min="0" type="number">
<template #label>{{ i18n.ts._ad.notesPerOneAd }}</template>
<template #caption>{{ i18n.ts._ad.setZeroToDisable }}</template>
</MkInput>
<MkInfo v-if="notesPerOneAd > 0 && notesPerOneAd < 20" :warn="true">
{{ i18n.ts._ad.adsTooClose }}
</MkInfo>
</div>
2023-01-05 14:04:56 +02:00
</div>
</FormSection>
</div>
</FormSuspense>
</MkSpacer>
2023-03-02 13:47:24 +02:00
<template #footer>
<div :class="$style.footer">
2023-05-19 07:35:46 +03:00
<MkSpacer :contentMax="700" :marginMin="16" :marginMax="16">
2023-09-30 22:53:52 +03:00
<MkButton primary rounded @click="save"><i class="ph-check ph-bold ph-lg"></i> {{ i18n.ts.save }}</MkButton>
2023-03-02 13:47:24 +02:00
</MkSpacer>
</div>
</template>
</MkStickyContainer>
</div>
2020-02-16 19:21:27 +02:00
</template>
<script lang="ts" setup>
import { } from 'vue';
import XHeader from './_header_.vue';
2023-01-07 07:59:54 +02:00
import MkSwitch from '@/components/MkSwitch.vue';
2023-01-07 08:09:46 +02:00
import MkInput from '@/components/MkInput.vue';
import MkTextarea from '@/components/MkTextarea.vue';
import MkInfo from '@/components/MkInfo.vue';
2021-12-30 14:47:48 +02:00
import FormSection from '@/components/form/section.vue';
import FormSplit from '@/components/form/split.vue';
import FormSuspense from '@/components/form/suspense.vue';
2023-09-19 10:37:43 +03:00
import * as os from '@/os.js';
import { fetchInstance } from '@/instance.js';
import { i18n } from '@/i18n.js';
import { definePageMetadata } from '@/scripts/page-metadata.js';
2023-03-02 13:47:24 +02:00
import MkButton from '@/components/MkButton.vue';
2020-02-16 19:21:27 +02:00
let name: string | null = $ref(null);
let shortName: string | null = $ref(null);
let description: string | null = $ref(null);
let maintainerName: string | null = $ref(null);
let maintainerEmail: string | null = $ref(null);
let impressumUrl: string | null = $ref(null);
let pinnedUsers: string = $ref('');
let cacheRemoteFiles: boolean = $ref(false);
let cacheRemoteSensitiveFiles: boolean = $ref(false);
let enableServiceWorker: boolean = $ref(false);
let swPublicKey: any = $ref(null);
let swPrivateKey: any = $ref(null);
let perLocalUserUserTimelineCacheMax: number = $ref(0);
let perRemoteUserUserTimelineCacheMax: number = $ref(0);
let perUserHomeTimelineCacheMax: number = $ref(0);
let perUserListTimelineCacheMax: number = $ref(0);
let notesPerOneAd: number = $ref(0);
2020-02-16 19:21:27 +02:00
async function init(): Promise<void> {
const meta = await os.api('admin/meta');
name = meta.name;
shortName = meta.shortName;
description = meta.description;
maintainerName = meta.maintainerName;
maintainerEmail = meta.maintainerEmail;
impressumUrl = meta.impressumUrl;
pinnedUsers = meta.pinnedUsers.join('\n');
cacheRemoteFiles = meta.cacheRemoteFiles;
cacheRemoteSensitiveFiles = meta.cacheRemoteSensitiveFiles;
enableServiceWorker = meta.enableServiceWorker;
swPublicKey = meta.swPublickey;
swPrivateKey = meta.swPrivateKey;
perLocalUserUserTimelineCacheMax = meta.perLocalUserUserTimelineCacheMax;
perRemoteUserUserTimelineCacheMax = meta.perRemoteUserUserTimelineCacheMax;
perUserHomeTimelineCacheMax = meta.perUserHomeTimelineCacheMax;
perUserListTimelineCacheMax = meta.perUserListTimelineCacheMax;
notesPerOneAd = meta.notesPerOneAd;
}
async function save(): void {
await os.apiWithDialog('admin/update-meta', {
name,
shortName: shortName === '' ? null : shortName,
description,
maintainerName,
maintainerEmail,
impressumUrl,
pinnedUsers: pinnedUsers.split('\n'),
cacheRemoteFiles,
cacheRemoteSensitiveFiles,
enableServiceWorker,
swPublicKey,
swPrivateKey,
perLocalUserUserTimelineCacheMax,
perRemoteUserUserTimelineCacheMax,
perUserHomeTimelineCacheMax,
perUserListTimelineCacheMax,
notesPerOneAd,
});
fetchInstance();
}
2020-02-16 19:21:27 +02:00
const headerTabs = $computed(() => []);
definePageMetadata({
title: i18n.ts.general,
2023-09-30 22:53:52 +03:00
icon: 'ph-gear ph-bold pg-lg',
2020-02-16 19:21:27 +02:00
});
</script>
2023-03-02 13:47:24 +02:00
<style lang="scss" module>
.footer {
-webkit-backdrop-filter: var(--blur, blur(15px));
backdrop-filter: var(--blur, blur(15px));
}
</style>