2023-07-27 05:31:52 +00:00
|
|
|
<!--
|
2024-02-13 15:59:27 +00:00
|
|
|
SPDX-FileCopyrightText: syuilo and misskey-project
|
2023-07-27 05:31:52 +00:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2020-01-29 19:37:25 +00:00
|
|
|
<template>
|
2022-06-20 08:38:49 +00:00
|
|
|
<MkStickyContainer>
|
2022-06-22 07:29:21 +00:00
|
|
|
<template #header><MkPageHeader v-model:tab="tab" :actions="headerActions" :tabs="headerTabs"/></template>
|
2024-01-18 09:21:33 +00:00
|
|
|
<MkHorizontalSwipe v-model:tab="tab" :tabs="headerTabs">
|
|
|
|
<MkSpacer v-if="tab === 'overview'" :contentMax="600" :marginMin="20">
|
2024-07-14 05:49:50 +00:00
|
|
|
<XOverview/>
|
2024-01-18 09:21:33 +00:00
|
|
|
</MkSpacer>
|
|
|
|
<MkSpacer v-else-if="tab === 'emojis'" :contentMax="1000" :marginMin="20">
|
|
|
|
<XEmojis/>
|
|
|
|
</MkSpacer>
|
|
|
|
<MkSpacer v-else-if="tab === 'federation'" :contentMax="1000" :marginMin="20">
|
|
|
|
<XFederation/>
|
|
|
|
</MkSpacer>
|
|
|
|
<MkSpacer v-else-if="tab === 'charts'" :contentMax="1000" :marginMin="20">
|
|
|
|
<MkInstanceStats/>
|
|
|
|
</MkSpacer>
|
|
|
|
</MkHorizontalSwipe>
|
2022-06-20 08:38:49 +00:00
|
|
|
</MkStickyContainer>
|
2020-01-29 19:37:25 +00:00
|
|
|
</template>
|
|
|
|
|
2022-01-07 07:48:51 +00:00
|
|
|
<script lang="ts" setup>
|
2024-07-14 05:49:50 +00:00
|
|
|
import { computed, defineAsyncComponent, ref, watch } from 'vue';
|
2023-09-19 07:37:43 +00:00
|
|
|
import { i18n } from '@/i18n.js';
|
|
|
|
import { claimAchievement } from '@/scripts/achievements.js';
|
2024-07-14 05:49:50 +00:00
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata.js';
|
|
|
|
import MkHorizontalSwipe from '@/components/MkHorizontalSwipe.vue';
|
|
|
|
|
|
|
|
const XOverview = defineAsyncComponent(() => import('@/pages/about.overview.vue'));
|
|
|
|
const XEmojis = defineAsyncComponent(() => import('@/pages/about.emojis.vue'));
|
|
|
|
const XFederation = defineAsyncComponent(() => import('@/pages/about.federation.vue'));
|
|
|
|
const MkInstanceStats = defineAsyncComponent(() => import('@/components/MkInstanceStats.vue'));
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2022-06-29 07:00:00 +00:00
|
|
|
const props = withDefaults(defineProps<{
|
|
|
|
initialTab?: string;
|
|
|
|
}>(), {
|
|
|
|
initialTab: 'overview',
|
|
|
|
});
|
|
|
|
|
2023-12-07 05:42:09 +00:00
|
|
|
const tab = ref(props.initialTab);
|
2020-02-16 17:21:27 +00:00
|
|
|
|
2023-12-07 05:42:09 +00:00
|
|
|
watch(tab, () => {
|
|
|
|
if (tab.value === 'charts') {
|
2023-01-22 11:30:56 +00:00
|
|
|
claimAchievement('viewInstanceChart');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2023-12-07 05:42:09 +00:00
|
|
|
const headerActions = computed(() => []);
|
2022-06-20 08:38:49 +00:00
|
|
|
|
2023-12-07 05:42:09 +00:00
|
|
|
const headerTabs = computed(() => [{
|
2022-06-22 07:29:21 +00:00
|
|
|
key: 'overview',
|
2022-06-20 08:38:49 +00:00
|
|
|
title: i18n.ts.overview,
|
2022-06-29 02:13:32 +00:00
|
|
|
}, {
|
|
|
|
key: 'emojis',
|
|
|
|
title: i18n.ts.customEmojis,
|
2022-12-31 11:36:49 +00:00
|
|
|
icon: 'ti ti-icons',
|
2022-06-29 02:13:32 +00:00
|
|
|
}, {
|
|
|
|
key: 'federation',
|
|
|
|
title: i18n.ts.federation,
|
2022-12-19 10:01:30 +00:00
|
|
|
icon: 'ti ti-whirl',
|
2022-06-20 08:38:49 +00:00
|
|
|
}, {
|
2022-06-22 07:29:21 +00:00
|
|
|
key: 'charts',
|
2022-06-20 08:38:49 +00:00
|
|
|
title: i18n.ts.charts,
|
2022-12-19 10:01:30 +00:00
|
|
|
icon: 'ti ti-chart-line',
|
2022-06-20 08:38:49 +00:00
|
|
|
}]);
|
|
|
|
|
2024-02-16 07:17:09 +00:00
|
|
|
definePageMetadata(() => ({
|
2022-06-20 08:38:49 +00:00
|
|
|
title: i18n.ts.instanceInfo,
|
2022-12-19 10:01:30 +00:00
|
|
|
icon: 'ti ti-info-circle',
|
2024-02-16 07:17:09 +00:00
|
|
|
}));
|
2020-01-29 19:37:25 +00:00
|
|
|
</script>
|