Sharkey/src/client/app/mobile/views/pages/welcome.vue

164 lines
3 KiB
Vue
Raw Normal View History

2018-02-21 20:11:24 +02:00
<template>
2018-02-21 22:05:19 +02:00
<div class="welcome">
2018-04-27 13:12:15 +03:00
<div>
2018-06-14 01:22:50 +03:00
<img :src="$store.state.device.darkmode ? 'assets/title.dark.svg' : 'assets/title.light.svg'" alt="Misskey">
2018-06-14 03:51:55 +03:00
<p class="host">{{ host }}</p>
<div class="about">
<h2>{{ name || 'unidentified' }}</h2>
<p v-html="description || '%i18n:common.about%'"></p>
<router-link class="signup" to="/signup">新規登録</router-link>
</div>
<div class="login">
2018-06-16 01:40:07 +03:00
<mk-signin :with-avatar="false"/>
2018-02-21 22:05:19 +02:00
</div>
2018-06-15 07:08:56 +03:00
<div class="tl">
<mk-welcome-timeline/>
</div>
<div class="hashtags">
<router-link v-for="tag in tags" :key="tag" :to="`/tags/${ tag }`" :title="tag">#{{ tag }}</router-link>
</div>
2018-06-16 01:40:07 +03:00
<div class="stats" v-if="stats">
<span>%fa:user% {{ stats.originalUsersCount | number }}</span>
<span>%fa:pencil-alt% {{ stats.originalNotesCount | number }}</span>
</div>
2018-04-27 13:12:15 +03:00
<footer>
<small>{{ copyright }}</small>
</footer>
2018-02-21 22:05:19 +02:00
</div>
2018-02-21 20:11:24 +02:00
</div>
</template>
2018-02-21 22:05:19 +02:00
<script lang="ts">
import Vue from 'vue';
2018-06-15 01:56:56 +03:00
import { apiUrl, copyright, host, name, description } from '../../../config';
2018-02-21 22:05:19 +02:00
export default Vue.extend({
data() {
return {
2018-03-16 20:33:36 +02:00
apiUrl,
2018-03-17 16:01:17 +02:00
copyright,
2018-06-16 01:40:07 +03:00
stats: null,
2018-06-15 01:56:56 +03:00
host,
name,
description,
tags: []
2018-02-21 22:05:19 +02:00
};
},
2018-06-16 01:40:07 +03:00
created() {
(this as any).api('stats').then(stats => {
this.stats = stats;
2018-03-17 16:01:17 +02:00
});
(this as any).api('hashtags/trend').then(stats => {
this.tags = stats.map(x => x.tag);
});
2018-02-21 22:05:19 +02:00
}
});
</script>
<style lang="stylus" scoped>
.welcome
2018-06-14 03:51:55 +03:00
text-align center
//background #fff
2018-02-21 22:05:19 +02:00
2018-04-27 13:12:15 +03:00
> div
2018-06-14 03:51:55 +03:00
padding 32px
2018-04-27 13:12:15 +03:00
margin 0 auto
max-width 500px
2018-02-21 22:05:19 +02:00
2018-06-14 01:22:50 +03:00
> img
display block
max-width 200px
margin 0 auto
2018-04-27 13:12:15 +03:00
2018-06-14 03:51:55 +03:00
> .host
display block
text-align center
padding 6px 12px
line-height 32px
font-weight bold
color #333
background rgba(#000, 0.035)
border-radius 6px
> .about
margin-top 16px
padding 16px
2018-06-14 08:52:37 +03:00
color #555
2018-06-14 03:51:55 +03:00
background #fff
border-radius 6px
> h2
margin 0
> p
margin 8px
> .signup
font-weight bold
> .login
margin 16px 0
2018-04-27 13:12:15 +03:00
2018-06-14 01:22:50 +03:00
> form
2018-02-21 22:05:19 +02:00
2018-06-14 01:22:50 +03:00
button
display block
width 100%
padding 10px
margin 0
color #333
font-size 1em
2018-04-27 13:12:15 +03:00
text-align center
2018-06-14 01:22:50 +03:00
text-decoration none
text-shadow 0 1px 0 rgba(255, 255, 255, 0.9)
background-image linear-gradient(#fafafa, #eaeaea)
border 1px solid #ddd
border-bottom-color #cecece
border-radius 4px
&:active
background-color #767676
background-image none
border-color #444
box-shadow 0 1px 3px rgba(#000, 0.075), inset 0 0 5px rgba(#000, 0.2)
2018-03-16 20:33:36 +02:00
2018-06-15 07:08:56 +03:00
> .tl
margin 16px 0
2018-06-15 07:08:56 +03:00
> *
max-height 300px
border-radius 6px
overflow auto
-webkit-overflow-scrolling touch
> .hashtags
border solid 2px #ddd
border-radius 8px
> *
display inline-block
margin 16px
2018-06-16 01:40:07 +03:00
> .stats
margin 16px 0
padding 8px
font-size 14px
color #444
background rgba(#000, 0.1)
border-radius 6px
> *
margin 0 8px
2018-04-27 13:12:15 +03:00
> footer
text-align center
2018-06-14 03:51:55 +03:00
color #444
2018-03-17 16:01:17 +02:00
2018-04-27 13:12:15 +03:00
> small
display block
margin 16px 0 0 0
opacity 0.7
2018-03-16 20:33:36 +02:00
2018-02-21 22:05:19 +02:00
</style>