2020-01-29 20:37:25 +01:00
|
|
|
<template>
|
2022-06-20 10:38:49 +02:00
|
|
|
<MkStickyContainer>
|
2022-06-22 09:29:21 +02:00
|
|
|
<template #header><MkPageHeader v-model:tab="tab" :actions="headerActions" :tabs="headerTabs"/></template>
|
2022-09-10 00:42:17 +02:00
|
|
|
<MkSpacer :content-max="600" :margin-min="20">
|
|
|
|
<swiper
|
|
|
|
:modules="[Virtual]"
|
|
|
|
:space-between="20"
|
|
|
|
:virtual="true"
|
2022-09-15 19:43:48 +02:00
|
|
|
:allow-touch-move="deviceKind === 'smartphone'"
|
2022-09-10 00:42:17 +02:00
|
|
|
@swiper="setSwiperRef"
|
|
|
|
@slide-change="onSlideChange"
|
|
|
|
>
|
|
|
|
<swiper-slide>
|
2022-09-10 00:11:06 +02:00
|
|
|
<div class="_formRoot">
|
|
|
|
<div class="_formBlock fwhjspax" :style="{ backgroundImage: `url(${ $instance.bannerUrl })` }">
|
|
|
|
<div class="content">
|
|
|
|
<img :src="$instance.iconUrl || $instance.faviconUrl || '/favicon.ico'" alt="" class="icon"/>
|
|
|
|
<div class="name">
|
|
|
|
<b>{{ $instance.name || host }}</b>
|
|
|
|
</div>
|
|
|
|
</div>
|
2022-06-20 10:38:49 +02:00
|
|
|
</div>
|
2022-09-10 00:11:06 +02:00
|
|
|
|
2021-11-28 12:07:37 +01:00
|
|
|
<MkKeyValue class="_formBlock">
|
2022-09-10 00:11:06 +02:00
|
|
|
<template #key>{{ i18n.ts.description }}</template>
|
|
|
|
<template #value>{{ $instance.description }}</template>
|
2021-11-28 12:07:37 +01:00
|
|
|
</MkKeyValue>
|
2022-09-10 00:11:06 +02:00
|
|
|
|
|
|
|
<FormSection>
|
|
|
|
<MkKeyValue class="_formBlock" :copy="version">
|
|
|
|
<template #key>Calckey</template>
|
|
|
|
<template #value>{{ version }}</template>
|
2022-06-20 10:38:49 +02:00
|
|
|
</MkKeyValue>
|
2022-09-10 21:25:22 +02:00
|
|
|
<FormLink to="/about-calckey">{{ i18n.ts.aboutMisskey }}</FormLink>
|
2022-09-10 00:11:06 +02:00
|
|
|
</FormSection>
|
|
|
|
|
|
|
|
<FormSection>
|
|
|
|
<FormSplit>
|
|
|
|
<MkKeyValue class="_formBlock">
|
|
|
|
<template #key>{{ i18n.ts.administrator }}</template>
|
|
|
|
<template #value>{{ $instance.maintainerName }}</template>
|
|
|
|
</MkKeyValue>
|
|
|
|
<MkKeyValue class="_formBlock">
|
|
|
|
<template #key>{{ i18n.ts.contact }}</template>
|
|
|
|
<template #value>{{ $instance.maintainerEmail }}</template>
|
|
|
|
</MkKeyValue>
|
|
|
|
</FormSplit>
|
|
|
|
<FormLink v-if="$instance.tosUrl" :to="$instance.tosUrl" class="_formBlock" external>{{ i18n.ts.tos }}</FormLink>
|
|
|
|
</FormSection>
|
|
|
|
|
|
|
|
<FormSuspense :p="initStats">
|
|
|
|
<FormSection>
|
|
|
|
<template #label>{{ i18n.ts.statistics }}</template>
|
|
|
|
<FormSplit>
|
|
|
|
<MkKeyValue class="_formBlock">
|
|
|
|
<template #key>{{ i18n.ts.users }}</template>
|
|
|
|
<template #value>{{ number(stats.originalUsersCount) }}</template>
|
|
|
|
</MkKeyValue>
|
|
|
|
<MkKeyValue class="_formBlock">
|
|
|
|
<template #key>{{ i18n.ts.notes }}</template>
|
|
|
|
<template #value>{{ number(stats.originalNotesCount) }}</template>
|
|
|
|
</MkKeyValue>
|
|
|
|
</FormSplit>
|
|
|
|
</FormSection>
|
|
|
|
</FormSuspense>
|
|
|
|
|
|
|
|
<FormSection>
|
|
|
|
<template #label>Well-known resources</template>
|
|
|
|
<div class="_formLinks">
|
|
|
|
<FormLink :to="`/.well-known/host-meta`" external>host-meta</FormLink>
|
|
|
|
<FormLink :to="`/.well-known/host-meta.json`" external>host-meta.json</FormLink>
|
|
|
|
<FormLink :to="`/.well-known/nodeinfo`" external>nodeinfo</FormLink>
|
|
|
|
<FormLink :to="`/robots.txt`" external>robots.txt</FormLink>
|
|
|
|
<FormLink :to="`/manifest.json`" external>manifest.json</FormLink>
|
|
|
|
</div>
|
|
|
|
</FormSection>
|
2022-06-20 10:38:49 +02:00
|
|
|
</div>
|
2022-09-10 00:42:17 +02:00
|
|
|
</swiper-slide>
|
|
|
|
<swiper-slide>
|
2022-09-10 00:11:06 +02:00
|
|
|
<XEmojis/>
|
2022-09-10 00:42:17 +02:00
|
|
|
</swiper-slide>
|
|
|
|
<swiper-slide>
|
2022-09-10 00:11:06 +02:00
|
|
|
<XFederation/>
|
2022-09-10 00:42:17 +02:00
|
|
|
</swiper-slide>
|
|
|
|
<swiper-slide>
|
2022-09-10 00:11:06 +02:00
|
|
|
<MkInstanceStats :chart-limit="500" :detailed="true"/>
|
2022-09-10 00:42:17 +02:00
|
|
|
</swiper-slide>
|
|
|
|
</swiper>
|
|
|
|
</MkSpacer>
|
2022-06-20 10:38:49 +02:00
|
|
|
</MkStickyContainer>
|
2020-01-29 20:37:25 +01:00
|
|
|
</template>
|
|
|
|
|
2022-01-07 08:48:51 +01:00
|
|
|
<script lang="ts" setup>
|
2022-09-15 19:43:48 +02:00
|
|
|
import { ref, computed, onMounted } from 'vue';
|
2022-09-10 00:11:06 +02:00
|
|
|
import { Virtual } from 'swiper';
|
|
|
|
import { Swiper, SwiperSlide } from 'swiper/vue';
|
2022-06-29 04:13:32 +02:00
|
|
|
import XEmojis from './about.emojis.vue';
|
|
|
|
import XFederation from './about.federation.vue';
|
2022-06-20 10:38:49 +02:00
|
|
|
import { version, instanceName , host } from '@/config';
|
2021-11-28 12:07:37 +01:00
|
|
|
import FormLink from '@/components/form/link.vue';
|
|
|
|
import FormSection from '@/components/form/section.vue';
|
|
|
|
import FormSuspense from '@/components/form/suspense.vue';
|
2021-12-30 13:47:48 +01:00
|
|
|
import FormSplit from '@/components/form/split.vue';
|
2022-08-30 17:24:33 +02:00
|
|
|
import MkKeyValue from '@/components/MkKeyValue.vue';
|
|
|
|
import MkInstanceStats from '@/components/MkInstanceStats.vue';
|
2021-11-11 18:02:25 +01:00
|
|
|
import * as os from '@/os';
|
|
|
|
import number from '@/filters/number';
|
2022-01-07 08:48:51 +01:00
|
|
|
import { i18n } from '@/i18n';
|
2022-06-20 10:38:49 +02:00
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
2022-09-15 19:43:48 +02:00
|
|
|
import { deviceKind } from '@/scripts/device-kind';
|
2022-07-26 06:21:40 +02:00
|
|
|
import { iAmModerator } from '@/account';
|
2022-09-10 00:11:06 +02:00
|
|
|
import 'swiper/scss';
|
|
|
|
import 'swiper/scss/virtual';
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2022-06-29 09:00:00 +02:00
|
|
|
const props = withDefaults(defineProps<{
|
|
|
|
initialTab?: string;
|
|
|
|
}>(), {
|
|
|
|
initialTab: 'overview',
|
|
|
|
});
|
|
|
|
|
2022-02-08 07:50:26 +01:00
|
|
|
let stats = $ref(null);
|
2022-06-29 09:00:00 +02:00
|
|
|
let tab = $ref(props.initialTab);
|
2022-09-10 00:11:06 +02:00
|
|
|
let tabs = ['overview', 'emojis','charts'];
|
|
|
|
if (iAmModerator) tabs.push('federation');
|
2020-02-16 18:21:27 +01:00
|
|
|
|
2022-01-07 08:48:51 +01:00
|
|
|
const initStats = () => os.api('stats', {
|
|
|
|
}).then((res) => {
|
2022-02-08 07:50:26 +01:00
|
|
|
stats = res;
|
2022-01-07 08:48:51 +01:00
|
|
|
});
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
const headerActions = $computed(() => []);
|
|
|
|
|
2022-07-26 06:21:40 +02:00
|
|
|
let theTabs = [{
|
2022-06-22 09:29:21 +02:00
|
|
|
key: 'overview',
|
2022-06-20 10:38:49 +02:00
|
|
|
title: i18n.ts.overview,
|
2022-09-08 00:09:23 +02:00
|
|
|
icon: 'fas fa-sitemap',
|
2022-06-29 04:13:32 +02:00
|
|
|
}, {
|
|
|
|
key: 'emojis',
|
|
|
|
title: i18n.ts.customEmojis,
|
|
|
|
icon: 'fas fa-laugh',
|
2022-06-20 10:38:49 +02:00
|
|
|
}, {
|
2022-06-22 09:29:21 +02:00
|
|
|
key: 'charts',
|
2022-06-20 10:38:49 +02:00
|
|
|
title: i18n.ts.charts,
|
2022-06-29 04:13:32 +02:00
|
|
|
icon: 'fas fa-chart-simple',
|
2022-07-26 06:21:40 +02:00
|
|
|
}];
|
|
|
|
|
|
|
|
if (iAmModerator) {
|
|
|
|
theTabs.push(
|
|
|
|
{
|
|
|
|
key: 'federation',
|
|
|
|
title: i18n.ts.federation,
|
|
|
|
icon: 'fas fa-globe',
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
let headerTabs = $computed(() => theTabs);
|
2022-06-20 10:38:49 +02:00
|
|
|
|
|
|
|
definePageMetadata(computed(() => ({
|
|
|
|
title: i18n.ts.instanceInfo,
|
|
|
|
icon: 'fas fa-info-circle',
|
|
|
|
})));
|
2022-09-10 00:11:06 +02:00
|
|
|
|
|
|
|
let swiperRef = null;
|
|
|
|
|
|
|
|
function setSwiperRef(swiper) {
|
|
|
|
swiperRef = swiper;
|
|
|
|
syncSlide(tabs.indexOf(tab));
|
|
|
|
}
|
|
|
|
|
|
|
|
function onSlideChange() {
|
|
|
|
tab = tabs[swiperRef.activeIndex];
|
|
|
|
}
|
|
|
|
|
|
|
|
function syncSlide(index) {
|
|
|
|
swiperRef.slideTo(index);
|
|
|
|
}
|
2020-01-29 20:37:25 +01:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
2021-04-25 05:31:11 +02:00
|
|
|
.fwhjspax {
|
|
|
|
text-align: center;
|
2021-11-28 12:07:37 +01:00
|
|
|
border-radius: 10px;
|
2022-07-13 14:41:06 +02:00
|
|
|
overflow: clip;
|
2021-11-28 12:07:37 +01:00
|
|
|
background-size: cover;
|
|
|
|
background-position: center center;
|
2020-11-28 04:44:39 +01:00
|
|
|
|
2021-11-28 12:07:37 +01:00
|
|
|
> .content {
|
|
|
|
overflow: hidden;
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2021-11-28 12:07:37 +01:00
|
|
|
> .icon {
|
|
|
|
display: block;
|
|
|
|
margin: 16px auto 0 auto;
|
|
|
|
height: 64px;
|
|
|
|
border-radius: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .name {
|
|
|
|
display: block;
|
|
|
|
padding: 16px;
|
2022-07-26 02:14:37 +02:00
|
|
|
color: #e0def4;
|
2021-11-28 12:07:37 +01:00
|
|
|
text-shadow: 0 0 8px #000;
|
|
|
|
background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
|
|
|
|
}
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|