2023-07-27 05:31:52 +00:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
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>
|
2023-05-19 07:20:53 +00:00
|
|
|
<MkSpacer v-if="tab === 'overview'" :contentMax="600" :marginMin="20">
|
2023-01-06 04:40:17 +00:00
|
|
|
<div class="_gaps_m">
|
2023-04-20 08:23:35 +00:00
|
|
|
<div :class="$style.banner" :style="{ backgroundImage: `url(${ instance.bannerUrl })` }">
|
|
|
|
<div style="overflow: clip;">
|
|
|
|
<img :src="instance.iconUrl ?? instance.faviconUrl ?? '/favicon.ico'" alt="" :class="$style.bannerIcon"/>
|
|
|
|
<div :class="$style.bannerName">
|
2023-04-01 04:46:04 +00:00
|
|
|
<b>{{ instance.name ?? host }}</b>
|
2022-06-20 08:38:49 +00:00
|
|
|
</div>
|
2021-11-28 11:07:37 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2021-04-25 03:31:11 +00:00
|
|
|
|
2023-01-05 12:04:56 +00:00
|
|
|
<MkKeyValue>
|
2022-07-20 13:24:26 +00:00
|
|
|
<template #key>{{ i18n.ts.description }}</template>
|
2023-04-01 04:46:04 +00:00
|
|
|
<template #value><div v-html="instance.description"></div></template>
|
2021-11-28 11:07:37 +00:00
|
|
|
</MkKeyValue>
|
2020-11-28 03:44:39 +00:00
|
|
|
|
2022-06-20 08:38:49 +00:00
|
|
|
<FormSection>
|
2023-01-06 04:40:17 +00:00
|
|
|
<div class="_gaps_m">
|
2023-01-05 12:04:56 +00:00
|
|
|
<MkKeyValue :copy="version">
|
2023-09-23 02:34:15 +00:00
|
|
|
<template #key>Sharkey</template>
|
2023-01-05 12:04:56 +00:00
|
|
|
<template #value>{{ version }}</template>
|
|
|
|
</MkKeyValue>
|
2023-04-01 04:46:04 +00:00
|
|
|
<div v-html="i18n.t('poweredByMisskeyDescription', { name: instance.name ?? host })">
|
2023-01-05 12:04:56 +00:00
|
|
|
</div>
|
2023-09-23 02:34:15 +00:00
|
|
|
<FormLink to="/about-sharkey">{{ i18n.ts.aboutMisskey }}</FormLink>
|
2022-09-19 22:14:47 +00:00
|
|
|
</div>
|
2022-06-20 08:38:49 +00:00
|
|
|
</FormSection>
|
2020-11-29 13:59:09 +00:00
|
|
|
|
2021-11-28 11:07:37 +00:00
|
|
|
<FormSection>
|
2023-01-06 04:40:17 +00:00
|
|
|
<div class="_gaps_m">
|
2023-01-05 12:04:56 +00:00
|
|
|
<FormSplit>
|
|
|
|
<MkKeyValue>
|
|
|
|
<template #key>{{ i18n.ts.administrator }}</template>
|
2023-04-01 04:46:04 +00:00
|
|
|
<template #value>{{ instance.maintainerName }}</template>
|
2023-01-05 12:04:56 +00:00
|
|
|
</MkKeyValue>
|
|
|
|
<MkKeyValue>
|
|
|
|
<template #key>{{ i18n.ts.contact }}</template>
|
2023-04-01 04:46:04 +00:00
|
|
|
<template #value>{{ instance.maintainerEmail }}</template>
|
2023-01-05 12:04:56 +00:00
|
|
|
</MkKeyValue>
|
|
|
|
</FormSplit>
|
2023-10-07 04:13:13 +00:00
|
|
|
<FormLink v-if="instance.impressumUrl" :to="instance.impressumUrl" external>{{ i18n.ts.impressum }}</FormLink>
|
|
|
|
<div class="_formLinks">
|
|
|
|
<MkFolder v-if="instance.serverRules.length > 0">
|
|
|
|
<template #label>{{ i18n.ts.serverRules }}</template>
|
2023-04-20 08:23:35 +00:00
|
|
|
|
2023-10-07 04:13:13 +00:00
|
|
|
<ol class="_gaps_s" :class="$style.rules">
|
|
|
|
<li v-for="item, index in instance.serverRules" :key="index" :class="$style.rule"><div :class="$style.ruleText" v-html="item"></div></li>
|
|
|
|
</ol>
|
|
|
|
</MkFolder>
|
|
|
|
<FormLink v-if="instance.tosUrl" :to="instance.tosUrl" external>{{ i18n.ts.termsOfService }}</FormLink>
|
|
|
|
<FormLink v-if="instance.privacyPolicyUrl" :to="instance.privacyPolicyUrl" external>{{ i18n.ts.privacyPolicy }}</FormLink>
|
|
|
|
</div>
|
2023-01-05 12:04:56 +00:00
|
|
|
</div>
|
2021-11-28 11:07:37 +00:00
|
|
|
</FormSection>
|
2021-04-25 03:31:11 +00:00
|
|
|
|
2022-06-20 08:38:49 +00:00
|
|
|
<FormSuspense :p="initStats">
|
|
|
|
<FormSection>
|
2022-07-20 13:24:26 +00:00
|
|
|
<template #label>{{ i18n.ts.statistics }}</template>
|
2022-06-20 08:38:49 +00:00
|
|
|
<FormSplit>
|
2023-01-05 12:04:56 +00:00
|
|
|
<MkKeyValue>
|
2022-07-20 13:24:26 +00:00
|
|
|
<template #key>{{ i18n.ts.users }}</template>
|
2022-06-20 08:38:49 +00:00
|
|
|
<template #value>{{ number(stats.originalUsersCount) }}</template>
|
|
|
|
</MkKeyValue>
|
2023-01-05 12:04:56 +00:00
|
|
|
<MkKeyValue>
|
2022-07-20 13:24:26 +00:00
|
|
|
<template #key>{{ i18n.ts.notes }}</template>
|
2022-06-20 08:38:49 +00:00
|
|
|
<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>
|
|
|
|
</div>
|
|
|
|
</MkSpacer>
|
2023-05-19 07:20:53 +00:00
|
|
|
<MkSpacer v-else-if="tab === 'emojis'" :contentMax="1000" :marginMin="20">
|
2022-06-29 02:13:32 +00:00
|
|
|
<XEmojis/>
|
|
|
|
</MkSpacer>
|
2023-05-19 07:20:53 +00:00
|
|
|
<MkSpacer v-else-if="tab === 'federation'" :contentMax="1000" :marginMin="20">
|
2022-06-29 02:13:32 +00:00
|
|
|
<XFederation/>
|
|
|
|
</MkSpacer>
|
2023-05-19 07:20:53 +00:00
|
|
|
<MkSpacer v-else-if="tab === 'charts'" :contentMax="1000" :marginMin="20">
|
2022-12-30 23:17:00 +00:00
|
|
|
<MkInstanceStats/>
|
2022-06-20 08:38:49 +00:00
|
|
|
</MkSpacer>
|
|
|
|
</MkStickyContainer>
|
2020-01-29 19:37:25 +00:00
|
|
|
</template>
|
|
|
|
|
2022-01-07 07:48:51 +00:00
|
|
|
<script lang="ts" setup>
|
2023-02-16 14:09:41 +00:00
|
|
|
import { computed, watch } from 'vue';
|
2022-06-29 02:13:32 +00:00
|
|
|
import XEmojis from './about.emojis.vue';
|
|
|
|
import XFederation from './about.federation.vue';
|
2023-09-19 07:37:43 +00:00
|
|
|
import { version, host } from '@/config.js';
|
2021-11-28 11:07:37 +00: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 12:47:48 +00:00
|
|
|
import FormSplit from '@/components/form/split.vue';
|
2023-04-20 08:23:35 +00:00
|
|
|
import MkFolder from '@/components/MkFolder.vue';
|
2022-08-30 15:24:33 +00:00
|
|
|
import MkKeyValue from '@/components/MkKeyValue.vue';
|
|
|
|
import MkInstanceStats from '@/components/MkInstanceStats.vue';
|
2023-09-19 07:37:43 +00:00
|
|
|
import * as os from '@/os.js';
|
|
|
|
import number from '@/filters/number.js';
|
|
|
|
import { i18n } from '@/i18n.js';
|
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata.js';
|
|
|
|
import { claimAchievement } from '@/scripts/achievements.js';
|
|
|
|
import { instance } from '@/instance.js';
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2022-06-29 07:00:00 +00:00
|
|
|
const props = withDefaults(defineProps<{
|
|
|
|
initialTab?: string;
|
|
|
|
}>(), {
|
|
|
|
initialTab: 'overview',
|
|
|
|
});
|
|
|
|
|
2022-02-08 06:50:26 +00:00
|
|
|
let stats = $ref(null);
|
2022-06-29 07:00:00 +00:00
|
|
|
let tab = $ref(props.initialTab);
|
2020-02-16 17:21:27 +00:00
|
|
|
|
2023-01-22 11:30:56 +00:00
|
|
|
watch($$(tab), () => {
|
|
|
|
if (tab === 'charts') {
|
|
|
|
claimAchievement('viewInstanceChart');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2022-01-07 07:48:51 +00:00
|
|
|
const initStats = () => os.api('stats', {
|
|
|
|
}).then((res) => {
|
2022-02-08 06:50:26 +00:00
|
|
|
stats = res;
|
2022-01-07 07:48:51 +00:00
|
|
|
});
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2022-06-20 08:38:49 +00:00
|
|
|
const headerActions = $computed(() => []);
|
|
|
|
|
|
|
|
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,
|
2023-09-30 19:53:52 +00:00
|
|
|
icon: 'ph-smiley ph-bold pg-lg',
|
2022-06-29 02:13:32 +00:00
|
|
|
}, {
|
|
|
|
key: 'federation',
|
|
|
|
title: i18n.ts.federation,
|
2023-09-30 19:53:52 +00:00
|
|
|
icon: 'ph-globe-hemisphere-west ph-bold ph-lg',
|
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,
|
2023-09-30 22:46:42 +00:00
|
|
|
icon: 'ph-chart-line ph-bold pg-lg',
|
2022-06-20 08:38:49 +00:00
|
|
|
}]);
|
|
|
|
|
|
|
|
definePageMetadata(computed(() => ({
|
|
|
|
title: i18n.ts.instanceInfo,
|
2023-09-30 19:53:52 +00:00
|
|
|
icon: 'ph-info ph-bold ph-lg',
|
2022-06-20 08:38:49 +00:00
|
|
|
})));
|
2020-01-29 19:37:25 +00:00
|
|
|
</script>
|
|
|
|
|
2023-04-20 08:23:35 +00:00
|
|
|
<style lang="scss" module>
|
|
|
|
.banner {
|
2021-04-25 03:31:11 +00:00
|
|
|
text-align: center;
|
2023-10-31 18:26:03 +00:00
|
|
|
border-radius: 10px;
|
2022-07-13 12:41:06 +00:00
|
|
|
overflow: clip;
|
2021-11-28 11:07:37 +00:00
|
|
|
background-size: cover;
|
|
|
|
background-position: center center;
|
2023-04-20 08:23:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.bannerIcon {
|
|
|
|
display: block;
|
|
|
|
margin: 16px auto 0 auto;
|
|
|
|
height: 64px;
|
2023-10-31 18:26:03 +00:00
|
|
|
border-radius: 8px;
|
2023-04-20 08:23:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.bannerName {
|
|
|
|
display: block;
|
|
|
|
padding: 16px;
|
|
|
|
color: #fff;
|
|
|
|
text-shadow: 0 0 8px #000;
|
|
|
|
background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
|
|
|
|
}
|
|
|
|
|
|
|
|
.rules {
|
|
|
|
counter-reset: item;
|
|
|
|
list-style: none;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
}
|
2020-11-28 03:44:39 +00:00
|
|
|
|
2023-04-20 08:23:35 +00:00
|
|
|
.rule {
|
|
|
|
display: flex;
|
|
|
|
gap: 8px;
|
|
|
|
word-break: break-word;
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
flex-shrink: 0;
|
|
|
|
display: flex;
|
|
|
|
position: sticky;
|
|
|
|
top: calc(var(--stickyTop, 0px) + 8px);
|
|
|
|
counter-increment: item;
|
|
|
|
content: counter(item);
|
|
|
|
width: 32px;
|
|
|
|
height: 32px;
|
|
|
|
line-height: 32px;
|
|
|
|
background-color: var(--accentedBg);
|
|
|
|
color: var(--accent);
|
|
|
|
font-size: 13px;
|
|
|
|
font-weight: bold;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2023-10-31 18:26:03 +00:00
|
|
|
border-radius: 999px;
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
|
|
|
}
|
2023-04-20 08:23:35 +00:00
|
|
|
|
|
|
|
.ruleText {
|
|
|
|
padding-top: 6px;
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
</style>
|