iceshrimp-legacy/packages/client/src/pages/about.vue

477 lines
10 KiB
Vue
Raw Normal View History

<template>
2023-04-08 02:01:42 +02:00
<MkStickyContainer>
<template #header
><MkPageHeader
v-model:tab="tab"
:actions="headerActions"
:tabs="headerTabs"
/></template>
<MkSpacer :content-max="600" :margin-min="20">
2023-05-26 04:47:10 +02:00
<swiper
2023-05-26 23:02:17 +02:00
:round-lengths="true"
2023-05-26 04:47:10 +02:00
:touch-angle="25"
:threshold="10"
:centeredSlides="true"
2023-04-08 02:01:42 +02:00
:modules="[Virtual]"
:space-between="20"
:virtual="true"
2023-06-26 21:47:05 +02:00
:allow-touch-move="
defaultStore.state.swipeOnMobile &&
(deviceKind !== 'desktop' ||
defaultStore.state.swipeOnDesktop)
"
2023-04-08 02:01:42 +02:00
@swiper="setSwiperRef"
@slide-change="onSlideChange"
>
<swiper-slide>
<div class="_formRoot">
<div
class="_formBlock fwhjspax"
:style="{
backgroundImage: `url(${$instance.bannerUrl})`,
}"
>
<div class="content">
<img
ref="instanceIcon"
:src="
$instance.iconUrl ||
$instance.faviconUrl ||
'/favicon.ico'
"
aria-label="none"
class="icon"
:class="instanceIconAnimation"
@click="easterEgg"
/>
<div class="name">
<b>{{ $instance.name || host }}</b>
</div>
2022-09-10 00:11:06 +02:00
</div>
</div>
2023-04-08 02:01:42 +02:00
<MkKeyValue class="_formBlock">
<template #key>{{ i18n.ts.description }}</template>
2023-06-26 02:58:01 +02:00
<template #value
><div v-html="$instance.description"></div
></template>
</MkKeyValue>
2023-04-08 02:01:42 +02:00
<FormSection>
<MkKeyValue class="_formBlock" :copy="version">
2023-07-20 18:36:48 +02:00
<template #key>Iceshrimp</template>
2023-04-08 02:01:42 +02:00
<template #value>{{ version }}</template>
2022-09-10 00:11:06 +02:00
</MkKeyValue>
2023-07-20 18:36:48 +02:00
<FormLink to="/about-iceshrimp">{{
2023-07-15 23:21:17 +02:00
i18n.ts.aboutFirefish
2023-04-08 02:01:42 +02:00
}}</FormLink>
</FormSection>
2022-09-10 00:11:06 +02:00
<FormSection>
<FormSplit>
<MkKeyValue class="_formBlock">
2023-04-08 02:01:42 +02:00
<template #key>{{
i18n.ts.administrator
}}</template>
<template #value>{{
$instance.maintainerName
}}</template>
2022-09-10 00:11:06 +02:00
</MkKeyValue>
<MkKeyValue class="_formBlock">
2023-04-08 02:01:42 +02:00
<template #key>{{
i18n.ts.contact
}}</template>
<template #value>{{
$instance.maintainerEmail
}}</template>
2022-09-10 00:11:06 +02:00
</MkKeyValue>
</FormSplit>
2023-04-08 02:01:42 +02:00
<FormLink
v-if="$instance.tosUrl"
:to="$instance.tosUrl"
class="_formBlock"
external
>{{ i18n.ts.tos }}</FormLink
>
<FormLink
v-if="$instance.donationLink"
:to="$instance.donationLink"
external
>
<template #icon
><i class="ph-money ph-bold ph-lg"></i
></template>
{{
2023-07-15 23:21:17 +02:00
i18n.t("_aboutFirefish.donateHost", {
host: $instance.name || host,
})
}}
<template #suffix>Donate</template>
</FormLink>
2022-09-10 00:11:06 +02:00
</FormSection>
2023-04-08 02:01:42 +02:00
<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>
</div>
</swiper-slide>
<swiper-slide>
<XEmojis />
</swiper-slide>
<swiper-slide>
<MkInstanceStats :chart-limit="500" :detailed="true" />
</swiper-slide>
<swiper-slide>
<XFederation />
</swiper-slide>
</swiper>
</MkSpacer>
</MkStickyContainer>
</template>
2022-01-07 08:48:51 +01:00
<script lang="ts" setup>
2023-04-08 02:01:42 +02:00
import { ref, computed, onMounted, watch } from "vue";
import { Virtual } from "swiper/modules";
2023-04-08 02:01:42 +02:00
import { Swiper, SwiperSlide } from "swiper/vue";
import XEmojis from "./about.emojis.vue";
import XFederation from "./about.federation.vue";
import { version, instanceName, host } from "@/config";
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 MkKeyValue from "@/components/MkKeyValue.vue";
import MkInstanceStats from "@/components/MkInstanceStats.vue";
import * as os from "@/os";
import number from "@/filters/number";
import { i18n } from "@/i18n";
import { definePageMetadata } from "@/scripts/page-metadata";
import { deviceKind } from "@/scripts/device-kind";
import { iAmModerator } from "@/account";
import { instance } from "@/instance";
import { defaultStore } from "@/store";
import "swiper/scss";
import "swiper/scss/virtual";
withDefaults(
defineProps<{
initialTab?: string;
}>(),
{
initialTab: "overview",
2023-07-06 03:28:27 +02:00
},
2023-04-08 02:01:42 +02:00
);
let stats = $ref(null);
2022-12-18 02:15:15 +01:00
let instanceIcon = $ref<HTMLImageElement>();
2023-04-08 02:01:42 +02:00
let instanceIconAnimation = "none";
2022-12-18 01:55:40 +01:00
let iconClicks = 0;
2023-04-08 02:01:42 +02:00
let tabs = ["overview", "emojis", "charts"];
2022-10-26 07:09:45 +02:00
let tab = $ref(tabs[0]);
2023-04-08 02:01:42 +02:00
watch($$(tab), () => syncSlide(tabs.indexOf(tab)));
2022-10-26 07:09:45 +02:00
2023-04-08 02:01:42 +02:00
if (iAmModerator) tabs.push("federation");
2020-02-16 18:21:27 +01:00
2023-04-08 02:01:42 +02:00
const initStats = () =>
os.api("stats", {}).then((res) => {
stats = res;
});
const headerActions = $computed(() => []);
2023-04-08 02:01:42 +02:00
let theTabs = [
{
key: "overview",
title: i18n.ts.overview,
icon: "ph-map-trifold ph-bold ph-lg",
},
{
key: "emojis",
title: i18n.ts.customEmojis,
icon: "ph-smiley ph-bold ph-lg",
},
{
key: "charts",
title: i18n.ts.charts,
icon: "ph-chart-bar ph-bold ph-lg",
},
];
if (iAmModerator) {
2023-04-08 02:01:42 +02:00
theTabs.push({
key: "federation",
title: i18n.ts.federation,
icon: "ph-planet ph-bold ph-lg",
});
}
let headerTabs = $computed(() => theTabs);
2023-04-08 02:01:42 +02:00
definePageMetadata(
computed(() => ({
title: i18n.ts.instanceInfo,
icon: "ph-info ph-bold ph-lg",
2023-07-06 03:28:27 +02:00
})),
2023-04-08 02:01:42 +02:00
);
2022-09-10 00:11:06 +02:00
2022-12-18 02:47:38 +01:00
async function sleep(seconds) {
return new Promise((resolve) => setTimeout(resolve, seconds * 1000));
}
2022-12-18 03:48:21 +01:00
onMounted(() => {
if (defaultStore.state.woozyMode) {
2023-04-08 02:01:42 +02:00
instanceIcon.src = "/static-assets/woozy.png";
2022-12-18 03:48:21 +01:00
}
});
2022-12-18 02:55:08 +01:00
function easterEgg() {
2022-12-18 02:22:18 +01:00
iconClicks++;
2023-04-08 02:01:42 +02:00
instanceIconAnimation = "noAnimation";
2022-12-18 03:31:11 +01:00
console.log(instanceIconAnimation);
2022-12-18 02:55:08 +01:00
sleep(0.1);
2022-12-18 02:22:18 +01:00
const normalizedCount = (iconClicks % 3) + 1;
2022-12-18 03:31:11 +01:00
instanceIconAnimation = `shake${normalizedCount}`;
2022-12-18 02:22:18 +01:00
if (iconClicks % 3 === 0) {
2022-12-18 02:51:47 +01:00
defaultStore.state.woozyMode = !defaultStore.state.woozyMode;
2022-12-18 02:55:08 +01:00
sleep(0.4);
2023-04-08 02:01:42 +02:00
instanceIconAnimation = "noAnimation";
instanceIconAnimation = "doSpinY";
2022-12-18 03:31:11 +01:00
console.log(instanceIconAnimation);
2022-12-18 03:02:19 +01:00
if (iconClicks % 6 === 0) {
2023-04-08 02:01:42 +02:00
instanceIcon.src =
instance.iconUrl || instance.faviconUrl || "/favicon.ico";
} else {
instanceIcon.src = "/static-assets/woozy.png";
2022-12-18 03:02:19 +01:00
}
2022-12-18 02:22:18 +01:00
}
}
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);
}
</script>
<style lang="scss" scoped>
2022-12-18 01:55:40 +01:00
@keyframes iconShake1 {
2023-04-08 02:01:42 +02:00
0% {
transform: translate(2px, 0px) rotate(-1deg);
}
10% {
transform: translate(2px, -3px) rotate(5deg);
}
20% {
transform: translate(-1px, -3px) rotate(3deg);
}
30% {
transform: translate(-2px, 0px) rotate(-1deg);
}
40% {
transform: translate(-2px, -1px) rotate(4deg);
}
50% {
transform: translate(-1px, -1px) rotate(1deg);
}
60% {
transform: translate(-2px, 0px) rotate(-8deg);
}
70% {
transform: translate(1px, 2px) rotate(-2deg);
}
80% {
transform: translate(-1px, 2px) rotate(4deg);
}
90% {
transform: translate(-1px, 1px) rotate(11deg);
}
100% {
transform: translate(-3px, -3px) rotate(-5deg);
}
2022-12-18 01:55:40 +01:00
}
@keyframes iconShake2 {
2023-04-08 02:01:42 +02:00
0% {
transform: translate(-1px, 5px) rotate(33deg);
}
10% {
transform: translate(-2px, 7px) rotate(20deg);
}
20% {
transform: translate(8px, 5px) rotate(31deg);
}
30% {
transform: translate(-2px, 5px) rotate(3deg);
}
40% {
transform: translate(4px, 6px) rotate(16deg);
}
50% {
transform: translate(8px, -3px) rotate(19deg);
}
60% {
transform: translate(7px, -2px) rotate(0deg);
}
70% {
transform: translate(4px, 4px) rotate(8deg);
}
80% {
transform: translate(7px, -3px) rotate(13deg);
}
90% {
transform: translate(6px, 7px) rotate(4deg);
}
100% {
transform: translate(4px, -2px) rotate(-2deg);
}
2022-12-18 01:55:40 +01:00
}
@keyframes iconShake3 {
2023-04-08 02:01:42 +02:00
0% {
transform: translate(12px, -2px) rotate(57deg);
}
10% {
transform: translate(10px, 2px) rotate(12deg);
}
20% {
transform: translate(10px, 4px) rotate(3deg);
}
30% {
transform: translate(17px, 11px) rotate(15deg);
}
40% {
transform: translate(12px, 20px) rotate(-11deg);
}
50% {
transform: translate(5px, 12px) rotate(43deg);
}
60% {
transform: translate(16px, 8px) rotate(-4deg);
}
70% {
transform: translate(14px, 11px) rotate(22deg);
}
80% {
transform: translate(9px, 19px) rotate(-3deg);
}
90% {
transform: translate(0px, 12px) rotate(-3deg);
}
100% {
transform: translate(17px, 3px) rotate(57deg);
}
2022-12-18 01:55:40 +01:00
}
@keyframes spinY {
2023-04-08 02:01:42 +02:00
0% {
transform: perspective(128px) rotateY(0deg);
}
100% {
transform: perspective(128px) rotateY(360deg);
}
2022-12-18 01:55:40 +01:00
}
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;
2021-11-28 12:07:37 +01:00
> .icon {
display: block;
margin: 16px auto 0 auto;
height: 64px;
border-radius: 8px;
2022-12-18 03:31:11 +01:00
&.noAnimation {
animation: none;
}
&.shake1 {
animation: iconShake1 0.1s 1;
}
&.shake2 {
animation: iconShake2 0.2s 1;
}
&.shake3 {
animation: iconShake3 0.3s 1;
}
&.doSpinY {
animation: spinY 0.9s 1;
}
2021-11-28 12:07:37 +01:00
}
> .name {
display: block;
padding: 16px;
2022-07-26 02:14:37 +02:00
color: #e0def4;
2023-01-04 03:56:43 +01:00
text-shadow: 0 0 8px var(--shadow);
2021-11-28 12:07:37 +01:00
background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}
}
}
</style>