2020-11-29 01:25:44 -06:00
|
|
|
<template>
|
2020-12-18 19:55:52 -06:00
|
|
|
<div class="rwqkcmrc" :style="{ backgroundImage: transparent ? 'none' : `url(${ $instance.backgroundImageUrl })` }">
|
2020-12-05 01:05:40 -06:00
|
|
|
<div class="back" :class="{ transparent }"></div>
|
2020-11-29 01:25:44 -06:00
|
|
|
<div class="contents">
|
|
|
|
<div class="wrapper">
|
|
|
|
<h1 v-if="meta" :class="{ full }">
|
2021-11-19 04:36:12 -06:00
|
|
|
<MkA to="/" class="link"><img v-if="meta.logoImageUrl" class="logo" :src="meta.logoImageUrl"><span v-else class="text">{{ instanceName }}</span></MkA>
|
2020-11-29 01:25:44 -06:00
|
|
|
</h1>
|
|
|
|
<template v-if="full">
|
2021-11-19 04:36:12 -06:00
|
|
|
<div v-if="meta" class="about">
|
2020-12-25 19:47:36 -06:00
|
|
|
<div class="desc" v-html="meta.description || $ts.introMisskey"></div>
|
2020-11-29 01:25:44 -06:00
|
|
|
</div>
|
|
|
|
<div class="action">
|
2020-12-25 19:47:36 -06:00
|
|
|
<button class="_buttonPrimary" @click="signup()">{{ $ts.signup }}</button>
|
|
|
|
<button class="_button" @click="signin()">{{ $ts.login }}</button>
|
2020-11-29 01:25:44 -06:00
|
|
|
</div>
|
|
|
|
<div class="announcements panel">
|
2020-12-25 19:47:36 -06:00
|
|
|
<header>{{ $ts.announcements }}</header>
|
2021-12-02 05:09:12 -06:00
|
|
|
<MkPagination v-slot="{items}" :pagination="announcements" class="list">
|
2021-11-19 04:36:12 -06:00
|
|
|
<section v-for="announcement in items" :key="announcement.id" class="item">
|
2020-11-29 01:25:44 -06:00
|
|
|
<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>
|
2021-11-19 04:36:12 -06:00
|
|
|
<div v-if="poweredBy" class="powered-by">
|
2020-12-05 01:05:40 -06:00
|
|
|
<b><MkA to="/">{{ host }}</MkA></b>
|
2021-03-23 22:23:05 -05:00
|
|
|
<small>Powered by <a href="https://github.com/misskey-dev/misskey" target="_blank">Misskey</a></small>
|
2020-12-05 01:05:40 -06:00
|
|
|
</div>
|
2020-11-29 01:25:44 -06:00
|
|
|
</template>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import { defineComponent, defineAsyncComponent } from 'vue';
|
2021-11-11 11:02:25 -06:00
|
|
|
import { host, instanceName } from '@/config';
|
|
|
|
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';
|
2020-11-29 01:25:44 -06:00
|
|
|
|
|
|
|
export default defineComponent({
|
|
|
|
components: {
|
|
|
|
MkPagination,
|
|
|
|
MkButton,
|
|
|
|
},
|
|
|
|
|
|
|
|
props: {
|
2020-12-05 01:05:40 -06:00
|
|
|
full: {
|
2020-11-29 01:25:44 -06:00
|
|
|
type: Boolean,
|
|
|
|
required: false,
|
|
|
|
default: false,
|
2020-12-05 01:05:40 -06:00
|
|
|
},
|
|
|
|
transparent: {
|
|
|
|
type: Boolean,
|
|
|
|
required: false,
|
|
|
|
default: false,
|
|
|
|
},
|
|
|
|
poweredBy: {
|
|
|
|
type: Boolean,
|
|
|
|
required: false,
|
|
|
|
default: false,
|
|
|
|
},
|
2020-11-29 01:25:44 -06:00
|
|
|
},
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
host,
|
|
|
|
instanceName,
|
|
|
|
pageInfo: null,
|
|
|
|
meta: null,
|
|
|
|
narrow: window.innerWidth < 1280,
|
|
|
|
announcements: {
|
|
|
|
endpoint: 'announcements',
|
|
|
|
limit: 10,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
created() {
|
|
|
|
os.api('meta', { detail: true }).then(meta => {
|
|
|
|
this.meta = meta;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
signin() {
|
|
|
|
os.popup(XSigninDialog, {
|
|
|
|
autoSet: true
|
|
|
|
}, {}, 'closed');
|
|
|
|
},
|
|
|
|
|
|
|
|
signup() {
|
|
|
|
os.popup(XSignupDialog, {
|
|
|
|
autoSet: true
|
|
|
|
}, {}, 'closed');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.rwqkcmrc {
|
|
|
|
position: relative;
|
|
|
|
text-align: center;
|
|
|
|
background-position: center;
|
|
|
|
background-size: cover;
|
|
|
|
// TODO: パララックスにしたい
|
|
|
|
|
|
|
|
> .back {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2020-12-05 01:05:40 -06:00
|
|
|
background: rgba(0, 0, 0, 0.3);
|
2020-11-29 01:25:44 -06:00
|
|
|
|
2020-12-05 01:05:40 -06:00
|
|
|
&.transparent {
|
2021-08-11 08:34:45 -05:00
|
|
|
-webkit-backdrop-filter: var(--blur, blur(12px));
|
|
|
|
backdrop-filter: var(--blur, blur(12px));
|
2020-12-05 01:05:40 -06:00
|
|
|
}
|
2020-11-29 01:25:44 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
> .contents {
|
|
|
|
position: relative;
|
|
|
|
z-index: 1;
|
|
|
|
height: inherit;
|
|
|
|
overflow: auto;
|
|
|
|
|
|
|
|
> .wrapper {
|
|
|
|
max-width: 380px;
|
|
|
|
padding: 0 16px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
margin: 0 auto;
|
|
|
|
|
|
|
|
> .panel {
|
2021-08-11 08:34:45 -05:00
|
|
|
-webkit-backdrop-filter: var(--blur, blur(8px));
|
|
|
|
backdrop-filter: var(--blur, blur(8px));
|
2020-11-29 01:25:44 -06:00
|
|
|
background: rgba(0, 0, 0, 0.5);
|
|
|
|
border-radius: var(--radius);
|
|
|
|
|
|
|
|
&, * {
|
|
|
|
color: #fff !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> h1 {
|
|
|
|
display: block;
|
|
|
|
margin: 0;
|
|
|
|
padding: 32px 0 32px 0;
|
|
|
|
color: #fff;
|
|
|
|
|
|
|
|
&.full {
|
|
|
|
padding: 64px 0 0 0;
|
|
|
|
|
|
|
|
> .link {
|
|
|
|
> ::v-deep(.logo) {
|
|
|
|
max-height: 130px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .link {
|
|
|
|
display: block;
|
|
|
|
|
|
|
|
> ::v-deep(.logo) {
|
|
|
|
vertical-align: bottom;
|
|
|
|
max-height: 100px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .about {
|
|
|
|
display: block;
|
|
|
|
margin: 24px 0;
|
|
|
|
text-align: center;
|
|
|
|
box-sizing: border-box;
|
|
|
|
text-shadow: 0 0 8px black;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .action {
|
|
|
|
> 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: 32px 0;
|
|
|
|
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;
|
|
|
|
}
|
2020-12-05 22:00:17 -06:00
|
|
|
|
|
|
|
> .content {
|
|
|
|
> img {
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
}
|
2020-11-29 01:25:44 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-12-05 01:05:40 -06:00
|
|
|
|
|
|
|
> .powered-by {
|
|
|
|
padding: 28px;
|
|
|
|
font-size: 14px;
|
|
|
|
text-align: center;
|
|
|
|
border-top: 1px solid rgba(255, 255, 255, 0.5);
|
|
|
|
color: #fff;
|
|
|
|
|
|
|
|
> small {
|
|
|
|
display: block;
|
|
|
|
margin-top: 8px;
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
}
|
2020-11-29 01:25:44 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|