rudeshark.net/src/client/app/desktop/views/pages/welcome.vue

265 lines
4.9 KiB
Vue
Raw Normal View History

2018-02-10 06:56:33 +01:00
<template>
2018-02-10 11:57:37 +01:00
<div class="mk-welcome">
2018-06-15 12:56:18 +02:00
<img ref="pointer" class="pointer" src="/assets/pointer.png" alt="">
2018-05-23 08:48:41 +02:00
<button @click="dark">
2018-05-23 22:28:46 +02:00
<template v-if="$store.state.device.darkmode">%fa:moon%</template>
2018-05-23 08:48:41 +02:00
<template v-else>%fa:R moon%</template>
</button>
2018-06-15 12:56:18 +02:00
<div class="body" :style="{ backgroundImage: `url('${ welcomeBgUrl }')` }">
<div class="container">
<div class="info">
<span>%i18n:common.misskey% <b>{{ host }}</b></span>
<span class="stats" v-if="stats">
<span>%fa:user% {{ stats.originalUsersCount | number }}</span>
<span>%fa:pencil-alt% {{ stats.originalNotesCount | number }}</span>
</span>
</div>
<main>
<div class="about">
<h1 v-if="name">{{ name }}</h1>
<h1 v-else><img :src="$store.state.device.darkmode ? 'assets/title.dark.svg' : 'assets/title.light.svg'" alt="Misskey"></h1>
<p class="powerd-by" v-if="name">powerd by <b>Misskey</b></p>
<p class="desc" v-html="description || '%i18n:common.about%'"></p>
<a ref="signup" @click="signup">%i18n:@signup%</a>
</div>
<div class="login">
<mk-signin/>
</div>
</main>
<mk-nav class="nav"/>
2018-02-10 06:56:33 +01:00
</div>
2018-06-15 12:56:18 +02:00
<mk-forkit class="forkit"/>
<img src="assets/title.dark.svg" alt="Misskey">
</div>
<div class="tl">
<mk-welcome-timeline/>
</div>
2018-02-10 11:57:37 +01:00
<modal name="signup" width="500px" height="auto" scrollable>
2018-05-21 14:39:46 +02:00
<header :class="$style.signupFormHeader">%i18n:@signup%</header>
2018-02-11 04:08:43 +01:00
<mk-signup :class="$style.signupForm"/>
</modal>
<modal name="signin" width="500px" height="auto" scrollable>
2018-05-21 14:39:46 +02:00
<header :class="$style.signinFormHeader">%i18n:@signin%</header>
2018-02-11 04:08:43 +01:00
<mk-signin :class="$style.signinForm"/>
2018-02-10 08:22:14 +01:00
</modal>
2018-02-10 06:56:33 +01:00
</div>
</template>
2018-02-10 08:22:14 +01:00
<script lang="ts">
import Vue from 'vue';
2018-06-15 12:56:18 +02:00
import { host, copyright, welcomeBgUrl } from '../../../config';
2018-02-10 08:22:14 +01:00
export default Vue.extend({
2018-02-11 04:42:02 +01:00
data() {
return {
2018-06-15 12:56:18 +02:00
stats: null,
copyright,
welcomeBgUrl,
host
2018-02-11 04:42:02 +01:00
};
},
2018-06-15 12:56:18 +02:00
created() {
(this as any).api('stats').then(stats => {
this.stats = stats;
});
},
mounted() {
const x = this.$refs.signup.getBoundingClientRect();
this.$refs.pointer.style.top = x.top + x.height + 'px';
this.$refs.pointer.style.left = x.left + 'px';
},
2018-02-10 08:22:14 +01:00
methods: {
signup() {
this.$modal.show('signup');
2018-02-11 04:08:43 +01:00
},
signin() {
this.$modal.show('signin');
2018-05-23 08:48:41 +02:00
},
dark() {
2018-05-25 08:06:35 +02:00
this.$store.commit('device/set', {
key: 'darkmode',
value: !this.$store.state.device.darkmode
});
2018-02-10 08:22:14 +01:00
}
2018-02-10 06:56:33 +01:00
}
2018-02-10 08:22:14 +01:00
});
</script>
<style>
#wait {
right: auto;
left: 15px;
}
2018-02-10 06:56:33 +01:00
</style>
<style lang="stylus" scoped>
2018-03-03 05:47:55 +01:00
@import '~const.styl'
2018-05-23 08:48:41 +02:00
root(isDark)
2018-06-15 12:56:18 +02:00
display flex
2018-06-06 17:53:31 +02:00
min-height 100vh
2018-06-15 12:56:18 +02:00
> .pointer
display block
position absolute
z-index 1
top 0
right 0
width 180px
margin 0 0 0 -180px
transform rotateY(180deg) translateX(-10px) translateY(-25px)
pointer-events none
2018-03-17 09:47:46 +01:00
2018-05-23 08:48:41 +02:00
> button
2018-05-28 14:31:20 +02:00
position fixed
2018-05-23 08:48:41 +02:00
z-index 1
top 0
left 0
padding 16px
font-size 18px
2018-06-15 12:56:18 +02:00
color #fff
2018-05-23 08:48:41 +02:00
2018-06-15 12:56:18 +02:00
display none // TODO
> .body
2018-02-10 06:56:33 +01:00
flex 1
2018-05-21 14:39:46 +02:00
padding 64px 0 0 0
text-align center
2018-06-15 12:56:18 +02:00
background #578394
background-position center
background-size cover
&:before
content ''
display block
position absolute
top 0
left 0
right 0
bottom 0
background rgba(#000, 0.5)
> .forkit
position absolute
top 0
right 0
> img
position absolute
bottom 16px
right 16px
width 150px
> .container
$aboutWidth = 380px
$loginWidth = 340px
$width = $aboutWidth + $loginWidth
> .info
margin 0 auto 16px auto
padding 12px
width $width
font-size 14px
color #fff
background rgba(#000, 0.2)
border-radius 8px
2018-05-28 14:31:20 +02:00
2018-06-15 12:56:18 +02:00
> .stats
margin-left 16px
padding-left 16px
border-left solid 1px #fff
2018-05-28 14:31:20 +02:00
2018-06-15 12:56:18 +02:00
> *
margin-right 16px
2018-05-28 14:31:20 +02:00
2018-06-15 12:56:18 +02:00
> main
display flex
margin auto
width $width
2018-05-28 14:31:20 +02:00
border-radius 8px
overflow hidden
2018-06-15 12:56:18 +02:00
box-shadow 0 2px 8px rgba(#000, 0.3)
> .about
width $aboutWidth
color #444
background #fff
> h1
margin 0 0 16px 0
padding 32px 32px 0 32px
color #444
> img
width 170px
vertical-align bottom
> .powerd-by
margin 16px
opacity 0.7
> .desc
margin 0
padding 0 32px 16px 32px
> a
display inline-block
margin 0 0 32px 0
font-weight bold
> .login
width $loginWidth
padding 16px 32px 32px 32px
background #f5f5f5
> .nav
display block
margin 16px 0
font-size 14px
color #fff
> .tl
margin 0
width 410px
height 100vh
text-align left
background isDark ? #313543 : #fff
> *
max-height 100%
overflow auto
2018-02-10 06:56:33 +01:00
2018-05-23 08:48:41 +02:00
.mk-welcome[data-darkmode]
root(true)
.mk-welcome:not([data-darkmode])
root(false)
2018-02-10 06:56:33 +01:00
</style>
2018-02-10 11:57:37 +01:00
<style lang="stylus" module>
.signupForm
padding 24px 48px 48px 48px
.signupFormHeader
padding 48px 0 12px 0
margin: 0 48px
font-size 1.5em
color #777
border-bottom solid 1px #eee
2018-02-11 04:08:43 +01:00
.signinForm
padding 24px 48px 48px 48px
.signinFormHeader
padding 48px 0 12px 0
margin: 0 48px
font-size 1.5em
color #777
border-bottom solid 1px #eee
2018-02-11 04:42:02 +01:00
.nav
a
color #666
2018-02-10 11:57:37 +01:00
</style>