424 lines
13 KiB
Vue
424 lines
13 KiB
Vue
<!--
|
|
SPDX-FileCopyrightText: syuilo and misskey-project
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
-->
|
|
|
|
<template>
|
|
<MkStickyContainer>
|
|
<template #header><MkPageHeader v-model:tab="tab" :actions="headerActions" :tabs="headerTabs"/></template>
|
|
<MkHorizontalSwipe v-model:tab="tab" :tabs="headerTabs">
|
|
<MkSpacer v-if="tab === 'overview'" :contentMax="600" :marginMin="20">
|
|
<div class="_gaps_m">
|
|
<div :class="$style.banner" :style="{ backgroundImage: `url(${ instance.bannerUrl })` }">
|
|
<div style="overflow: clip;">
|
|
<img v-if="kawaiiMode" src="/client-assets/kawaii/about-icon.png" alt="" :class="$style.bannerIconAlt"/>
|
|
<img v-else :src="instance.iconUrl ?? instance.faviconUrl ?? '/favicon.ico'" alt="" :class="$style.bannerIcon"/>
|
|
<Mfm v-if="kawaiiMode" text="Logo by @sawaratsuki@misskey.io" :class="$style.iconCredit"/>
|
|
<div :class="$style.bannerName">
|
|
<b>{{ instance.name ?? host }}</b>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<MkKeyValue>
|
|
<template #key>{{ i18n.ts.description }}</template>
|
|
<!-- eslint-disable-next-line vue/no-v-html -->
|
|
<template #value><div v-html="instance.description"></div></template>
|
|
</MkKeyValue>
|
|
|
|
<div style="display:flex;flex-direction:column;align-items:center;justify-content:center">
|
|
<div>Powered by OSCAR Node #4 with ❤️.</div>
|
|
<div>© {{ new Date().getFullYear() }} OSCAR Node #4, All Rights Reserved.</div>
|
|
</div>
|
|
|
|
<!--
|
|
<FormSection>
|
|
<template #label><Mfm text="$[jelly ❤]"/> Sponsored by</template>
|
|
<div style="display:flex;flex-wrap:wrap;gap:8px 8px;align-items:center;justify-content:center;">
|
|
<a title="Skeb" href="https://skeb.jp/" target="_blank"><img src="https://media.misskeyusercontent.jp/misskey-io/sponsors/skeb.png" alt="Skeb" width="140"></a>
|
|
</div>
|
|
</FormSection>
|
|
-->
|
|
|
|
<FormSection>
|
|
<div class="_gaps_m">
|
|
<MkKeyValue :copy="version">
|
|
<template #key>Misskey</template>
|
|
<template #value>{{ version }}</template>
|
|
</MkKeyValue>
|
|
<!-- eslint-disable-next-line vue/no-v-html -->
|
|
<div v-html="i18n.tsx.poweredByMisskeyDescription({ name: instance.name ?? host })">
|
|
</div>
|
|
<FormLink to="/about-misskey">
|
|
<template #icon><i class="ti ti-info-circle"></i></template>
|
|
{{ i18n.ts.aboutMisskey }}
|
|
</FormLink>
|
|
<FormLink v-if="instance.repositoryUrl" :to="instance.repositoryUrl" external>
|
|
<template #icon><i class="ti ti-code"></i></template>
|
|
{{ i18n.ts.sourceCode }}
|
|
</FormLink>
|
|
<MkInfo v-else warn>
|
|
{{ i18n.ts.sourceCodeIsNotYetProvided }}
|
|
</MkInfo>
|
|
</div>
|
|
</FormSection>
|
|
|
|
<FormSection>
|
|
<div class="_gaps_m">
|
|
<FormSplit>
|
|
<MkKeyValue>
|
|
<template #key>{{ i18n.ts.administrator }}</template>
|
|
<template #value>{{ instance.maintainerName }}</template>
|
|
</MkKeyValue>
|
|
<MkKeyValue>
|
|
<template #key>{{ i18n.ts.contact }}</template>
|
|
<template #value>{{ instance.maintainerEmail }}</template>
|
|
</MkKeyValue>
|
|
</FormSplit>
|
|
<FormLink v-if="instance.impressumUrl" :to="instance.impressumUrl" external>
|
|
<template #icon><i class="ti ti-user-shield"></i></template>
|
|
{{ i18n.ts.impressum }}
|
|
</FormLink>
|
|
<div class="_gaps_s">
|
|
<MkFolder v-if="instance.serverRules.length > 0">
|
|
<template #label>
|
|
<i class="ti ti-checkup-list"></i>
|
|
{{ i18n.ts.serverRules }}
|
|
</template>
|
|
|
|
<ol class="_gaps_s" :class="$style.rules">
|
|
<!-- eslint-disable-next-line vue/no-v-html -->
|
|
<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>
|
|
<template #icon><i class="ti ti-license"></i></template>
|
|
{{ i18n.ts.termsOfService }}
|
|
</FormLink>
|
|
<FormLink v-if="instance.privacyPolicyUrl" :to="instance.privacyPolicyUrl" external>
|
|
<template #icon><i class="ti ti-shield-lock"></i></template>
|
|
{{ i18n.ts.privacyPolicy }}
|
|
</FormLink>
|
|
<FormLink v-if="instance.feedbackUrl" :to="instance.feedbackUrl" external>
|
|
<template #icon><i class="ti ti-message"></i></template>
|
|
{{ i18n.ts.support }}
|
|
</FormLink>
|
|
<FormLink to="https://patreon.com/nrmaa" external>
|
|
<template #icon><i class="ti ti-pig-money"></i></template>
|
|
{{ i18n.tsx.supportThisInstance({ name: instance.name ?? host }) }}
|
|
<template #suffix>Patreon</template>
|
|
</FormLink>
|
|
</div>
|
|
</div>
|
|
</FormSection>
|
|
|
|
<FormSuspense :p="initStats">
|
|
<FormSection>
|
|
<template #label>{{ i18n.ts.statistics }}</template>
|
|
<FormSplit>
|
|
<MkKeyValue>
|
|
<template #key>{{ i18n.ts.users }}</template>
|
|
<template #value>{{ number(stats?.originalUsersCount ?? 0) }}</template>
|
|
</MkKeyValue>
|
|
<MkKeyValue>
|
|
<template #key>{{ i18n.ts.notes }}</template>
|
|
<template #value>{{ number(stats?.originalNotesCount ?? 0) }}</template>
|
|
</MkKeyValue>
|
|
</FormSplit>
|
|
</FormSection>
|
|
</FormSuspense>
|
|
|
|
<FormSection>
|
|
<template #label>{{ i18n.ts.credits }}</template>
|
|
<div :class="$style.contributors">
|
|
<MkA v-for="user in staffs" :to="`/@${user.username}`" :class="$style.contributor">
|
|
<MkAvatar :user="user" :class="$style.contributorAvatar"/>
|
|
<span :class="$style.contributorUsername">@{{ user.username }}
|
|
<span :class="$style.contributorClient">
|
|
<span :style="instanceColor">{{ instance.name }}</span>
|
|
</span>
|
|
</span>
|
|
</MkA>
|
|
<MkA v-if="$i !== null" :to="`/@${$i.username}`" :class="$style.contributor">
|
|
<MkAvatar :user="$i" :class="$style.contributorAvatar"/>
|
|
<span :class="$style.contributorUsername">{{ `@${$i.username}` }}
|
|
<span :class="$style.contributorClient">
|
|
<span :class="$style.thankYou">{{ i18n.ts.thankYou }}</span>
|
|
</span>
|
|
</span>
|
|
</MkA>
|
|
<MkA v-else to="/about" :class="$style.contributor">
|
|
<img src="/static-assets/avatar.png" :class="$style.contributorAvatarOrigin" alt="Misskey default profile image">
|
|
<span :class="$style.contributorUsername">Explorer
|
|
<span :class="$style.contributorClient">
|
|
<span :class="$style.visitor">{{ i18n.ts.timeWillCome }}</span>
|
|
</span>
|
|
</span>
|
|
</MkA>
|
|
</div>
|
|
</FormSection>
|
|
|
|
<FormSection>
|
|
<template #label>Well-known resources</template>
|
|
<div class="_gaps_s">
|
|
<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>
|
|
|
|
<FormSection>
|
|
<template #label>Special Thanks</template>
|
|
<FormSection>
|
|
<template #label>Character Design</template>
|
|
<MkKeyValue oneline style="margin: 1em 0;">
|
|
<template #key>Sergio</template>
|
|
<template #value><MkLink url="https://x.com/koko_san_">@koko_san_</MkLink></template>
|
|
</MkKeyValue>
|
|
<MkKeyValue oneline style="margin: 1em 0;">
|
|
<template #key>Floyd</template>
|
|
<template #value><MkLink url="https://x.com/Astro_CQM">@Astro_CQM</MkLink>, <MkLink url="https://x.com/iyosuke_114">@iyosuke_114</MkLink></template>
|
|
</MkKeyValue>
|
|
<MkKeyValue oneline style="margin: 1em 0;">
|
|
<template #key>Oscar</template>
|
|
<template #value><MkLink url="https://x.com/Astro_CQM">@Astro_CQM</MkLink>, <MkLink url="https://x.com/koko_san_">@koko_san_</MkLink></template>
|
|
</MkKeyValue>
|
|
</FormSection>
|
|
<FormSection>
|
|
<template #label>ST@R P:ACE Branding</template>
|
|
<MkKeyValue oneline style="margin: 1em 0;">
|
|
<template #key>Logo Design</template>
|
|
<template #value><MkLink url="https://crepe.cm/@r0I1xmCy">@r0I1xmCy</MkLink></template>
|
|
</MkKeyValue>
|
|
<MkKeyValue oneline style="margin: 1em 0;">
|
|
<template #key>Main Illustrations</template>
|
|
<template #value><MkLink url="https://x.com/iyosuke_114">@iyosuke_114</MkLink></template>
|
|
</MkKeyValue>
|
|
</FormSection>
|
|
<FormSection>
|
|
<template #label>OSCAR Node #4 Branding</template>
|
|
<MkKeyValue oneline style="margin: 1em 0;">
|
|
<template #key>Special Illustration</template>
|
|
<template #value><MkLink url="https://x.com/DK_DK42">@DK_DK42</MkLink></template>
|
|
</MkKeyValue>
|
|
</FormSection>
|
|
</FormSection>
|
|
</div>
|
|
</MkSpacer>
|
|
<MkSpacer v-else-if="tab === 'emojis'" :contentMax="1000" :marginMin="20">
|
|
<XEmojis/>
|
|
</MkSpacer>
|
|
<MkSpacer v-else-if="tab === 'charts'" :contentMax="1000" :marginMin="20">
|
|
<MkInstanceStats/>
|
|
</MkSpacer>
|
|
</MkHorizontalSwipe>
|
|
</MkStickyContainer>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { computed, watch, ref } from 'vue';
|
|
import * as Misskey from 'misskey-js';
|
|
import XEmojis from './about.emojis.vue';
|
|
import { version, host } from '@/config.js';
|
|
import FormLink from '@/components/form/link.vue';
|
|
import FormSection from '@/components/form/section.vue';
|
|
import FormSuspense from '@/components/form/suspense.vue';
|
|
import FormSplit from '@/components/form/split.vue';
|
|
import MkA from '@/components/global/MkA.vue';
|
|
import MkLink from '@/components/MkLink.vue';
|
|
import MkAvatar from '@/components/global/MkAvatar.vue';
|
|
import MkFolder from '@/components/MkFolder.vue';
|
|
import MkKeyValue from '@/components/MkKeyValue.vue';
|
|
import MkInfo from '@/components/MkInfo.vue';
|
|
import MkInstanceStats from '@/components/MkInstanceStats.vue';
|
|
import MkHorizontalSwipe from '@/components/MkHorizontalSwipe.vue';
|
|
import { misskeyApiGet } from '@/scripts/misskey-api.js';
|
|
import number from '@/filters/number.js';
|
|
import { $i } from '@/account.js';
|
|
import { i18n } from '@/i18n.js';
|
|
import { definePageMetadata } from '@/scripts/page-metadata.js';
|
|
import { claimAchievement } from '@/scripts/achievements.js';
|
|
import { instance } from '@/instance.js';
|
|
import { miLocalStorage } from '@/local-storage.js';
|
|
|
|
const props = withDefaults(defineProps<{
|
|
initialTab?: string;
|
|
}>(), {
|
|
initialTab: 'overview',
|
|
});
|
|
|
|
const kawaiiMode = miLocalStorage.getItem('kawaii') === 'true';
|
|
const stats = ref<Misskey.entities.StatsResponse | null>(null);
|
|
const tab = ref(props.initialTab);
|
|
const staffs = ref<Misskey.entities.User[]>([]);
|
|
const instanceColor = computed(() => {
|
|
if (!instance.themeColor) return null;
|
|
return {
|
|
color: instance.themeColor,
|
|
};
|
|
});
|
|
|
|
staffs.value = await misskeyApiGet('users/credits');
|
|
|
|
watch(tab, () => {
|
|
if (tab.value === 'charts') {
|
|
claimAchievement('viewInstanceChart');
|
|
}
|
|
});
|
|
|
|
const initStats = () => misskeyApiGet('stats').then((res) => {
|
|
stats.value = res;
|
|
});
|
|
|
|
const headerActions = computed(() => []);
|
|
|
|
const headerTabs = computed(() => [{
|
|
key: 'overview',
|
|
title: i18n.ts.overview,
|
|
}, {
|
|
key: 'emojis',
|
|
title: i18n.ts.customEmojis,
|
|
icon: 'ti ti-icons',
|
|
}, {
|
|
key: 'charts',
|
|
title: i18n.ts.charts,
|
|
icon: 'ti ti-chart-line',
|
|
}]);
|
|
|
|
definePageMetadata(() => ({
|
|
title: i18n.ts.instanceInfo,
|
|
icon: 'ti ti-info-circle',
|
|
}));
|
|
</script>
|
|
|
|
<style lang="scss" module>
|
|
$bodyTitleHieght: 18px;
|
|
$bodyInfoHieght: 16px;
|
|
|
|
.banner {
|
|
text-align: center;
|
|
border-radius: 10px;
|
|
overflow: clip;
|
|
background-size: cover;
|
|
background-position: center center;
|
|
}
|
|
|
|
.bannerIcon {
|
|
display: block;
|
|
margin: 16px auto 0 auto;
|
|
height: 64px;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
.bannerIconAlt {
|
|
display: block;
|
|
margin: 16px auto 0 auto;
|
|
width: 85%;
|
|
}
|
|
|
|
.bannerName {
|
|
display: block;
|
|
padding: 16px;
|
|
color: #fff;
|
|
text-shadow: 0 0 8px #000;
|
|
background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
|
|
}
|
|
|
|
.iconCredit {
|
|
margin: 0 auto;
|
|
width: max-content;
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.rules {
|
|
counter-reset: item;
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.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;
|
|
border-radius: 999px;
|
|
}
|
|
}
|
|
|
|
.ruleText {
|
|
padding-top: 6px;
|
|
}
|
|
|
|
.contributors {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
|
|
grid-gap: 12px;
|
|
}
|
|
|
|
.contributor {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 12px;
|
|
background: var(--buttonBg);
|
|
border-radius: 6px;
|
|
|
|
&:hover {
|
|
text-decoration: none;
|
|
background: var(--buttonHoverBg);
|
|
}
|
|
|
|
&.active {
|
|
color: var(--accent);
|
|
background: var(--buttonHoverBg);
|
|
}
|
|
}
|
|
|
|
.contributorAvatar {
|
|
display: block;
|
|
width: ($bodyTitleHieght + $bodyInfoHieght);
|
|
height: ($bodyTitleHieght + $bodyInfoHieght);
|
|
}
|
|
|
|
.contributorAvatarOrigin {
|
|
width: 30px;
|
|
border-radius: 100%;
|
|
}
|
|
|
|
.contributorUsername {
|
|
margin-left: 12px;
|
|
}
|
|
|
|
.contributorClient {
|
|
display: block;
|
|
font-size: 11px;
|
|
font-weight: bold;
|
|
|
|
> .thankYou {
|
|
color: #5a70ff;
|
|
}
|
|
|
|
> .visitor {
|
|
color: #ebff3a;
|
|
}
|
|
}
|
|
</style>
|