mirror of
https://github.com/paricafe/misskey.git
synced 2024-11-26 02:56:43 -06:00
0044d83801
* wip * wip * wip * wip * Update ja-JP.yml * wip * wip * wip
108 lines
2.2 KiB
Vue
108 lines
2.2 KiB
Vue
<template>
|
|
<div class="rsqzvsbo _section" v-if="meta">
|
|
<div class="about">
|
|
<h1>{{ instanceName }}</h1>
|
|
<div class="desc" v-html="meta.description || $t('introMisskey')"></div>
|
|
<MkButton @click="signup()" style="display: inline-block; margin-right: 16px;" primary>{{ $t('signup') }}</MkButton>
|
|
<MkButton @click="signin()" style="display: inline-block;">{{ $t('login') }}</MkButton>
|
|
</div>
|
|
<div class="blocks">
|
|
<XBlock class="block" v-for="path in meta.pinnedPages" :initial-path="path" :key="path"/>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent } from 'vue';
|
|
import { toUnicode } from 'punycode';
|
|
import XSigninDialog from '@/components/signin-dialog.vue';
|
|
import XSignupDialog from '@/components/signup-dialog.vue';
|
|
import MkButton from '@/components/ui/button.vue';
|
|
import XNotes from '@/components/notes.vue';
|
|
import XBlock from './welcome.entrance.block.vue';
|
|
import { host, instanceName } from '@/config';
|
|
import * as os from '@/os';
|
|
|
|
export default defineComponent({
|
|
components: {
|
|
MkButton,
|
|
XNotes,
|
|
XBlock,
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
host: toUnicode(host),
|
|
instanceName,
|
|
meta: null,
|
|
};
|
|
},
|
|
|
|
created() {
|
|
os.api('meta', { detail: true }).then(meta => {
|
|
this.meta = meta;
|
|
});
|
|
|
|
os.api('stats').then(stats => {
|
|
this.stats = stats;
|
|
});
|
|
},
|
|
|
|
methods: {
|
|
signin() {
|
|
os.popup(XSigninDialog, {
|
|
autoSet: true
|
|
}, {}, 'closed');
|
|
},
|
|
|
|
signup() {
|
|
os.popup(XSignupDialog, {
|
|
autoSet: true
|
|
}, {}, 'closed');
|
|
}
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.rsqzvsbo {
|
|
text-align: center;
|
|
|
|
> .about {
|
|
display: inline-block;
|
|
padding: 24px;
|
|
margin-bottom: var(--margin);
|
|
-webkit-backdrop-filter: blur(8px);
|
|
backdrop-filter: blur(8px);
|
|
background: rgba(0, 0, 0, 0.5);
|
|
border-radius: var(--radius);
|
|
text-align: center;
|
|
box-sizing: border-box;
|
|
min-width: 300px;
|
|
max-width: 800px;
|
|
|
|
&, * {
|
|
color: #fff !important;
|
|
}
|
|
|
|
> h1 {
|
|
margin: 0 0 16px 0;
|
|
}
|
|
}
|
|
|
|
> .blocks {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
|
|
grid-gap: var(--margin);
|
|
text-align: left;
|
|
|
|
> .block {
|
|
height: 600px;
|
|
}
|
|
|
|
@media (max-width: 800px) {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
}
|
|
}
|
|
</style>
|