2020-02-12 18:48:52 +01:00
|
|
|
<template>
|
2022-06-20 10:38:49 +02:00
|
|
|
<MkStickyContainer>
|
|
|
|
<template #header><MkPageHeader :actions="headerActions" :tabs="headerTabs"/></template>
|
2022-07-13 14:41:06 +02:00
|
|
|
<div style="overflow: clip;">
|
2022-06-20 10:38:49 +02:00
|
|
|
<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"/>
|
2022-07-19 21:31:24 +02:00
|
|
|
<div class="misskey">Calckey</div>
|
2022-06-20 10:38:49 +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;">
|
2022-07-19 07:39:07 +02:00
|
|
|
{{ i18n.ts._aboutMisskey.about }}<br><a href="https://codeberg.org/thatonecalculator/calckey" target="_blank" class="_link">{{ i18n.ts.learnMore }}</a>
|
2021-11-28 12:07:37 +01:00
|
|
|
</div>
|
2022-06-20 10:38:49 +02:00
|
|
|
<div class="_formBlock" style="text-align: center;">
|
2022-07-19 07:32:20 +02:00
|
|
|
<MkButton primary rounded inline @click="iLoveMisskey">I <Mfm text="$[jelly ❤]"/> #Calckey</MkButton>
|
2021-11-28 12:07:37 +01:00
|
|
|
</div>
|
2022-06-20 10:38:49 +02:00
|
|
|
<FormSection>
|
|
|
|
<div class="_formLinks">
|
2022-11-22 05:16:26 +01:00
|
|
|
<FormLink to="https://codeberg.org/thatonecalculator/calckey" external>
|
2022-11-07 03:49:47 +01:00
|
|
|
<template #icon><i class="ph-code-bold ph-lg"></i></template>
|
2022-06-20 10:38:49 +02:00
|
|
|
{{ i18n.ts._aboutMisskey.source }}
|
2022-07-19 04:00:45 +02:00
|
|
|
<template #suffix>Codeberg</template>
|
2022-06-20 10:38:49 +02:00
|
|
|
</FormLink>
|
2022-11-19 08:33:03 +01:00
|
|
|
<FormLink to="https://liberapay.com/ThatOneCalculator" external>
|
|
|
|
<template #icon><i class="ph-money-bold ph-lg"></i></template>
|
|
|
|
{{ i18n.ts._aboutMisskey.donate }}
|
|
|
|
<template #suffix>Donate</template>
|
|
|
|
</FormLink>
|
2022-06-20 10:38:49 +02:00
|
|
|
</div>
|
|
|
|
</FormSection>
|
|
|
|
<FormSection>
|
|
|
|
<template #label>{{ i18n.ts._aboutMisskey.contributors }}</template>
|
|
|
|
<div class="_formLinks">
|
2022-12-07 00:32:08 +01:00
|
|
|
<FormLink to="/@t1c@i.calckey.cloud"><Mfm :text="'$[sparkle @t1c@i.calckey.cloud] (Main developer)'"/></FormLink>
|
2022-12-12 04:24:12 +01:00
|
|
|
<FormLink to="/@cleo@tech.lgbt"><Mfm :text="'@cleo@tech.lgbt (Maintainer)'"/></FormLink>
|
2022-12-07 00:32:08 +01:00
|
|
|
<FormLink to="/@syuilo@misskey.io"><Mfm :text="'@syuilo@misskey.io (Original Misskey developer)'"/></FormLink>
|
2022-08-08 23:14:33 +02:00
|
|
|
<FormLink to="https://www.youtube.com/c/Henkiwashere" external>Henki (error images artist)</FormLink>
|
2022-06-20 10:38:49 +02:00
|
|
|
</div>
|
2022-07-19 04:00:45 +02:00
|
|
|
<template #caption><MkLink url="https://codeberg.org/thatonecalculator/calckey/activity">{{ i18n.ts._aboutMisskey.allContributors }}</MkLink></template>
|
2022-06-20 10:38:49 +02:00
|
|
|
</FormSection>
|
|
|
|
<FormSection>
|
|
|
|
<template #label><Mfm text="$[jelly ❤]"/> {{ i18n.ts._aboutMisskey.patrons }}</template>
|
2022-11-19 08:26:43 +01:00
|
|
|
<MkSparkle>
|
|
|
|
<div v-for="patron in patrons" :key="patron" style="margin-bottom: 0.5rem">
|
2022-11-19 08:28:18 +01:00
|
|
|
<Mfm :text="`${patron}`"/>
|
2022-11-19 08:26:43 +01:00
|
|
|
</div>
|
|
|
|
</MkSparkle>
|
2022-06-20 10:38:49 +02:00
|
|
|
<template #caption>{{ i18n.ts._aboutMisskey.morePatrons }}</template>
|
|
|
|
</FormSection>
|
|
|
|
</div>
|
|
|
|
</MkSpacer>
|
|
|
|
</div>
|
|
|
|
</MkStickyContainer>
|
2020-02-12 18:48:52 +01:00
|
|
|
</template>
|
|
|
|
|
2022-01-21 13:16:12 +01:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { nextTick, onBeforeUnmount } from 'vue';
|
2021-11-11 18:02:25 +01:00
|
|
|
import { version } from '@/config';
|
2021-11-28 12:07:37 +01:00
|
|
|
import FormLink from '@/components/form/link.vue';
|
|
|
|
import FormSection from '@/components/form/section.vue';
|
2022-09-06 11:21:49 +02:00
|
|
|
import MkButton from '@/components/MkButton.vue';
|
2022-08-30 17:24:33 +02:00
|
|
|
import MkLink from '@/components/MkLink.vue';
|
2022-11-19 08:26:43 +01:00
|
|
|
import MkSparkle from '@/components/MkSparkle.vue';
|
2021-11-11 18:02:25 +01:00
|
|
|
import { physics } from '@/scripts/physics';
|
2022-01-21 13:16:12 +01:00
|
|
|
import { i18n } from '@/i18n';
|
|
|
|
import { defaultStore } from '@/store';
|
2022-01-21 13:26:39 +01:00
|
|
|
import * as os from '@/os';
|
2022-06-20 10:38:49 +02:00
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
2020-02-12 18:48:52 +01:00
|
|
|
|
2022-11-19 08:54:50 +01:00
|
|
|
const patrons = await os.api('patrons');
|
2020-11-28 03:52:57 +01:00
|
|
|
|
2022-01-21 13:16:12 +01:00
|
|
|
let easterEggReady = false;
|
|
|
|
let easterEggEmojis = $ref([]);
|
|
|
|
let easterEggEngine = $ref(null);
|
|
|
|
const containerEl = $ref<HTMLElement>();
|
|
|
|
|
|
|
|
function iconLoaded() {
|
|
|
|
const emojis = defaultStore.state.reactions;
|
|
|
|
const containerWidth = containerEl.offsetWidth;
|
|
|
|
for (let i = 0; i < 32; i++) {
|
|
|
|
easterEggEmojis.push({
|
|
|
|
id: i.toString(),
|
|
|
|
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
|
|
|
|
2022-01-21 13:16:12 +01:00
|
|
|
nextTick(() => {
|
|
|
|
easterEggReady = true;
|
|
|
|
});
|
|
|
|
}
|
2020-12-06 15:54:58 +01:00
|
|
|
|
2022-01-21 13:16:12 +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({
|
2022-07-19 07:32:20 +02:00
|
|
|
initialText: 'I $[jelly ❤] #Calckey',
|
2022-01-27 09:38:02 +01:00
|
|
|
instant: true,
|
2022-01-21 13:26:39 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-01-21 13:16:12 +01:00
|
|
|
onBeforeUnmount(() => {
|
|
|
|
if (easterEggEngine) {
|
|
|
|
easterEggEngine.stop();
|
2020-12-06 04:51:00 +01:00
|
|
|
}
|
2020-02-12 18:48:52 +01:00
|
|
|
});
|
2022-01-21 13:16:12 +01:00
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
const headerActions = $computed(() => []);
|
|
|
|
|
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
|
|
|
|
definePageMetadata({
|
|
|
|
title: i18n.ts.aboutMisskey,
|
|
|
|
icon: null,
|
2022-01-21 13:16:12 +01:00
|
|
|
});
|
2020-02-12 18:48:52 +01:00
|
|
|
</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 {
|
|
|
|
&, * {
|
|
|
|
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>
|