2023-07-27 05:31:52 +00:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2023-06-09 06:53:40 +00:00
|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
<MkStickyContainer>
|
|
|
|
<template #header><XHeader :tabs="headerTabs"/></template>
|
|
|
|
<MkSpacer :contentMax="700" :marginMin="16" :marginMax="32">
|
|
|
|
<FormSuspense :p="init">
|
|
|
|
<div class="_gaps_m">
|
|
|
|
<MkInput v-model="iconUrl">
|
|
|
|
<template #prefix><i class="ti ti-link"></i></template>
|
2023-09-16 08:05:17 +00:00
|
|
|
<template #label>{{ i18n.ts._serverSettings.iconUrl }}</template>
|
|
|
|
</MkInput>
|
|
|
|
|
|
|
|
<MkInput v-model="app192IconUrl">
|
|
|
|
<template #prefix><i class="ti ti-link"></i></template>
|
|
|
|
<template #label>{{ i18n.ts._serverSettings.iconUrl }} (App/192px)</template>
|
|
|
|
<template #caption>
|
|
|
|
<div>{{ i18n.t('_serverSettings.appIconDescription', { host: instance.name ?? host }) }}</div>
|
|
|
|
<div>({{ i18n.ts._serverSettings.appIconUsageExample }})</div>
|
|
|
|
<div>{{ i18n.ts._serverSettings.appIconStyleRecommendation }}</div>
|
|
|
|
<div><strong>{{ i18n.t('_serverSettings.appIconResolutionMustBe', { resolution: '192x192px' }) }}</strong></div>
|
|
|
|
</template>
|
|
|
|
</MkInput>
|
|
|
|
|
|
|
|
<MkInput v-model="app512IconUrl">
|
|
|
|
<template #prefix><i class="ti ti-link"></i></template>
|
|
|
|
<template #label>{{ i18n.ts._serverSettings.iconUrl }} (App/512px)</template>
|
|
|
|
<template #caption>
|
|
|
|
<div>{{ i18n.t('_serverSettings.appIconDescription', { host: instance.name ?? host }) }}</div>
|
|
|
|
<div>({{ i18n.ts._serverSettings.appIconUsageExample }})</div>
|
|
|
|
<div>{{ i18n.ts._serverSettings.appIconStyleRecommendation }}</div>
|
|
|
|
<div><strong>{{ i18n.t('_serverSettings.appIconResolutionMustBe', { resolution: '512x512px' }) }}</strong></div>
|
|
|
|
</template>
|
2023-06-09 06:53:40 +00:00
|
|
|
</MkInput>
|
|
|
|
|
|
|
|
<MkInput v-model="bannerUrl">
|
|
|
|
<template #prefix><i class="ti ti-link"></i></template>
|
|
|
|
<template #label>{{ i18n.ts.bannerUrl }}</template>
|
|
|
|
</MkInput>
|
|
|
|
|
|
|
|
<MkInput v-model="backgroundImageUrl">
|
|
|
|
<template #prefix><i class="ti ti-link"></i></template>
|
|
|
|
<template #label>{{ i18n.ts.backgroundImageUrl }}</template>
|
|
|
|
</MkInput>
|
|
|
|
|
|
|
|
<MkInput v-model="notFoundImageUrl">
|
|
|
|
<template #prefix><i class="ti ti-link"></i></template>
|
|
|
|
<template #label>{{ i18n.ts.notFoundDescription }}</template>
|
|
|
|
</MkInput>
|
|
|
|
|
|
|
|
<MkInput v-model="infoImageUrl">
|
|
|
|
<template #prefix><i class="ti ti-link"></i></template>
|
|
|
|
<template #label>{{ i18n.ts.nothing }}</template>
|
|
|
|
</MkInput>
|
|
|
|
|
|
|
|
<MkInput v-model="serverErrorImageUrl">
|
|
|
|
<template #prefix><i class="ti ti-link"></i></template>
|
|
|
|
<template #label>{{ i18n.ts.somethingHappened }}</template>
|
|
|
|
</MkInput>
|
|
|
|
|
|
|
|
<MkColorInput v-model="themeColor">
|
|
|
|
<template #label>{{ i18n.ts.themeColor }}</template>
|
|
|
|
</MkColorInput>
|
|
|
|
|
|
|
|
<MkTextarea v-model="defaultLightTheme">
|
|
|
|
<template #label>{{ i18n.ts.instanceDefaultLightTheme }}</template>
|
|
|
|
<template #caption>{{ i18n.ts.instanceDefaultThemeDescription }}</template>
|
|
|
|
</MkTextarea>
|
|
|
|
|
|
|
|
<MkTextarea v-model="defaultDarkTheme">
|
|
|
|
<template #label>{{ i18n.ts.instanceDefaultDarkTheme }}</template>
|
|
|
|
<template #caption>{{ i18n.ts.instanceDefaultThemeDescription }}</template>
|
|
|
|
</MkTextarea>
|
2023-09-16 08:05:17 +00:00
|
|
|
|
|
|
|
<MkTextarea v-model="manifestJsonOverride">
|
|
|
|
<template #label>{{ i18n.ts._serverSettings.manifestJsonOverride }}</template>
|
|
|
|
</MkTextarea>
|
2023-06-09 06:53:40 +00:00
|
|
|
</div>
|
|
|
|
</FormSuspense>
|
|
|
|
</MkSpacer>
|
|
|
|
<template #footer>
|
|
|
|
<div :class="$style.footer">
|
|
|
|
<MkSpacer :contentMax="700" :marginMin="16" :marginMax="16">
|
|
|
|
<MkButton primary rounded @click="save"><i class="ti ti-check"></i> {{ i18n.ts.save }}</MkButton>
|
|
|
|
</MkSpacer>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</MkStickyContainer>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
|
|
|
import { } from 'vue';
|
2023-09-16 08:05:17 +00:00
|
|
|
import JSON5 from 'json5';
|
2023-06-09 06:53:40 +00:00
|
|
|
import XHeader from './_header_.vue';
|
|
|
|
import MkSwitch from '@/components/MkSwitch.vue';
|
|
|
|
import MkInput from '@/components/MkInput.vue';
|
|
|
|
import MkTextarea from '@/components/MkTextarea.vue';
|
|
|
|
import FormSection from '@/components/form/section.vue';
|
|
|
|
import FormSplit from '@/components/form/split.vue';
|
|
|
|
import FormSuspense from '@/components/form/suspense.vue';
|
|
|
|
import * as os from '@/os';
|
2023-09-16 08:05:17 +00:00
|
|
|
import { instance, fetchInstance } from '@/instance';
|
2023-06-09 06:53:40 +00:00
|
|
|
import { i18n } from '@/i18n';
|
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
|
|
|
import MkButton from '@/components/MkButton.vue';
|
|
|
|
import MkColorInput from '@/components/MkColorInput.vue';
|
2023-09-16 08:05:17 +00:00
|
|
|
import { host } from '@/config';
|
2023-06-09 06:53:40 +00:00
|
|
|
|
|
|
|
let iconUrl: string | null = $ref(null);
|
2023-09-16 08:05:17 +00:00
|
|
|
let app192IconUrl: string | null = $ref(null);
|
|
|
|
let app512IconUrl: string | null = $ref(null);
|
2023-06-09 06:53:40 +00:00
|
|
|
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 serverErrorImageUrl: string | null = $ref(null);
|
|
|
|
let infoImageUrl: string | null = $ref(null);
|
|
|
|
let notFoundImageUrl: string | null = $ref(null);
|
2023-09-16 08:05:17 +00:00
|
|
|
let manifestJsonOverride: string = $ref('{}');
|
2023-06-09 06:53:40 +00:00
|
|
|
|
|
|
|
async function init() {
|
|
|
|
const meta = await os.api('admin/meta');
|
|
|
|
iconUrl = meta.iconUrl;
|
2023-09-16 08:05:17 +00:00
|
|
|
app192IconUrl = meta.app192IconUrl;
|
|
|
|
app512IconUrl = meta.app512IconUrl;
|
2023-06-09 06:53:40 +00:00
|
|
|
bannerUrl = meta.bannerUrl;
|
|
|
|
backgroundImageUrl = meta.backgroundImageUrl;
|
|
|
|
themeColor = meta.themeColor;
|
|
|
|
defaultLightTheme = meta.defaultLightTheme;
|
|
|
|
defaultDarkTheme = meta.defaultDarkTheme;
|
|
|
|
serverErrorImageUrl = meta.serverErrorImageUrl;
|
|
|
|
infoImageUrl = meta.infoImageUrl;
|
|
|
|
notFoundImageUrl = meta.notFoundImageUrl;
|
2023-09-16 08:05:17 +00:00
|
|
|
manifestJsonOverride = meta.manifestJsonOverride === '' ? '{}' : JSON.stringify(JSON.parse(meta.manifestJsonOverride), null, '\t');
|
2023-06-09 06:53:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function save() {
|
|
|
|
os.apiWithDialog('admin/update-meta', {
|
|
|
|
iconUrl,
|
2023-09-16 08:05:17 +00:00
|
|
|
app192IconUrl,
|
|
|
|
app512IconUrl,
|
2023-06-09 06:53:40 +00:00
|
|
|
bannerUrl,
|
|
|
|
backgroundImageUrl,
|
|
|
|
themeColor: themeColor === '' ? null : themeColor,
|
|
|
|
defaultLightTheme: defaultLightTheme === '' ? null : defaultLightTheme,
|
|
|
|
defaultDarkTheme: defaultDarkTheme === '' ? null : defaultDarkTheme,
|
|
|
|
infoImageUrl,
|
|
|
|
notFoundImageUrl,
|
|
|
|
serverErrorImageUrl,
|
2023-09-16 08:05:17 +00:00
|
|
|
manifestJsonOverride: manifestJsonOverride === '' ? '{}' : JSON.stringify(JSON5.parse(manifestJsonOverride)),
|
2023-06-09 06:53:40 +00:00
|
|
|
}).then(() => {
|
|
|
|
fetchInstance();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
|
|
|
|
definePageMetadata({
|
|
|
|
title: i18n.ts.branding,
|
|
|
|
icon: 'ti ti-paint',
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" module>
|
|
|
|
.footer {
|
|
|
|
-webkit-backdrop-filter: var(--blur, blur(15px));
|
|
|
|
backdrop-filter: var(--blur, blur(15px));
|
|
|
|
}
|
|
|
|
</style>
|