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

208 lines
4.4 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>
<h1><b>Misskey</b>へようこそ</h1>
<p>Twitter風ミニブログSNSMisskeyへようこそ共有したいことを投稿したりタイムラインでみんなの投稿を読むこともできます<br><a href="/signup">アカウントを作成する</a></p>
<div class="form">
<p>%fa:lock% ログイン</p>
2018-02-21 22:05:19 +02:00
<div>
2018-04-27 13:12:15 +03:00
<form @submit.prevent="onSubmit">
2018-06-14 00:29:01 +03:00
<ui-input v-model="username" type="text" pattern="^[a-zA-Z0-9_]+$" placeholder="ユーザー名" autofocus required @change="onUsernameChange">
<span>ユーザー名</span>
<span slot="prefix">@</span>
<span slot="suffix">@{{ host }}</span>
</ui-input>
<ui-input v-model="password" type="password" placeholder="パスワード" required>
<span>パスワード</span>
<span slot="prefix">%fa:lock%</span>
</ui-input>
<ui-input v-if="user && user.twoFactorEnabled" v-model="token" type="number" placeholder="トークン" required/>
2018-04-27 13:12:15 +03:00
<button type="submit" :disabled="signing">{{ signing ? 'ログインしています' : 'ログイン' }}</button>
</form>
<div>
<a :href="`${apiUrl}/signin/twitter`">Twitterでログイン</a>
</div>
2018-02-21 22:05:19 +02:00
</div>
</div>
2018-04-27 13:12:15 +03:00
<div class="tl">
<p>%fa:comments R% タイムラインを見てみる</p>
<mk-welcome-timeline/>
</div>
<div class="users">
2018-04-29 11:54:50 +03:00
<mk-avatar class="avatar" v-for="user in users" :key="user.id" :user="user"/>
2018-04-27 13:12:15 +03:00
</div>
<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-14 00:29:01 +03:00
import { apiUrl, copyright, host } from '../../../config';
2018-02-21 22:05:19 +02:00
export default Vue.extend({
data() {
return {
signing: false,
user: null,
username: '',
password: '',
token: '',
2018-03-16 20:33:36 +02:00
apiUrl,
2018-03-17 16:01:17 +02:00
copyright,
2018-06-14 00:29:01 +03:00
users: [],
host
2018-02-21 22:05:19 +02:00
};
},
mounted() {
2018-03-17 16:01:17 +02:00
(this as any).api('users', {
sort: '+follower',
limit: 20
}).then(users => {
this.users = users;
});
2018-02-21 22:05:19 +02:00
},
methods: {
onUsernameChange() {
(this as any).api('users/show', {
username: this.username
}).then(user => {
this.user = user;
});
},
onSubmit() {
this.signing = true;
(this as any).api('signin', {
username: this.username,
password: this.password,
2018-04-07 21:58:11 +03:00
token: this.user && this.user.twoFactorEnabled ? this.token : undefined
2018-02-21 22:05:19 +02:00
}).then(() => {
location.reload();
}).catch(() => {
alert('something happened');
this.signing = false;
});
}
}
});
</script>
<style lang="stylus" scoped>
.welcome
2018-04-27 13:12:15 +03:00
background linear-gradient(to bottom, #1e1d65, #bd6659)
2018-02-21 22:05:19 +02:00
2018-04-27 13:12:15 +03:00
> div
padding 16px
margin 0 auto
max-width 500px
2018-02-21 22:05:19 +02:00
2018-04-27 13:12:15 +03:00
h1
margin 0
padding 8px
font-size 1.5em
font-weight normal
color #cacac3
& + p
margin 0 0 16px 0
padding 0 8px 0 8px
color #949fa9
.form
margin-bottom 16px
background #fff
2018-04-29 02:51:17 +03:00
border solid 1px rgba(#000, 0.2)
2018-04-27 13:12:15 +03:00
border-radius 8px
overflow hidden
> p
margin 0
padding 12px 20px
color #555
background #f5f5f5
2018-02-21 22:05:19 +02:00
border-bottom solid 1px #ddd
> div
2018-03-16 20:33:36 +02:00
2018-04-27 13:12:15 +03:00
> form
padding 16px
border-bottom solid 1px #ddd
input
display block
padding 12px
margin 0 0 16px 0
width 100%
font-size 1em
2018-04-29 02:51:17 +03:00
color rgba(#000, 0.7)
2018-04-27 13:12:15 +03:00
background #fff
outline none
border solid 1px #ddd
border-radius 4px
button
display block
width 100%
padding 10px
margin 0
color #333
font-size 1em
text-align center
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
2018-04-29 02:51:17 +03:00
box-shadow 0 1px 3px rgba(#000, 0.075), inset 0 0 5px rgba(#000, 0.2)
2018-04-27 13:12:15 +03:00
> div
padding 16px
text-align center
2018-03-16 20:33:36 +02:00
2018-04-27 13:12:15 +03:00
> .tl
background #fff
2018-04-29 02:51:17 +03:00
border solid 1px rgba(#000, 0.2)
2018-04-27 13:12:15 +03:00
border-radius 8px
overflow hidden
> p
margin 0
padding 12px 20px
color #555
background #f5f5f5
border-bottom solid 1px #ddd
2018-03-16 20:33:36 +02:00
2018-04-27 13:12:15 +03:00
> .mk-welcome-timeline
max-height 300px
overflow auto
2018-03-17 16:01:17 +02:00
2018-04-27 13:12:15 +03:00
> .users
margin 12px 0 0 0
2018-03-17 16:01:17 +02:00
> *
display inline-block
2018-04-27 13:12:15 +03:00
margin 4px
2018-04-29 11:54:50 +03:00
width 38px
height 38px
border-radius 6px
2018-03-16 20:33:36 +02:00
2018-04-27 13:12:15 +03:00
> footer
text-align center
color #fff
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>