364 lines
7.4 KiB
Vue
364 lines
7.4 KiB
Vue
<template>
|
|
<div class="mk-app">
|
|
<div class="side" v-if="!narrow">
|
|
<div :style="{ backgroundImage: `url(${ $store.state.instance.meta.backgroundImageUrl })` }">
|
|
<div class="fade"></div>
|
|
<h1 v-if="meta"><img class="logo" v-if="meta.logoImageUrl" :src="meta.logoImageUrl"><span v-else class="text">{{ instanceName }}</span></h1>
|
|
<div class="about _panel" v-if="meta">
|
|
<div class="desc" v-html="meta.description || $t('introMisskey')"></div>
|
|
</div>
|
|
<div class="action">
|
|
<button class="_buttonPrimary" @click="signup()">{{ $t('signup') }}</button>
|
|
<button class="_button" @click="signin()">{{ $t('login') }}</button>
|
|
</div>
|
|
<div class="announcements panel">
|
|
<header>{{ $t('announcements') }}</header>
|
|
<MkPagination :pagination="announcements" #default="{items}" class="list">
|
|
<section class="item" v-for="(announcement, i) in items" :key="announcement.id">
|
|
<div class="title">{{ announcement.title }}</div>
|
|
<div class="content">
|
|
<Mfm :text="announcement.text"/>
|
|
<img v-if="announcement.imageUrl" :src="announcement.imageUrl"/>
|
|
</div>
|
|
</section>
|
|
</MkPagination>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="main">
|
|
<div v-if="narrow" class="banner" :style="{ backgroundImage: `url(${ $store.state.instance.meta.bannerUrl })` }">
|
|
<h1 v-if="meta"><img class="logo" v-if="meta.logoImageUrl" :src="meta.logoImageUrl"><span v-else class="text">{{ instanceName }}</span></h1>
|
|
</div>
|
|
|
|
<div class="contents" ref="contents" :class="{ wallpaper }">
|
|
<header class="header" ref="header" v-show="$route.path !== '/'">
|
|
<XHeader :info="pageInfo"/>
|
|
</header>
|
|
<main ref="main">
|
|
<router-view v-slot="{ Component }">
|
|
<transition :name="$store.state.device.animation ? 'page' : ''" mode="out-in" @enter="onTransition">
|
|
<component :is="Component" :ref="changePage"/>
|
|
</transition>
|
|
</router-view>
|
|
</main>
|
|
<div class="powered-by">
|
|
<b><MkA to="/">{{ host }}</MkA></b>
|
|
<small>Powered by <a href="https://github.com/syuilo/misskey" target="_blank">Misskey</a></small>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent, defineAsyncComponent } from 'vue';
|
|
import { } from '@fortawesome/free-solid-svg-icons';
|
|
import { host, instanceName } from '@/config';
|
|
import { search } from '@/scripts/search';
|
|
import * as os from '@/os';
|
|
import MkPagination from '@/components/ui/pagination.vue';
|
|
import XSigninDialog from '@/components/signin-dialog.vue';
|
|
import XSignupDialog from '@/components/signup-dialog.vue';
|
|
import MkButton from '@/components/ui/button.vue';
|
|
import XHeader from '../_common_/header.vue';
|
|
|
|
const DESKTOP_THRESHOLD = 1100;
|
|
|
|
export default defineComponent({
|
|
components: {
|
|
XHeader,
|
|
MkPagination,
|
|
MkButton,
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
host,
|
|
instanceName,
|
|
pageKey: 0,
|
|
pageInfo: null,
|
|
meta: null,
|
|
narrow: window.innerWidth < 1280,
|
|
announcements: {
|
|
endpoint: 'announcements',
|
|
limit: 10,
|
|
},
|
|
isDesktop: window.innerWidth >= DESKTOP_THRESHOLD,
|
|
};
|
|
},
|
|
|
|
computed: {
|
|
keymap(): any {
|
|
return {
|
|
'd': () => {
|
|
if (this.$store.state.device.syncDeviceDarkMode) return;
|
|
this.$store.commit('device/set', { key: 'darkMode', value: !this.$store.state.device.darkMode });
|
|
},
|
|
's': search,
|
|
'h|/': this.help
|
|
};
|
|
},
|
|
},
|
|
|
|
watch: {
|
|
$route(to, from) {
|
|
this.pageKey++;
|
|
},
|
|
},
|
|
|
|
created() {
|
|
document.documentElement.style.overflowY = 'scroll';
|
|
|
|
os.api('meta', { detail: true }).then(meta => {
|
|
this.meta = meta;
|
|
});
|
|
},
|
|
|
|
mounted() {
|
|
if (!this.isDesktop) {
|
|
window.addEventListener('resize', () => {
|
|
if (window.innerWidth >= DESKTOP_THRESHOLD) this.isDesktop = true;
|
|
}, { passive: true });
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
changePage(page) {
|
|
if (page == null) return;
|
|
if (page.INFO) {
|
|
this.pageInfo = page.INFO;
|
|
}
|
|
},
|
|
|
|
top() {
|
|
window.scroll({ top: 0, behavior: 'smooth' });
|
|
},
|
|
|
|
help() {
|
|
this.$router.push('/docs/keyboard-shortcut');
|
|
},
|
|
|
|
onTransition() {
|
|
if (window._scroll) window._scroll();
|
|
},
|
|
|
|
signin() {
|
|
os.popup(XSigninDialog, {
|
|
autoSet: true
|
|
}, {}, 'closed');
|
|
},
|
|
|
|
signup() {
|
|
os.popup(XSignupDialog, {
|
|
autoSet: true
|
|
}, {}, 'closed');
|
|
}
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.mk-app {
|
|
display: flex;
|
|
min-height: 100vh;
|
|
|
|
> .side {
|
|
width: 500px;
|
|
height: 100vh;
|
|
text-align: center;
|
|
|
|
> div {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 500px;
|
|
height: 100vh;
|
|
overflow: auto;
|
|
background-position: center;
|
|
background-size: cover;
|
|
|
|
> .panel {
|
|
-webkit-backdrop-filter: blur(8px);
|
|
backdrop-filter: blur(8px);
|
|
background: rgba(0, 0, 0, 0.5);
|
|
border-radius: var(--radius);
|
|
|
|
&, * {
|
|
color: #fff !important;
|
|
}
|
|
}
|
|
|
|
> .fade {
|
|
position: absolute;
|
|
z-index: -1;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 300px;
|
|
background: linear-gradient(rgba(#000, 0.5), transparent);
|
|
}
|
|
|
|
> h1 {
|
|
display: block;
|
|
margin: 0;
|
|
padding: 64px 32px 48px 32px;
|
|
color: #fff;
|
|
|
|
> .logo {
|
|
vertical-align: bottom;
|
|
max-height: 150px;
|
|
}
|
|
}
|
|
|
|
> .about {
|
|
display: block;
|
|
margin: 0 64px 16px 64px;
|
|
padding: 24px;
|
|
text-align: center;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
> .action {
|
|
padding: 0 64px;
|
|
|
|
> button {
|
|
display: block;
|
|
width: 100%;
|
|
padding: 10px;
|
|
box-sizing: border-box;
|
|
text-align: center;
|
|
border-radius: 999px;
|
|
|
|
&._button {
|
|
background: var(--panel);
|
|
}
|
|
|
|
&:first-child {
|
|
margin-bottom: 16px;
|
|
}
|
|
}
|
|
}
|
|
|
|
> .announcements {
|
|
margin: 64px 64px 16px 64px;
|
|
text-align: left;
|
|
|
|
> header {
|
|
padding: 12px 16px;
|
|
border-bottom: solid 1px rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
> .list {
|
|
max-height: 300px;
|
|
overflow: auto;
|
|
|
|
> .item {
|
|
padding: 12px 16px;
|
|
|
|
& + .item {
|
|
border-top: solid 1px rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
> .title {
|
|
font-weight: bold;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
> .main {
|
|
flex: 1;
|
|
|
|
> header {
|
|
position: relative;
|
|
z-index: 1;
|
|
background: var(--panel);
|
|
padding: 0 32px;
|
|
text-align: left;
|
|
overflow: auto;
|
|
white-space: nowrap;
|
|
|
|
> .link {
|
|
display: inline-block;
|
|
line-height: 60px;
|
|
padding: 0 0.7em;
|
|
|
|
&.MkA-active {
|
|
box-shadow: 0 -2px 0 0 var(--accent) inset;
|
|
}
|
|
}
|
|
}
|
|
|
|
> .banner {
|
|
position: relative;
|
|
width: 100%;
|
|
height: 200px;
|
|
background-size: cover;
|
|
background-position: center;
|
|
|
|
&:after {
|
|
content: "";
|
|
display: block;
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 64px;
|
|
background: linear-gradient(transparent, var(--bg));
|
|
}
|
|
|
|
> h1 {
|
|
margin: 0;
|
|
padding: 32px;
|
|
text-align: center;
|
|
color: #fff;
|
|
text-shadow: 0 0 8px #000;
|
|
|
|
> .logo {
|
|
vertical-align: bottom;
|
|
max-height: 150px;
|
|
}
|
|
}
|
|
}
|
|
|
|
> .contents {
|
|
position: relative;
|
|
z-index: 1;
|
|
|
|
> .header {
|
|
position: sticky;
|
|
top: 0;
|
|
left: 0;
|
|
z-index: 1000;
|
|
height: 60px;
|
|
width: 100%;
|
|
line-height: 60px;
|
|
text-align: center;
|
|
-webkit-backdrop-filter: blur(32px);
|
|
backdrop-filter: blur(32px);
|
|
background-color: var(--header);
|
|
border-bottom: 1px solid var(--divider);
|
|
}
|
|
|
|
> .powered-by {
|
|
padding: 28px;
|
|
font-size: 14px;
|
|
text-align: center;
|
|
border-top: 1px solid var(--divider);
|
|
|
|
> small {
|
|
display: block;
|
|
margin-top: 8px;
|
|
opacity: 0.5;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style>
|
|
|
|
<style lang="scss">
|
|
</style>
|