2020-10-17 13:12:00 +02:00
|
|
|
<template>
|
2020-12-30 05:07:16 +01:00
|
|
|
<div class="rsqzvsbo" v-if="meta">
|
|
|
|
<div class="top">
|
2020-12-30 16:22:20 +01:00
|
|
|
<MkFeaturedPhotos class="bg"/>
|
|
|
|
<XTimeline class="tl"/>
|
2020-12-30 11:24:01 +01:00
|
|
|
<div class="shape"></div>
|
2020-12-30 16:22:20 +01:00
|
|
|
<div class="main">
|
|
|
|
<h1>
|
|
|
|
<img class="logo" v-if="meta.logoImageUrl" :src="meta.logoImageUrl"><span v-else class="text">{{ instanceName }}</span>
|
|
|
|
</h1>
|
|
|
|
<div class="about">
|
|
|
|
<div class="desc" v-html="meta.description || $ts.headlineMisskey"></div>
|
|
|
|
</div>
|
|
|
|
<div class="action">
|
|
|
|
<MkButton class="signup" @click="signup()" inline primary>{{ $ts.signup }}</MkButton>
|
|
|
|
<MkButton class="signin" @click="signin()" inline>{{ $ts.login }}</MkButton>
|
2020-12-30 05:07:16 +01:00
|
|
|
</div>
|
2020-12-31 03:46:07 +01:00
|
|
|
<div class="status" v-if="onlineUsersCount && stats">
|
|
|
|
<div>
|
|
|
|
<I18n :src="$ts.nUsers" text-tag="span" class="users">
|
|
|
|
<template #n><b>{{ number(stats.originalUsersCount) }}</b></template>
|
|
|
|
</I18n>
|
|
|
|
<I18n :src="$ts.nNotes" text-tag="span" class="notes">
|
|
|
|
<template #n><b>{{ number(stats.originalNotesCount) }}</b></template>
|
|
|
|
</I18n>
|
|
|
|
</div>
|
2020-12-30 16:22:20 +01:00
|
|
|
<I18n :src="$ts.onlineUsersCount" text-tag="span" class="online">
|
|
|
|
<template #n><b>{{ onlineUsersCount }}</b></template>
|
|
|
|
</I18n>
|
2020-12-30 05:07:16 +01:00
|
|
|
</div>
|
2020-12-05 10:18:37 +01:00
|
|
|
</div>
|
2021-03-07 06:40:57 +01:00
|
|
|
<img src="/static-assets/client/misskey.svg" class="misskey"/>
|
2020-12-05 10:18:37 +01:00
|
|
|
</div>
|
2020-10-17 13:12:00 +02:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import { defineComponent } from 'vue';
|
2021-04-04 06:00:39 +02:00
|
|
|
import { toUnicode } from 'punycode/';
|
2021-03-23 09:30:14 +01:00
|
|
|
import XSigninDialog from '@client/components/signin-dialog.vue';
|
|
|
|
import XSignupDialog from '@client/components/signup-dialog.vue';
|
|
|
|
import MkButton from '@client/components/ui/button.vue';
|
|
|
|
import XNote from '@client/components/note.vue';
|
|
|
|
import MkFeaturedPhotos from '@client/components/featured-photos.vue';
|
2020-12-30 16:22:20 +01:00
|
|
|
import XTimeline from './welcome.timeline.vue';
|
2021-03-23 09:30:14 +01:00
|
|
|
import { host, instanceName } from '@client/config';
|
|
|
|
import * as os from '@client/os';
|
|
|
|
import number from '@client/filters/number';
|
2020-10-17 13:12:00 +02:00
|
|
|
|
|
|
|
export default defineComponent({
|
|
|
|
components: {
|
|
|
|
MkButton,
|
2020-12-05 08:05:40 +01:00
|
|
|
XNote,
|
2020-12-30 16:22:20 +01:00
|
|
|
XTimeline,
|
|
|
|
MkFeaturedPhotos,
|
2020-10-17 13:12:00 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
host: toUnicode(host),
|
2020-11-17 06:59:15 +01:00
|
|
|
instanceName,
|
|
|
|
meta: null,
|
2020-12-05 10:18:37 +01:00
|
|
|
stats: null,
|
|
|
|
tags: [],
|
2020-12-30 05:07:16 +01:00
|
|
|
onlineUsersCount: null,
|
2020-10-17 13:12:00 +02:00
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
created() {
|
2020-11-17 06:59:15 +01:00
|
|
|
os.api('meta', { detail: true }).then(meta => {
|
|
|
|
this.meta = meta;
|
|
|
|
});
|
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
os.api('stats').then(stats => {
|
|
|
|
this.stats = stats;
|
|
|
|
});
|
2020-12-05 10:18:37 +01:00
|
|
|
|
2020-12-30 05:07:16 +01:00
|
|
|
os.api('get-online-users-count').then(res => {
|
|
|
|
this.onlineUsersCount = res.count;
|
|
|
|
});
|
|
|
|
|
2020-12-05 10:18:37 +01:00
|
|
|
os.api('hashtags/list', {
|
|
|
|
sort: '+mentionedLocalUsers',
|
|
|
|
limit: 8
|
|
|
|
}).then(tags => {
|
|
|
|
this.tags = tags;
|
|
|
|
});
|
2020-10-17 13:12:00 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
signin() {
|
|
|
|
os.popup(XSigninDialog, {
|
|
|
|
autoSet: true
|
|
|
|
}, {}, 'closed');
|
|
|
|
},
|
|
|
|
|
|
|
|
signup() {
|
|
|
|
os.popup(XSignupDialog, {
|
|
|
|
autoSet: true
|
|
|
|
}, {}, 'closed');
|
2020-12-05 10:18:37 +01:00
|
|
|
},
|
|
|
|
|
2020-12-30 05:07:16 +01:00
|
|
|
showMenu(ev) {
|
|
|
|
os.modalMenu([{
|
|
|
|
text: this.$t('aboutX', { x: instanceName }),
|
2021-04-20 16:22:59 +02:00
|
|
|
icon: 'fas fa-info-circle',
|
2020-12-30 05:07:16 +01:00
|
|
|
action: () => {
|
|
|
|
os.pageWindow('/about');
|
|
|
|
}
|
|
|
|
}, {
|
|
|
|
text: this.$ts.aboutMisskey,
|
2021-04-20 16:22:59 +02:00
|
|
|
icon: 'fas fa-info-circle',
|
2020-12-30 05:07:16 +01:00
|
|
|
action: () => {
|
|
|
|
os.pageWindow('/about-misskey');
|
|
|
|
}
|
|
|
|
}, null, {
|
|
|
|
text: this.$ts.help,
|
2021-04-20 16:22:59 +02:00
|
|
|
icon: 'fas fa-question-circle',
|
2020-12-30 05:07:16 +01:00
|
|
|
action: () => {
|
|
|
|
os.pageWindow('/docs');
|
|
|
|
}
|
|
|
|
}], ev.currentTarget || ev.target);
|
|
|
|
},
|
|
|
|
|
2020-12-05 10:18:37 +01:00
|
|
|
number
|
2020-10-17 13:12:00 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.rsqzvsbo {
|
2020-12-30 05:07:16 +01:00
|
|
|
> .top {
|
|
|
|
min-height: 100vh;
|
|
|
|
box-sizing: border-box;
|
2020-12-30 16:22:20 +01:00
|
|
|
|
|
|
|
> .bg {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .tl {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
right: 64px;
|
|
|
|
margin: auto;
|
|
|
|
width: 500px;
|
|
|
|
height: calc(100% - 128px);
|
2021-03-02 14:57:16 +01:00
|
|
|
overflow: hidden;
|
2020-12-30 16:22:20 +01:00
|
|
|
-webkit-mask-image: linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 128px, rgba(0,0,0,1) calc(100% - 128px), rgba(0,0,0,0) 100%);
|
|
|
|
mask-image: linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 128px, rgba(0,0,0,1) calc(100% - 128px), rgba(0,0,0,0) 100%);
|
|
|
|
}
|
2020-12-30 05:07:16 +01:00
|
|
|
|
2020-12-30 11:24:01 +01:00
|
|
|
> .shape {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
background: var(--accent);
|
2020-12-30 16:22:20 +01:00
|
|
|
clip-path: polygon(0% 0%, 40% 0%, 22% 100%, 0% 100%);
|
2020-12-30 11:24:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
> .misskey {
|
|
|
|
position: absolute;
|
2020-12-30 16:22:20 +01:00
|
|
|
bottom: 64px;
|
|
|
|
left: 64px;
|
2020-12-30 11:24:01 +01:00
|
|
|
width: 160px;
|
|
|
|
}
|
|
|
|
|
2020-12-30 05:07:16 +01:00
|
|
|
> .main {
|
|
|
|
position: relative;
|
2020-12-31 03:46:07 +01:00
|
|
|
width: min(450px, 100%);
|
2020-12-30 16:22:20 +01:00
|
|
|
padding: 64px;
|
|
|
|
color: #fff;
|
|
|
|
font-size: 1.1em;
|
2020-12-30 05:07:16 +01:00
|
|
|
|
2020-12-30 11:24:01 +01:00
|
|
|
@media (max-width: 1200px) {
|
|
|
|
margin: auto;
|
|
|
|
}
|
|
|
|
|
2020-12-30 16:22:20 +01:00
|
|
|
> h1 {
|
|
|
|
display: block;
|
2020-12-31 03:46:07 +01:00
|
|
|
margin: 0 0 32px 0;
|
2020-12-30 16:22:20 +01:00
|
|
|
padding: 0;
|
|
|
|
|
|
|
|
> .logo {
|
|
|
|
vertical-align: bottom;
|
|
|
|
max-height: 100px;
|
2020-12-30 05:07:16 +01:00
|
|
|
}
|
2020-12-05 10:18:37 +01:00
|
|
|
}
|
|
|
|
|
2020-12-30 16:22:20 +01:00
|
|
|
> .about {
|
|
|
|
padding: 0;
|
|
|
|
}
|
2020-12-05 10:18:37 +01:00
|
|
|
|
2020-12-30 16:22:20 +01:00
|
|
|
> .action {
|
|
|
|
margin: 32px 0;
|
2020-12-05 10:18:37 +01:00
|
|
|
|
2020-12-31 03:46:07 +01:00
|
|
|
> * {
|
|
|
|
line-height: 32px;
|
|
|
|
}
|
|
|
|
|
2020-12-30 16:22:20 +01:00
|
|
|
> .signup {
|
|
|
|
background: var(--panel);
|
|
|
|
color: var(--fg);
|
2020-12-05 10:18:37 +01:00
|
|
|
}
|
|
|
|
|
2020-12-30 16:22:20 +01:00
|
|
|
> .signin {
|
|
|
|
background: var(--accent);
|
|
|
|
color: inherit;
|
2020-12-30 05:07:16 +01:00
|
|
|
}
|
2020-12-30 16:22:20 +01:00
|
|
|
}
|
2020-12-30 05:07:16 +01:00
|
|
|
|
2020-12-30 16:22:20 +01:00
|
|
|
> .status {
|
|
|
|
margin: 32px 0;
|
2020-12-31 03:46:07 +01:00
|
|
|
border-top: solid 1px rgba(255, 255, 255, 0.5);
|
|
|
|
font-size: 90%;
|
2020-12-05 10:18:37 +01:00
|
|
|
|
2020-12-31 03:46:07 +01:00
|
|
|
> div {
|
|
|
|
padding: 16px 0;
|
2020-12-30 05:07:16 +01:00
|
|
|
|
2020-12-31 03:46:07 +01:00
|
|
|
> span:not(:last-child) {
|
|
|
|
padding-right: 1em;
|
|
|
|
margin-right: 1em;
|
|
|
|
border-right: solid 1px rgba(255, 255, 255, 0.5);
|
|
|
|
}
|
2020-12-30 05:07:16 +01:00
|
|
|
}
|
2020-12-05 10:18:37 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-12-05 08:05:40 +01:00
|
|
|
}
|
2020-10-17 13:12:00 +02:00
|
|
|
</style>
|