2017f9114f
* refactor(frontend): 非ログイン画面でのmeta取得を減らす * fix(frontend): サーバー供給のmetaとクライアントフォールバックで取れるmetaの型が違うのを修正 * force fetch meta at welcome.vue * refactor
36 lines
856 B
Vue
36 lines
856 B
Vue
<!--
|
|
SPDX-FileCopyrightText: syuilo and misskey-project
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
-->
|
|
|
|
<template>
|
|
<div v-if="instance">
|
|
<XSetup v-if="instance.requireSetup"/>
|
|
<XEntrance v-else/>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { computed, ref } from 'vue';
|
|
import * as Misskey from 'misskey-js';
|
|
import XSetup from './welcome.setup.vue';
|
|
import XEntrance from './welcome.entrance.a.vue';
|
|
import { instanceName } from '@/config.js';
|
|
import { definePageMetadata } from '@/scripts/page-metadata.js';
|
|
import { fetchInstance } from '@/instance.js';
|
|
|
|
const instance = ref<Misskey.entities.MetaDetailed | null>(null);
|
|
|
|
fetchInstance(true).then((res) => {
|
|
instance.value = res;
|
|
});
|
|
|
|
const headerActions = computed(() => []);
|
|
|
|
const headerTabs = computed(() => []);
|
|
|
|
definePageMetadata(() => ({
|
|
title: instanceName,
|
|
icon: null,
|
|
}));
|
|
</script>
|