egirlskey/src/client/app/common/views/components/signin.vue

100 lines
2.7 KiB
Vue
Raw Normal View History

2018-02-10 07:22:14 +00:00
<template>
2018-02-11 03:42:02 +00:00
<form class="mk-signin" :class="{ signing }" @submit.prevent="onSubmit">
2018-06-15 22:40:07 +00:00
<div class="avatar" :style="{ backgroundImage: user ? `url('${ user.avatarUrl }')` : null }" v-show="withAvatar"></div>
2018-09-29 00:11:06 +00:00
<ui-input v-model="username" type="text" pattern="^[a-zA-Z0-9_]+$" spellcheck="false" autofocus required @input="onUsernameChange" styl="fill">
<span>{{ $t('username') }}</span>
2018-06-15 10:56:18 +00:00
<span slot="prefix">@</span>
<span slot="suffix">@{{ host }}</span>
</ui-input>
2018-09-29 00:11:06 +00:00
<ui-input v-model="password" type="password" required styl="fill">
<span>{{ $t('password') }}</span>
<span slot="prefix"><fa icon="lock"/></span>
2018-06-15 10:56:18 +00:00
</ui-input>
2018-09-29 00:11:06 +00:00
<ui-input v-if="user && user.twoFactorEnabled" v-model="token" type="number" required styl="fill"/>
<ui-button type="submit" :disabled="signing">{{ signing ? $t('signing-in') : $t('signin') }}</ui-button>
2018-11-16 17:13:01 +00:00
<p v-if="meta && meta.enableTwitterIntegration" style="margin: 8px 0;"><a :href="`${apiUrl}/signin/twitter`">{{ $t('signin-with-twitter') }}</a></p>
<p v-if="meta && meta.enableGithubIntegration" style="margin: 8px 0;"><a :href="`${apiUrl}/signin/github`">{{ $t('signin-with-github') }}</a></p>
<p v-if="meta && meta.enableDiscordIntegration" style="margin: 8px 0;"><a :href="`${apiUrl}/signin/discord`">{{ $t('signin-with-discord') /* TODO: Make these layouts better */ }}</a></p>
2018-02-10 07:22:14 +00:00
</form>
</template>
2018-02-11 03:08:43 +00:00
<script lang="ts">
2018-02-10 07:22:14 +00:00
import Vue from 'vue';
import i18n from '../../../i18n';
2018-08-19 13:32:25 +00:00
import { apiUrl, host } from '../../../config';
2018-11-11 03:35:30 +00:00
import { toUnicode } from 'punycode';
2018-02-10 07:22:14 +00:00
export default Vue.extend({
i18n: i18n('common/views/components/signin.vue'),
2018-06-15 22:40:07 +00:00
props: {
withAvatar: {
type: Boolean,
required: false,
default: true
}
},
2018-02-10 07:22:14 +00:00
data() {
return {
signing: false,
2018-02-11 03:08:43 +00:00
user: null,
username: '',
password: '',
token: '',
apiUrl,
2018-11-16 17:13:01 +00:00
host: toUnicode(host),
meta: null
2018-02-10 07:22:14 +00:00
};
},
2018-11-16 17:13:01 +00:00
created() {
this.$root.getMeta().then(meta => {
this.meta = meta;
});
},
2018-02-10 07:22:14 +00:00
methods: {
onUsernameChange() {
2018-11-08 23:13:34 +00:00
this.$root.api('users/show', {
2018-02-10 07:22:14 +00:00
username: this.username
}).then(user => {
this.user = user;
2018-06-15 22:31:35 +00:00
}, () => {
this.user = null;
2018-02-10 07:22:14 +00:00
});
},
onSubmit() {
this.signing = true;
2018-11-08 23:13:34 +00:00
this.$root.api('signin', {
username: this.username,
password: this.password,
2018-04-07 18:58:11 +00:00
token: this.user && this.user.twoFactorEnabled ? this.token : undefined
2018-11-28 07:19:02 +00:00
}, true).then(res => {
localStorage.setItem('i', res.i);
2018-02-10 07:22:14 +00:00
location.reload();
}).catch(() => {
alert(this.$t('login-failed'));
2018-02-10 07:22:14 +00:00
this.signing = false;
});
}
}
});
</script>
<style lang="stylus" scoped>
2018-02-11 03:42:02 +00:00
.mk-signin
2018-06-15 22:31:35 +00:00
color #555
2018-02-10 07:22:14 +00:00
&.signing
&, *
cursor wait !important
2018-06-15 22:31:35 +00:00
> .avatar
2018-09-03 14:23:50 +00:00
margin 0 auto 0 auto
2018-06-15 22:31:35 +00:00
width 64px
height 64px
background #ddd
background-position center
background-size cover
border-radius 100%
2018-02-10 07:22:14 +00:00
</style>