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

111 lines
3 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:40:07 +02:00
<div class="avatar" :style="{ backgroundImage: user ? `url('${ user.avatarUrl }')` : null }" v-show="withAvatar"></div>
2019-02-25 12:08:56 +01:00
<ui-input v-model="username" type="text" pattern="^[a-zA-Z0-9_]+$" spellcheck="false" autofocus required @input="onUsernameChange">
<span>{{ $t('username') }}</span>
2019-02-18 03:13:56 +01:00
<template #prefix>@</template>
<template #suffix>@{{ host }}</template>
2018-06-15 12:56:18 +02:00
</ui-input>
2019-02-25 12:08:56 +01:00
<ui-input v-model="password" type="password" :with-password-toggle="true" required>
<span>{{ $t('password') }}</span>
2019-02-18 03:13:56 +01:00
<template #prefix><fa icon="lock"/></template>
2018-06-15 12:56:18 +02:00
</ui-input>
<ui-input v-if="user && user.twoFactorEnabled" v-model="token" type="text" pattern="^[0-9]{6}$" autocomplete="off" spellcheck="false" required>
<span>{{ $t('@.2fa') }}</span>
2019-02-18 03:13:56 +01:00
<template #prefix><fa icon="gavel"/></template>
</ui-input>
2019-02-26 06:13:02 +01:00
<ui-button type="submit" :disabled="signing">{{ signing ? $t('signing-in') : $t('@.signin') }}</ui-button>
<p v-if="meta && meta.enableTwitterIntegration" style="margin: 8px 0;"><a :href="`${apiUrl}/signin/twitter`"><fa :icon="['fab', 'twitter']"/> {{ $t('signin-with-twitter') }}</a></p>
<p v-if="meta && meta.enableGithubIntegration" style="margin: 8px 0;"><a :href="`${apiUrl}/signin/github`"><fa :icon="['fab', 'github']"/> {{ $t('signin-with-github') }}</a></p>
<p v-if="meta && meta.enableDiscordIntegration" style="margin: 8px 0;"><a :href="`${apiUrl}/signin/discord`"><fa :icon="['fab', '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';
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({
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: '',
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', {
username: this.username,
password: this.password,
2018-04-07 20:58:11 +02:00
token: this.user && this.user.twoFactorEnabled ? this.token : undefined
}).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(() => {
this.$root.dialog({
type: 'error',
text: 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>