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

248 lines
6.2 KiB
Vue
Raw Normal View History

<template>
2021-04-12 07:16:30 +02:00
<div style="overflow: clip;">
2021-11-28 12:07:37 +01: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 }">
2021-11-19 11:36:12 +01:00
<img src="/client-assets/about-icon.png" alt="" class="icon" draggable="false" @load="iconLoaded" @click="gravity"/>
2020-12-06 15:54:58 +01:00
<div class="misskey">Misskey</div>
<div class="version">v{{ version }}</div>
2021-11-19 11:36:12 +01:00
<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>
2020-12-06 04:51:00 +01:00
</div>
2021-11-28 12:07:37 +01:00
<div class="_formBlock" style="text-align: center;">
{{ i18n.locale._aboutMisskey.about }}<br><a href="https://misskey-hub.net/docs/misskey.html" target="_blank" class="_link">{{ i18n.locale.learnMore }}</a>
2021-11-28 12:07:37 +01:00
</div>
<FormSection>
<div class="_formLinks">
<FormLink to="https://github.com/misskey-dev/misskey" external>
<template #icon><i class="fas fa-code"></i></template>
{{ i18n.locale._aboutMisskey.source }}
2021-11-28 12:07:37 +01:00
<template #suffix>GitHub</template>
</FormLink>
<FormLink to="https://crowdin.com/project/misskey" external>
<template #icon><i class="fas fa-language"></i></template>
{{ i18n.locale._aboutMisskey.translation }}
2021-11-28 12:07:37 +01:00
<template #suffix>Crowdin</template>
</FormLink>
<FormLink to="https://www.patreon.com/syuilo" external>
<template #icon><i class="fas fa-hand-holding-medical"></i></template>
{{ i18n.locale._aboutMisskey.donate }}
2021-11-28 12:07:37 +01:00
<template #suffix>Patreon</template>
</FormLink>
</div>
</FormSection>
<FormSection>
<template #label>{{ i18n.locale._aboutMisskey.contributors }}</template>
2021-11-28 12:07:37 +01:00
<div class="_formLinks">
<FormLink to="https://github.com/syuilo" external>@syuilo</FormLink>
<FormLink to="https://github.com/AyaMorisawa" external>@AyaMorisawa</FormLink>
<FormLink to="https://github.com/mei23" external>@mei23</FormLink>
<FormLink to="https://github.com/acid-chicken" external>@acid-chicken</FormLink>
<FormLink to="https://github.com/tamaina" external>@tamaina</FormLink>
<FormLink to="https://github.com/rinsuki" external>@rinsuki</FormLink>
<FormLink to="https://github.com/Xeltica" external>@Xeltica</FormLink>
<FormLink to="https://github.com/u1-liquid" external>@u1-liquid</FormLink>
<FormLink to="https://github.com/marihachi" external>@marihachi</FormLink>
</div>
<template #caption><MkLink url="https://github.com/misskey-dev/misskey/graphs/contributors">{{ i18n.locale._aboutMisskey.allContributors }}</MkLink></template>
2021-11-28 12:07:37 +01:00
</FormSection>
<FormSection>
<template #label><Mfm text="$[jelly ❤]"/> {{ i18n.locale._aboutMisskey.patrons }}</template>
2021-11-28 12:07:37 +01:00
<div v-for="patron in patrons" :key="patron">{{ patron }}</div>
<template #caption>{{ i18n.locale._aboutMisskey.morePatrons }}</template>
2021-11-28 12:07:37 +01:00
</FormSection>
</div>
</MkSpacer>
2020-12-06 04:51:00 +01:00
</div>
</template>
<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';
import MkKeyValue from '@/components/key-value.vue';
2021-11-11 18:02:25 +01:00
import MkLink from '@/components/link.vue';
import { physics } from '@/scripts/physics';
import * as symbols from '@/symbols';
import { i18n } from '@/i18n';
import { defaultStore } from '@/store';
2020-11-28 03:52:57 +01:00
const patrons = [
2021-12-09 13:30:02 +01:00
'まっちゃとーにゅ',
2021-08-10 12:34:53 +02:00
'mametsuko',
2021-12-09 13:30:02 +01:00
'noellabo',
2020-11-28 03:52:57 +01:00
'AureoleArk',
2021-08-10 12:34:53 +02:00
'Gargron',
2020-11-28 03:52:57 +01:00
'Nokotaro Takeda',
2021-08-10 12:34:53 +02:00
'Suji Yan',
2021-12-09 13:30:02 +01:00
'oi_yekssim',
'regtan',
2021-08-10 12:34:53 +02:00
'Hekovic',
2020-11-28 03:52:57 +01:00
'nenohi',
2021-12-09 13:30:02 +01:00
'Gitmo Life Services',
2021-08-10 12:34:53 +02:00
'naga_rus',
'Efertone',
2021-12-09 13:30:02 +01:00
'Melilot',
2021-08-10 12:34:53 +02:00
'motcha',
2021-12-09 13:30:02 +01:00
'nanami kan',
'sevvie Rose',
'Hayato Ishikawa',
'Puniko',
'skehmatics',
2021-08-10 12:34:53 +02:00
'Quinton Macejkovic',
2020-11-28 03:52:57 +01:00
'YUKIMOCHI',
2021-12-09 13:30:02 +01:00
'dansup',
2020-11-28 03:52:57 +01:00
'mewl hayabusa',
2021-12-09 13:30:02 +01:00
'Emilis',
'Fristi',
2021-08-10 12:34:53 +02:00
'makokunsan',
2021-12-09 13:30:02 +01:00
'chidori ninokura',
2021-08-10 12:34:53 +02:00
'Peter G.',
2020-11-28 03:52:57 +01:00
'見当かなみ',
'natalie',
2021-12-09 13:30:02 +01:00
'Maronu',
'Steffen K9',
2020-11-28 03:52:57 +01:00
'takimura',
'sikyosyounin',
2021-12-09 13:30:02 +01:00
'Nesakko',
2021-08-10 12:34:53 +02:00
'YuzuRyo61',
2021-12-09 13:30:02 +01:00
'blackskye',
2020-11-28 03:52:57 +01:00
'sheeta.s',
'osapon',
2021-12-09 13:30:02 +01:00
'public_yusuke',
2020-11-28 03:52:57 +01:00
'CG',
2021-12-09 13:30:02 +01:00
'吴浥',
't_w',
'Jerry',
2021-08-10 12:34:53 +02:00
'nafuchoco',
'Takumi Sugita',
2021-12-09 13:30:02 +01:00
'GLaTAN',
'mkatze',
2021-08-10 12:34:53 +02:00
'kabo2468y',
2021-12-09 13:30:02 +01:00
'mydarkstar',
2021-08-10 12:34:53 +02:00
'Roujo',
2021-12-09 13:30:02 +01:00
'DignifiedSilence',
2021-08-10 12:34:53 +02:00
'uroco @99',
'totokoro',
2021-12-09 13:30:02 +01:00
'うし',
'kiritan',
'weepjp',
'Liaizon Wakest',
'Duponin',
'Blue',
'Naoki Hirayama',
2021-08-10 12:34:53 +02:00
'wara',
2021-12-09 13:30:02 +01:00
'Wataru Manji (manji0)',
'みなしま',
'kanoy',
'xianon',
2020-11-28 03:52:57 +01:00
'Denshi',
'Osushimaru',
2021-12-09 13:30:02 +01:00
'にょんへら',
'おのだい',
'Leni',
'oss',
'Weeble',
'蝉暮せせせ',
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;
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
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
onBeforeUnmount(() => {
if (easterEggEngine) {
easterEggEngine.stop();
2020-12-06 04:51:00 +01:00
}
});
defineExpose({
[symbols.PAGE_INFO]: {
title: i18n.locale.aboutMisskey,
icon: null,
bg: 'var(--bg)',
},
});
</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>