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

307 lines
7.2 KiB
Vue
Raw Normal View History

<template>
2023-04-08 02:01:42 +02:00
<MkStickyContainer>
<template #header
><MkPageHeader :actions="headerActions" :tabs="headerTabs"
/></template>
<div style="overflow: clip">
<MkSpacer :content-max="600" :margin-min="20">
<div class="_formRoot znqjceqz">
<div id="debug"></div>
<div
ref="containerEl"
v-panel
class="_formBlock about"
:class="{ playing: easterEggEngine != null }"
>
<img
src="/client-assets/about-icon.png"
alt=""
class="icon"
draggable="false"
@load="iconLoaded"
@click="gravity"
/>
2023-07-03 00:18:30 +02:00
<div class="misskey">Firefish</div>
2023-04-08 02:01:42 +02:00
<div class="version">v{{ version }}</div>
<span
v-for="emoji in easterEggEmojis"
:key="emoji.id"
class="emoji"
:data-physics-x="emoji.left"
:data-physics-y="emoji.top"
:class="{
_physics_circle_: !emoji.emoji.startsWith(':'),
}"
><MkEmoji
class="emoji"
:emoji="emoji.emoji"
:custom-emojis="$instance.emojis"
:is-reaction="false"
:normal="true"
:no-style="true"
/></span>
</div>
<div class="_formBlock" style="text-align: center">
2023-07-15 23:21:17 +02:00
{{ i18n.ts._aboutFirefish.about }}<br /><a
2023-07-03 00:18:30 +02:00
href="https://firefish.org/"
2023-04-08 02:01:42 +02:00
target="_blank"
class="_link"
>{{ i18n.ts.learnMore }}</a
>
</div>
2023-04-08 02:01:42 +02:00
<div class="_formBlock" style="text-align: center">
<MkButton primary rounded inline @click="iLoveMisskey"
2023-07-03 00:18:30 +02:00
>I <Mfm text="$[jelly ❤]" /> #Firefish</MkButton
2023-04-08 02:01:42 +02:00
>
</div>
2023-04-08 02:01:42 +02:00
<FormSection>
<div class="_formLinks">
<FormLink
2023-07-19 06:21:48 +02:00
to="https://gitlab.prometheus.systems/firefish/firefish"
2023-04-08 02:01:42 +02:00
external
>
<template #icon
><i class="ph-code ph-bold ph-lg"></i
></template>
2023-07-15 23:21:17 +02:00
{{ i18n.ts._aboutFirefish.source }}
2023-04-08 02:01:42 +02:00
<template #suffix>Codeberg</template>
</FormLink>
<FormLink
2023-07-03 00:18:30 +02:00
to="https://opencollective.com/firefish"
2023-04-08 02:01:42 +02:00
external
>
<template #icon
><i class="ph-money ph-bold ph-lg"></i
></template>
2023-07-15 23:21:17 +02:00
{{ i18n.ts._aboutFirefish.donate }}
2023-04-08 02:01:42 +02:00
<template #suffix>Donate</template>
</FormLink>
<FormLink
2023-07-03 00:18:30 +02:00
to="https://hosted.weblate.org/engage/firefish/"
2023-04-08 02:01:42 +02:00
external
>
<template #icon
><i class="ph-translate ph-bold ph-lg"></i
></template>
2023-07-15 23:21:17 +02:00
{{ i18n.ts._aboutFirefish.translation }}
2023-04-08 02:01:42 +02:00
<template #suffix>Translate</template>
</FormLink>
2022-11-19 08:26:43 +01:00
</div>
2023-04-08 02:01:42 +02:00
</FormSection>
<FormSection>
<template #label>{{
2023-07-15 23:21:17 +02:00
i18n.ts._aboutFirefish.contributors
2023-04-08 02:01:42 +02:00
}}</template>
<div class="_formLinks">
2023-07-03 00:18:30 +02:00
<FormLink to="/@kainoa@firefish.social"
2023-04-08 02:01:42 +02:00
><Mfm
2023-07-03 00:18:30 +02:00
:text="'$[sparkle @kainoa@firefish.social] (Main developer)'"
2023-04-08 02:01:42 +02:00
/></FormLink>
2023-07-03 00:18:30 +02:00
<FormLink to="/@freeplay@firefish.social"
2023-04-08 02:01:42 +02:00
><Mfm
2023-07-03 00:18:30 +02:00
:text="'@freeplay@firefish.social (UI/UX)'"
2023-06-01 20:55:13 +02:00
/></FormLink>
2023-07-15 23:21:17 +02:00
<FormLink to="/@namekuji@firefish.social"
2023-07-12 02:48:38 +02:00
><Mfm
2023-07-15 23:21:17 +02:00
:text="'@namekuji@firefish.social (Backend)'"
/></FormLink>
<FormLink to="/@dev@post.naskya.net"
><Mfm :text="'@dev@post.naskya.net (Fullstack)'"
/></FormLink>
2023-07-03 00:18:30 +02:00
<FormLink to="/@panos@firefish.social"
2023-06-01 20:55:13 +02:00
><Mfm
2023-07-03 00:18:30 +02:00
:text="'@panos@firefish.social (Project Coordinator)'"
2023-04-08 02:01:42 +02:00
/></FormLink>
<FormLink
to="https://www.youtube.com/c/Henkiwashere"
external
>Henki (error images artist)</FormLink
>
</div>
<template #caption
><MkLink
2023-07-19 06:21:48 +02:00
url="https://gitlab.prometheus.systems/firefish/firefish/activity"
2023-04-08 02:01:42 +02:00
>{{
2023-07-15 23:21:17 +02:00
i18n.ts._aboutFirefish.allContributors
2023-04-08 02:01:42 +02:00
}}</MkLink
></template
>
</FormSection>
<FormSection>
<template #label
2023-07-15 09:06:53 +02:00
><Mfm
2023-07-15 23:21:17 +02:00
:text="`$[x2 $[jelly ❤] ${i18n.ts._aboutFirefish.sponsors}]`"
2023-07-15 09:06:53 +02:00
/>
</template>
<MkSparkle>
<span
v-for="sponsor in sponsors"
:key="sponsor"
style="
margin-bottom: 0.5rem;
margin-right: 0.5rem;
font-size: 1.7rem;
"
>
<Mfm :text="`${sponsor}`" />
</span>
</MkSparkle>
</FormSection>
2023-04-08 02:01:42 +02:00
<FormSection>
<template #label
><Mfm text="$[jelly ❤]" />
2023-07-15 23:21:17 +02:00
{{ i18n.ts._aboutFirefish.patrons }}</template
2023-04-08 02:01:42 +02:00
>
<p>
2023-07-15 23:21:17 +02:00
{{ i18n.ts._aboutFirefish.patronsList }}
</p>
2023-04-08 02:01:42 +02:00
<MkSparkle>
2023-05-06 03:32:00 +02:00
<span
2023-04-08 02:01:42 +02:00
v-for="patron in patrons"
:key="patron"
2023-05-06 03:37:13 +02:00
style="
margin-bottom: 0.5rem;
margin-right: 0.5rem;
"
2023-04-08 02:01:42 +02:00
>
2023-05-06 03:37:13 +02:00
<Mfm :text="`${patron}`" />
2023-05-06 03:32:00 +02:00
</span>
2023-04-08 02:01:42 +02:00
</MkSparkle>
2023-07-15 23:21:17 +02:00
<p>{{ i18n.ts._aboutFirefish.morePatrons }}</p>
2023-04-08 02:01:42 +02:00
</FormSection>
</div>
</MkSpacer>
</div>
</MkStickyContainer>
</template>
<script lang="ts" setup>
2023-04-08 02:01:42 +02:00
import { nextTick, onBeforeUnmount } from "vue";
import { version } from "@/config";
import FormLink from "@/components/form/link.vue";
import FormSection from "@/components/form/section.vue";
import MkButton from "@/components/MkButton.vue";
import MkLink from "@/components/MkLink.vue";
import MkSparkle from "@/components/MkSparkle.vue";
import { physics } from "@/scripts/physics";
import { i18n } from "@/i18n";
import { defaultStore } from "@/store";
import * as os from "@/os";
import { definePageMetadata } from "@/scripts/page-metadata";
2023-07-02 09:20:14 +02:00
let patrons = [];
let sponsors = [];
const patronsResp = await os.api("patrons", { forceUpdate: true });
patrons = patronsResp.patrons;
sponsors = patronsResp.sponsors;
patrons = patrons.filter((patron) => !sponsors.includes(patron));
2020-11-28 03:52:57 +01:00
let easterEggReady = false;
let easterEggEmojis = $ref([]);
let easterEggEngine = $ref(null);
const containerEl = $ref<HTMLElement>();
function iconLoaded() {
const emojis = defaultStore.state.reactions;
2023-01-04 02:38:07 +01:00
const containerWidth = containerEl?.offsetWidth;
for (let i = 0; i < 32; i++) {
easterEggEmojis.push({
id: i.toString(),
2023-04-08 02:01:42 +02:00
top: -(128 + Math.random() * 256),
left: Math.random() * containerWidth,
emoji: emojis[Math.floor(Math.random() * emojis.length)],
});
}
2020-12-06 04:51:00 +01:00
nextTick(() => {
easterEggReady = true;
});
}
2020-12-06 15:54:58 +01:00
function gravity() {
if (!easterEggReady) return;
easterEggReady = false;
easterEggEngine = physics(containerEl);
}
2020-12-06 04:51:00 +01:00
2022-01-21 13:26:39 +01:00
function iLoveMisskey() {
os.post({
2023-07-03 00:18:30 +02:00
initialText: "I $[jelly ❤] #Firefish",
2022-01-27 09:38:02 +01:00
instant: true,
2022-01-21 13:26:39 +01:00
});
}
onBeforeUnmount(() => {
if (easterEggEngine) {
easterEggEngine.stop();
2020-12-06 04:51:00 +01:00
}
});
const headerActions = $computed(() => []);
const headerTabs = $computed(() => []);
definePageMetadata({
2023-07-15 23:21:17 +02:00
title: i18n.ts.aboutFirefish,
icon: null,
});
</script>
2020-11-28 03:52:57 +01:00
<style lang="scss" scoped>
.znqjceqz {
2020-12-06 15:54:58 +01:00
> .about {
2021-11-28 12:07:37 +01:00
position: relative;
text-align: center;
padding: 16px;
border-radius: var(--radius);
&.playing {
2023-04-08 02:01:42 +02:00
&,
* {
2021-11-28 12:07:37 +01:00
user-select: none;
2020-12-06 15:54:58 +01:00
}
2021-11-28 12:07:37 +01:00
* {
will-change: transform;
2020-12-06 15:54:58 +01:00
}
2021-11-28 12:07:37 +01:00
> .emoji {
visibility: visible;
2020-12-06 15:54:58 +01:00
}
2021-11-28 12:07:37 +01:00
}
2020-12-06 15:54:58 +01:00
2021-11-28 12:07:37 +01:00
> .icon {
display: block;
width: 100px;
margin: 0 auto;
border-radius: 16px;
}
> .misskey {
margin: 0.75em auto 0 auto;
width: max-content;
}
> .version {
margin: 0 auto;
width: max-content;
opacity: 0.5;
}
> .emoji {
position: absolute;
top: 0;
left: 0;
visibility: hidden;
2020-12-06 15:54:58 +01:00
> .emoji {
2021-11-28 12:07:37 +01:00
pointer-events: none;
font-size: 24px;
width: 24px;
2020-12-06 15:54:58 +01:00
}
}
}
2020-11-28 03:52:57 +01:00
}
</style>