2020-02-12 18:48:52 +01:00
|
|
|
<template>
|
2020-12-06 04:51:00 +01:00
|
|
|
<div style="overflow: hidden;">
|
|
|
|
<FormBase class="znqjceqz">
|
|
|
|
<div id="debug"></div>
|
2020-12-06 15:54:58 +01:00
|
|
|
<section class="_formItem about">
|
|
|
|
<div class="_formPanel panel" :class="{ playing: easterEggEngine != null }" ref="about">
|
|
|
|
<img src="/assets/icons/512.png" alt="" class="icon" ref="icon" @load="iconLoaded" draggable="false"/>
|
|
|
|
<div class="misskey">Misskey</div>
|
|
|
|
<div class="version">v{{ version }}</div>
|
2020-12-19 02:55:52 +01:00
|
|
|
<span class="emoji" v-for="emoji in easterEggEmojis" :key="emoji.id" :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>
|
|
|
|
</section>
|
|
|
|
<section class="_formItem" style="text-align: center; padding: 0 16px;" @click="gravity">
|
|
|
|
{{ $t('_aboutMisskey.about') }}
|
|
|
|
</section>
|
|
|
|
<FormGroup>
|
|
|
|
<FormLink to="https://github.com/syuilo/misskey" external>
|
|
|
|
<template #icon><Fa :icon="faCode"/></template>
|
|
|
|
{{ $t('_aboutMisskey.source') }}
|
|
|
|
<template #suffix>GitHub</template>
|
|
|
|
</FormLink>
|
|
|
|
<FormLink to="https://crowdin.com/project/misskey" external>
|
|
|
|
<template #icon><Fa :icon="faLanguage"/></template>
|
|
|
|
{{ $t('_aboutMisskey.translation') }}
|
|
|
|
<template #suffix>Crowdin</template>
|
|
|
|
</FormLink>
|
|
|
|
<FormLink to="https://www.patreon.com/syuilo" external>
|
|
|
|
<template #icon><Fa :icon="faHandHoldingMedical"/></template>
|
|
|
|
{{ $t('_aboutMisskey.donate') }}
|
|
|
|
<template #suffix>Patreon</template>
|
|
|
|
</FormLink>
|
|
|
|
</FormGroup>
|
|
|
|
<FormGroup>
|
|
|
|
<template #label>{{ $t('_aboutMisskey.contributors') }}</template>
|
|
|
|
<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>
|
|
|
|
<template #caption><MkLink url="https://github.com/syuilo/misskey/graphs/contributors">{{ $t('_aboutMisskey.allContributors') }}</MkLink></template>
|
|
|
|
</FormGroup>
|
|
|
|
<FormGroup>
|
|
|
|
<template #label><Mfm text="[jelly ❤]"/> {{ $t('_aboutMisskey.patrons') }}</template>
|
|
|
|
<FormKeyValueView v-for="patron in patrons" :key="patron"><template #key>{{ patron }}</template></FormKeyValueView>
|
|
|
|
<template #caption>{{ $t('_aboutMisskey.morePatrons') }}</template>
|
|
|
|
</FormGroup>
|
|
|
|
</FormBase>
|
|
|
|
</div>
|
2020-02-12 18:48:52 +01:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2020-10-17 13:12:00 +02:00
|
|
|
import { defineComponent } from 'vue';
|
2020-11-28 03:52:57 +01:00
|
|
|
import { faInfoCircle, faCode, faLanguage, faHandHoldingMedical, } from '@fortawesome/free-solid-svg-icons';
|
2020-11-29 14:37:56 +01:00
|
|
|
import VanillaTilt from 'vanilla-tilt';
|
2020-10-17 13:12:00 +02:00
|
|
|
import { version } from '@/config';
|
2020-11-28 03:52:57 +01:00
|
|
|
import FormLink from '@/components/form/link.vue';
|
|
|
|
import FormBase from '@/components/form/base.vue';
|
|
|
|
import FormGroup from '@/components/form/group.vue';
|
|
|
|
import FormKeyValueView from '@/components/form/key-value-view.vue';
|
2020-10-17 13:12:00 +02:00
|
|
|
import MkLink from '@/components/link.vue';
|
2020-12-06 04:51:00 +01:00
|
|
|
import { physics } from '@/scripts/physics.ts';
|
2020-10-17 13:12:00 +02:00
|
|
|
import * as os from '@/os';
|
2020-02-12 18:48:52 +01:00
|
|
|
|
2020-11-28 03:52:57 +01:00
|
|
|
const patrons = [
|
|
|
|
'Satsuki Yanagi',
|
|
|
|
'noellabo',
|
|
|
|
'Gargron',
|
|
|
|
'Atsuko Tominaga',
|
|
|
|
'AureoleArk',
|
|
|
|
'naga_rus',
|
|
|
|
'Melilot',
|
|
|
|
'Hekovic',
|
|
|
|
'Nokotaro Takeda',
|
|
|
|
'dansup',
|
|
|
|
'nenohi',
|
|
|
|
'motcha',
|
|
|
|
'nanami kan',
|
|
|
|
'Eduardo Quiros',
|
|
|
|
'Peter G.',
|
|
|
|
'YUKIMOCHI',
|
|
|
|
'Efertone',
|
|
|
|
'makokunsan',
|
|
|
|
'mewl hayabusa',
|
|
|
|
'見当かなみ',
|
|
|
|
'natalie',
|
|
|
|
'takimura',
|
|
|
|
'sikyosyounin',
|
|
|
|
'weepjp',
|
|
|
|
'mydarkstar',
|
|
|
|
'Nesakko',
|
|
|
|
'sheeta.s',
|
|
|
|
'osapon',
|
|
|
|
'YuzuRyo61',
|
|
|
|
'wara',
|
|
|
|
'mkatze',
|
|
|
|
'kiritan',
|
|
|
|
'CG',
|
|
|
|
'Denshi',
|
|
|
|
'Osushimaru',
|
|
|
|
'Liaizon Wakest',
|
|
|
|
];
|
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
export default defineComponent({
|
2020-02-12 19:01:39 +01:00
|
|
|
components: {
|
2020-11-28 03:52:57 +01:00
|
|
|
FormBase,
|
|
|
|
FormGroup,
|
|
|
|
FormLink,
|
|
|
|
FormKeyValueView,
|
|
|
|
MkLink,
|
2020-02-12 19:01:39 +01:00
|
|
|
},
|
|
|
|
|
2020-02-12 18:48:52 +01:00
|
|
|
data() {
|
|
|
|
return {
|
2020-10-17 13:12:00 +02:00
|
|
|
INFO: {
|
2020-11-03 12:36:12 +01:00
|
|
|
title: this.$t('aboutMisskey'),
|
|
|
|
icon: null
|
2020-10-17 13:12:00 +02:00
|
|
|
},
|
2020-02-12 18:48:52 +01:00
|
|
|
version,
|
2020-11-28 03:52:57 +01:00
|
|
|
patrons,
|
2020-12-06 04:51:00 +01:00
|
|
|
easterEggReady: false,
|
|
|
|
easterEggEmojis: [],
|
|
|
|
easterEggEngine: null,
|
2020-11-28 03:52:57 +01:00
|
|
|
faInfoCircle, faCode, faLanguage, faHandHoldingMedical,
|
2020-02-12 18:48:52 +01:00
|
|
|
}
|
|
|
|
},
|
2020-11-29 14:37:56 +01:00
|
|
|
|
|
|
|
mounted() {
|
|
|
|
VanillaTilt.init(this.$refs.icon, {
|
|
|
|
max: 30,
|
|
|
|
perspective: 500,
|
|
|
|
scale: 1.125,
|
|
|
|
speed: 1000,
|
|
|
|
});
|
|
|
|
},
|
2020-12-06 04:51:00 +01:00
|
|
|
|
|
|
|
beforeUnmount() {
|
|
|
|
if (this.easterEggEngine) {
|
|
|
|
this.easterEggEngine.stop();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
iconLoaded() {
|
2020-12-19 02:55:52 +01:00
|
|
|
const emojis = this.$store.state.reactions;
|
2020-12-06 15:54:58 +01:00
|
|
|
const containerWidth = this.$refs.about.offsetWidth;
|
|
|
|
for (let i = 0; i < 32; i++) {
|
|
|
|
this.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
|
|
|
this.$nextTick(() => {
|
|
|
|
this.easterEggReady = true;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
gravity() {
|
|
|
|
if (!this.easterEggReady) return;
|
|
|
|
this.easterEggReady = false;
|
|
|
|
this.$refs.icon.vanillaTilt.destroy();
|
|
|
|
this.easterEggEngine = physics(this.$refs.about);
|
|
|
|
}
|
|
|
|
}
|
2020-02-12 18:48:52 +01:00
|
|
|
});
|
|
|
|
</script>
|
2020-11-28 03:52:57 +01:00
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.znqjceqz {
|
|
|
|
max-width: 800px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
margin: 0 auto;
|
2020-12-06 15:54:58 +01:00
|
|
|
|
|
|
|
> .about {
|
|
|
|
> .panel {
|
|
|
|
position: relative;
|
|
|
|
text-align: center;
|
|
|
|
padding: 16px;
|
|
|
|
|
|
|
|
&.playing {
|
|
|
|
&, * {
|
|
|
|
user-select: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
* {
|
|
|
|
will-change: transform;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .emoji {
|
|
|
|
visibility: visible;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .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;
|
|
|
|
|
|
|
|
> .emoji {
|
|
|
|
pointer-events: none;
|
|
|
|
font-size: 24px;
|
|
|
|
width: 24px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-11-28 03:52:57 +01:00
|
|
|
}
|
|
|
|
</style>
|