2023-07-27 05:31:52 +00:00
|
|
|
<!--
|
2024-02-12 02:37:45 +00:00
|
|
|
SPDX-FileCopyrightText: syuilo and misskey-project
|
2023-07-27 05:31:52 +00:00
|
|
|
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">
|
2023-10-30 04:41:40 +00:00
|
|
|
<MkInput v-model="iconUrl" type="url">
|
2023-06-09 06:53:40 +00:00
|
|
|
<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>
|
|
|
|
|
2023-10-30 04:41:40 +00:00
|
|
|
<MkInput v-model="app192IconUrl" type="url">
|
2023-09-16 08:05:17 +00:00
|
|
|
<template #prefix><i class="ti ti-link"></i></template>
|
|
|
|
<template #label>{{ i18n.ts._serverSettings.iconUrl }} (App/192px)</template>
|
|
|
|
<template #caption>
|
2024-01-19 23:11:59 +00:00
|
|
|
<div>{{ i18n.tsx._serverSettings.appIconDescription({ host: instance.name ?? host }) }}</div>
|
2023-09-16 08:05:17 +00:00
|
|
|
<div>({{ i18n.ts._serverSettings.appIconUsageExample }})</div>
|
|
|
|
<div>{{ i18n.ts._serverSettings.appIconStyleRecommendation }}</div>
|
2024-01-19 23:11:59 +00:00
|
|
|
<div><strong>{{ i18n.tsx._serverSettings.appIconResolutionMustBe({ resolution: '192x192px' }) }}</strong></div>
|
2023-09-16 08:05:17 +00:00
|
|
|
</template>
|
|
|
|
</MkInput>
|
|
|
|
|
2023-10-30 04:41:40 +00:00
|
|
|
<MkInput v-model="app512IconUrl" type="url">
|
2023-09-16 08:05:17 +00:00
|
|
|
<template #prefix><i class="ti ti-link"></i></template>
|
|
|
|
<template #label>{{ i18n.ts._serverSettings.iconUrl }} (App/512px)</template>
|
|
|
|
<template #caption>
|
2024-01-19 23:11:59 +00:00
|
|
|
<div>{{ i18n.tsx._serverSettings.appIconDescription({ host: instance.name ?? host }) }}</div>
|
2023-09-16 08:05:17 +00:00
|
|
|
<div>({{ i18n.ts._serverSettings.appIconUsageExample }})</div>
|
|
|
|
<div>{{ i18n.ts._serverSettings.appIconStyleRecommendation }}</div>
|
2024-01-19 23:11:59 +00:00
|
|
|
<div><strong>{{ i18n.tsx._serverSettings.appIconResolutionMustBe({ resolution: '512x512px' }) }}</strong></div>
|
2023-09-16 08:05:17 +00:00
|
|
|
</template>
|
2023-06-09 06:53:40 +00:00
|
|
|
</MkInput>
|
|
|
|
|
2023-10-30 04:41:40 +00:00
|
|
|
<MkInput v-model="bannerUrl" type="url">
|
2023-06-09 06:53:40 +00:00
|
|
|
<template #prefix><i class="ti ti-link"></i></template>
|
|
|
|
<template #label>{{ i18n.ts.bannerUrl }}</template>
|
|
|
|
</MkInput>
|
|
|
|
|
2023-10-30 04:41:40 +00:00
|
|
|
<MkInput v-model="backgroundImageUrl" type="url">
|
2023-06-09 06:53:40 +00:00
|
|
|
<template #prefix><i class="ti ti-link"></i></template>
|
|
|
|
<template #label>{{ i18n.ts.backgroundImageUrl }}</template>
|
|
|
|
</MkInput>
|
|
|
|
|
2023-10-30 04:41:40 +00:00
|
|
|
<MkInput v-model="notFoundImageUrl" type="url">
|
2023-06-09 06:53:40 +00:00
|
|
|
<template #prefix><i class="ti ti-link"></i></template>
|
|
|
|
<template #label>{{ i18n.ts.notFoundDescription }}</template>
|
|
|
|
</MkInput>
|
|
|
|
|
2023-10-30 04:41:40 +00:00
|
|
|
<MkInput v-model="infoImageUrl" type="url">
|
2023-06-09 06:53:40 +00:00
|
|
|
<template #prefix><i class="ti ti-link"></i></template>
|
|
|
|
<template #label>{{ i18n.ts.nothing }}</template>
|
|
|
|
</MkInput>
|
|
|
|
|
2023-10-30 04:41:40 +00:00
|
|
|
<MkInput v-model="serverErrorImageUrl" type="url">
|
2023-06-09 06:53:40 +00:00
|
|
|
<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>
|
2023-12-07 05:42:09 +00:00
|
|
|
import { ref, computed } 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 MkInput from '@/components/MkInput.vue';
|
|
|
|
import MkTextarea from '@/components/MkTextarea.vue';
|
|
|
|
import FormSuspense from '@/components/form/suspense.vue';
|
2023-09-19 07:37:43 +00:00
|
|
|
import * as os from '@/os.js';
|
2024-01-04 09:32:46 +00:00
|
|
|
import { misskeyApi } from '@/scripts/misskey-api.js';
|
2023-09-19 07:37:43 +00:00
|
|
|
import { instance, fetchInstance } from '@/instance.js';
|
|
|
|
import { i18n } from '@/i18n.js';
|
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata.js';
|
2023-06-09 06:53:40 +00:00
|
|
|
import MkButton from '@/components/MkButton.vue';
|
|
|
|
import MkColorInput from '@/components/MkColorInput.vue';
|
2023-09-19 07:37:43 +00:00
|
|
|
import { host } from '@/config.js';
|
2023-06-09 06:53:40 +00:00
|
|
|
|
2023-12-07 05:42:09 +00:00
|
|
|
const iconUrl = ref<string | null>(null);
|
|
|
|
const app192IconUrl = ref<string | null>(null);
|
|
|
|
const app512IconUrl = ref<string | null>(null);
|
|
|
|
const bannerUrl = ref<string | null>(null);
|
|
|
|
const backgroundImageUrl = ref<string | null>(null);
|
2023-12-26 05:19:35 +00:00
|
|
|
const themeColor = ref<string | null>(null);
|
|
|
|
const defaultLightTheme = ref<string | null>(null);
|
|
|
|
const defaultDarkTheme = ref<string | null>(null);
|
2023-12-07 05:42:09 +00:00
|
|
|
const serverErrorImageUrl = ref<string | null>(null);
|
|
|
|
const infoImageUrl = ref<string | null>(null);
|
|
|
|
const notFoundImageUrl = ref<string | null>(null);
|
|
|
|
const manifestJsonOverride = ref<string>('{}');
|
2023-06-09 06:53:40 +00:00
|
|
|
|
|
|
|
async function init() {
|
2024-01-04 09:32:46 +00:00
|
|
|
const meta = await misskeyApi('admin/meta');
|
2023-12-07 05:42:09 +00:00
|
|
|
iconUrl.value = meta.iconUrl;
|
|
|
|
app192IconUrl.value = meta.app192IconUrl;
|
|
|
|
app512IconUrl.value = meta.app512IconUrl;
|
|
|
|
bannerUrl.value = meta.bannerUrl;
|
|
|
|
backgroundImageUrl.value = meta.backgroundImageUrl;
|
|
|
|
themeColor.value = meta.themeColor;
|
|
|
|
defaultLightTheme.value = meta.defaultLightTheme;
|
|
|
|
defaultDarkTheme.value = meta.defaultDarkTheme;
|
|
|
|
serverErrorImageUrl.value = meta.serverErrorImageUrl;
|
|
|
|
infoImageUrl.value = meta.infoImageUrl;
|
|
|
|
notFoundImageUrl.value = meta.notFoundImageUrl;
|
|
|
|
manifestJsonOverride.value = 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', {
|
2023-12-07 05:42:09 +00:00
|
|
|
iconUrl: iconUrl.value,
|
|
|
|
app192IconUrl: app192IconUrl.value,
|
|
|
|
app512IconUrl: app512IconUrl.value,
|
|
|
|
bannerUrl: bannerUrl.value,
|
|
|
|
backgroundImageUrl: backgroundImageUrl.value,
|
|
|
|
themeColor: themeColor.value === '' ? null : themeColor.value,
|
|
|
|
defaultLightTheme: defaultLightTheme.value === '' ? null : defaultLightTheme.value,
|
|
|
|
defaultDarkTheme: defaultDarkTheme.value === '' ? null : defaultDarkTheme.value,
|
2024-02-06 07:47:17 +00:00
|
|
|
infoImageUrl: infoImageUrl.value === '' ? null : infoImageUrl.value,
|
|
|
|
notFoundImageUrl: notFoundImageUrl.value === '' ? null : notFoundImageUrl.value,
|
|
|
|
serverErrorImageUrl: serverErrorImageUrl.value === '' ? null : serverErrorImageUrl.value,
|
2023-12-07 05:42:09 +00:00
|
|
|
manifestJsonOverride: manifestJsonOverride.value === '' ? '{}' : JSON.stringify(JSON5.parse(manifestJsonOverride.value)),
|
2023-06-09 06:53:40 +00:00
|
|
|
}).then(() => {
|
|
|
|
fetchInstance();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2023-12-07 05:42:09 +00:00
|
|
|
const headerTabs = computed(() => []);
|
2023-06-09 06:53:40 +00:00
|
|
|
|
|
|
|
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>
|