iceshrimp-legacy/src/client/app/common/views/components/signin.vue

145 lines
2.8 KiB
Vue
Raw Normal View History

2018-02-10 08:22:14 +01:00
<template>
2018-02-11 04:42:02 +01:00
<form class="mk-signin" :class="{ signing }" @submit.prevent="onSubmit">
2018-06-16 00:06:58 +02:00
<ui-input v-model="username" type="text" pattern="^[a-zA-Z0-9_]+$" spellcheck="false" autofocus required @change="onUsernameChange">
2018-06-15 12:56:18 +02:00
<span>%i18n:@username%</span>
<span slot="prefix">@</span>
<span slot="suffix">@{{ host }}</span>
</ui-input>
<ui-input v-model="password" type="password" required>
<span>%i18n:@password%</span>
<span slot="prefix">%fa:lock%</span>
</ui-input>
<ui-input v-if="user && user.twoFactorEnabled" v-model="token" type="number" required/>
<ui-button type="submit" :disabled="signing">{{ signing ? '%i18n:@signing-in%' : '%i18n:@signin%' }}</ui-button>
<p style="margin: 8px 0;">または<a :href="`${apiUrl}/signin/twitter`">Twitterでログイン</a></p>
2018-02-10 08:22:14 +01:00
</form>
</template>
2018-02-11 04:08:43 +01:00
<script lang="ts">
2018-02-10 08:22:14 +01:00
import Vue from 'vue';
2018-06-15 12:56:18 +02:00
import { apiUrl, host } from '../../../config';
2018-02-10 08:22:14 +01:00
export default Vue.extend({
data() {
return {
signing: false,
2018-02-11 04:08:43 +01:00
user: null,
username: '',
password: '',
token: '',
apiUrl,
2018-06-15 12:56:18 +02:00
host
2018-02-10 08:22:14 +01:00
};
},
methods: {
onUsernameChange() {
2018-02-18 04:35:18 +01:00
(this as any).api('users/show', {
2018-02-10 08:22:14 +01:00
username: this.username
}).then(user => {
this.user = user;
});
},
onSubmit() {
this.signing = true;
2018-02-18 04:35:18 +01:00
(this as any).api('signin', {
2018-02-10 08:22:14 +01:00
username: this.username,
password: this.password,
2018-04-07 20:58:11 +02:00
token: this.user && this.user.twoFactorEnabled ? this.token : undefined
2018-02-10 08:22:14 +01:00
}).then(() => {
location.reload();
}).catch(() => {
alert('something happened');
this.signing = false;
});
}
}
});
</script>
<style lang="stylus" scoped>
2018-03-03 05:47:55 +01:00
@import '~const.styl'
2018-02-11 04:42:02 +01:00
.mk-signin
2018-02-10 08:22:14 +01:00
&.signing
&, *
cursor wait !important
label
display block
margin 12px 0
[data-fa]
display block
pointer-events none
position absolute
bottom 0
top 0
left 0
z-index 1
margin auto
padding 0 16px
height 1em
color #898786
input[type=text]
input[type=password]
input[type=number]
user-select text
display inline-block
cursor auto
padding 0 0 0 38px
margin 0
width 100%
line-height 44px
font-size 1em
2018-04-29 01:51:17 +02:00
color rgba(#000, 0.7)
2018-02-10 08:22:14 +01:00
background #fff
outline none
border solid 1px #eee
border-radius 4px
&:hover
background rgba(255, 255, 255, 0.7)
border-color #ddd
& + i
color #797776
&:focus
background #fff
border-color #ccc
& + i
color #797776
[type=submit]
cursor pointer
padding 16px
margin -6px 0 0 0
width 100%
font-size 1.2em
2018-04-29 01:51:17 +02:00
color rgba(#000, 0.5)
2018-02-10 08:22:14 +01:00
outline none
border none
border-radius 0
background transparent
transition all .5s ease
&:hover
color $theme-color
transition all .2s ease
&:focus
color $theme-color
transition all .2s ease
&:active
color darken($theme-color, 30%)
transition all .2s ease
&:disabled
opacity 0.7
</style>