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