2018-02-10 08:22:14 +01:00
|
|
|
<template>
|
2018-06-15 00:56:56 +02:00
|
|
|
<form class="mk-signup" @submit.prevent="onSubmit" :autocomplete="Math.random()">
|
2018-08-21 18:02:56 +02:00
|
|
|
<template v-if="meta">
|
2020-01-29 20:37:25 +01:00
|
|
|
<mk-input v-if="meta.disableRegistration" v-model="invitationCode" type="text" :autocomplete="Math.random()" spellcheck="false" required>
|
2020-02-11 22:27:11 +01:00
|
|
|
<span>{{ $t('invitationCode') }}</span>
|
|
|
|
<template #prefix><fa :icon="faKey"/></template>
|
2020-01-29 20:37:25 +01:00
|
|
|
</mk-input>
|
|
|
|
<mk-input v-model="username" type="text" pattern="^[a-zA-Z0-9_]{1,20}$" :autocomplete="Math.random()" spellcheck="false" required @input="onChangeUsername">
|
2018-11-08 19:44:35 +01:00
|
|
|
<span>{{ $t('username') }}</span>
|
2019-02-18 03:13:56 +01:00
|
|
|
<template #prefix>@</template>
|
|
|
|
<template #suffix>@{{ host }}</template>
|
2019-02-23 19:56:15 +01:00
|
|
|
<template #desc>
|
2020-01-29 20:37:25 +01:00
|
|
|
<span v-if="usernameState == 'wait'" style="color:#999"><fa :icon="faSpinner" pulse fixed-width/> {{ $t('checking') }}</span>
|
|
|
|
<span v-if="usernameState == 'ok'" style="color:#3CB7B5"><fa :icon="faCheck" fixed-width/> {{ $t('available') }}</span>
|
|
|
|
<span v-if="usernameState == 'unavailable'" style="color:#FF1161"><fa :icon="faExclamationTriangle" fixed-width/> {{ $t('unavailable') }}</span>
|
|
|
|
<span v-if="usernameState == 'error'" style="color:#FF1161"><fa :icon="faExclamationTriangle" fixed-width/> {{ $t('error') }}</span>
|
2020-02-11 22:27:11 +01:00
|
|
|
<span v-if="usernameState == 'invalid-format'" style="color:#FF1161"><fa :icon="faExclamationTriangle" fixed-width/> {{ $t('usernameInvalidFormat') }}</span>
|
|
|
|
<span v-if="usernameState == 'min-range'" style="color:#FF1161"><fa :icon="faExclamationTriangle" fixed-width/> {{ $t('tooShort') }}</span>
|
|
|
|
<span v-if="usernameState == 'max-range'" style="color:#FF1161"><fa :icon="faExclamationTriangle" fixed-width/> {{ $t('tooLong') }}</span>
|
2019-02-23 19:56:15 +01:00
|
|
|
</template>
|
2020-01-29 20:37:25 +01:00
|
|
|
</mk-input>
|
|
|
|
<mk-input v-model="password" type="password" :autocomplete="Math.random()" required @input="onChangePassword">
|
2018-11-08 19:44:35 +01:00
|
|
|
<span>{{ $t('password') }}</span>
|
2020-01-29 20:37:25 +01:00
|
|
|
<template #prefix><fa :icon="faLock"/></template>
|
2019-02-18 03:13:56 +01:00
|
|
|
<template #desc>
|
2020-02-11 22:27:11 +01:00
|
|
|
<p v-if="passwordStrength == 'low'" style="color:#FF1161"><fa :icon="faExclamationTriangle" fixed-width/> {{ $t('weakPassword') }}</p>
|
|
|
|
<p v-if="passwordStrength == 'medium'" style="color:#3CB7B5"><fa :icon="faCheck" fixed-width/> {{ $t('normalPassword') }}</p>
|
|
|
|
<p v-if="passwordStrength == 'high'" style="color:#3CB7B5"><fa :icon="faCheck" fixed-width/> {{ $t('strongPassword') }}</p>
|
2019-02-18 01:48:00 +01:00
|
|
|
</template>
|
2020-01-29 20:37:25 +01:00
|
|
|
</mk-input>
|
|
|
|
<mk-input v-model="retypedPassword" type="password" :autocomplete="Math.random()" required @input="onChangePasswordRetype">
|
2018-11-08 19:44:35 +01:00
|
|
|
<span>{{ $t('password') }} ({{ $t('retype') }})</span>
|
2020-01-29 20:37:25 +01:00
|
|
|
<template #prefix><fa :icon="faLock"/></template>
|
2019-02-18 03:13:56 +01:00
|
|
|
<template #desc>
|
2020-02-11 22:27:11 +01:00
|
|
|
<p v-if="passwordRetypeState == 'match'" style="color:#3CB7B5"><fa :icon="faCheck" fixed-width/> {{ $t('passwordMatched') }}</p>
|
|
|
|
<p v-if="passwordRetypeState == 'not-match'" style="color:#FF1161"><fa :icon="faExclamationTriangle" fixed-width/> {{ $t('passwordNotMatched') }}</p>
|
2019-02-18 01:48:00 +01:00
|
|
|
</template>
|
2020-01-29 20:37:25 +01:00
|
|
|
</mk-input>
|
|
|
|
<mk-switch v-model="ToSAgreement" v-if="meta.tosUrl">
|
|
|
|
<i18n path="agreeTo">
|
2020-03-25 14:26:50 +01:00
|
|
|
<a :href="meta.tosUrl" class="_link" target="_blank">{{ $t('tos') }}</a>
|
2019-05-13 19:57:04 +02:00
|
|
|
</i18n>
|
2020-01-29 20:37:25 +01:00
|
|
|
</mk-switch>
|
2018-11-07 04:09:24 +01:00
|
|
|
<div v-if="meta.enableRecaptcha" class="g-recaptcha" :data-sitekey="meta.recaptchaSiteKey" style="margin: 16px 0;"></div>
|
2020-01-29 20:37:25 +01:00
|
|
|
<mk-button type="submit" :disabled=" submitting || !(meta.tosUrl ? ToSAgreement : true) || passwordRetypeState == 'not-match'" primary>{{ $t('start') }}</mk-button>
|
2018-08-21 18:02:56 +02:00
|
|
|
</template>
|
2018-02-10 08:22:14 +01:00
|
|
|
</form>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2020-02-11 22:27:11 +01:00
|
|
|
import { faLock, faExclamationTriangle, faSpinner, faCheck, faKey } from '@fortawesome/free-solid-svg-icons';
|
2018-02-10 08:22:14 +01:00
|
|
|
const getPasswordStrength = require('syuilo-password-strength');
|
2018-11-11 04:35:30 +01:00
|
|
|
import { toUnicode } from 'punycode';
|
2020-01-29 20:37:25 +01:00
|
|
|
import i18n from '../i18n';
|
|
|
|
import { host, url } from '../config';
|
|
|
|
import MkButton from './ui/button.vue';
|
|
|
|
import MkInput from './ui/input.vue';
|
|
|
|
import MkSwitch from './ui/switch.vue';
|
2018-02-10 08:22:14 +01:00
|
|
|
|
|
|
|
export default Vue.extend({
|
2020-01-29 20:37:25 +01:00
|
|
|
i18n,
|
|
|
|
|
|
|
|
components: {
|
|
|
|
MkButton,
|
|
|
|
MkInput,
|
|
|
|
MkSwitch,
|
|
|
|
},
|
2018-12-18 16:39:28 +01:00
|
|
|
|
2018-02-10 09:01:32 +01:00
|
|
|
data() {
|
|
|
|
return {
|
2018-11-11 04:35:30 +01:00
|
|
|
host: toUnicode(host),
|
2018-02-10 09:01:32 +01:00
|
|
|
username: '',
|
|
|
|
password: '',
|
|
|
|
retypedPassword: '',
|
2018-08-17 12:17:23 +02:00
|
|
|
invitationCode: '',
|
2018-02-11 04:08:43 +01:00
|
|
|
url,
|
2018-02-10 09:01:32 +01:00
|
|
|
usernameState: null,
|
|
|
|
passwordStrength: '',
|
2018-08-17 12:17:23 +02:00
|
|
|
passwordRetypeState: null,
|
2019-07-09 20:47:07 +02:00
|
|
|
submitting: false,
|
2020-01-29 20:37:25 +01:00
|
|
|
ToSAgreement: false,
|
2020-02-11 22:27:11 +01:00
|
|
|
faLock, faExclamationTriangle, faSpinner, faCheck, faKey
|
2018-02-10 08:22:14 +01:00
|
|
|
}
|
|
|
|
},
|
2018-12-18 16:39:28 +01:00
|
|
|
|
2020-02-14 17:33:09 +01:00
|
|
|
props: {
|
|
|
|
autoSet: {
|
|
|
|
type: Boolean,
|
|
|
|
required: false,
|
|
|
|
default: false,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2018-02-11 04:08:43 +01:00
|
|
|
computed: {
|
2020-02-10 15:17:42 +01:00
|
|
|
meta() {
|
|
|
|
return this.$store.state.instance.meta;
|
|
|
|
},
|
|
|
|
|
2018-02-11 04:08:43 +01:00
|
|
|
shouldShowProfileUrl(): boolean {
|
|
|
|
return (this.username != '' &&
|
|
|
|
this.usernameState != 'invalid-format' &&
|
|
|
|
this.usernameState != 'min-range' &&
|
|
|
|
this.usernameState != 'max-range');
|
|
|
|
}
|
|
|
|
},
|
2018-12-18 16:39:28 +01:00
|
|
|
|
2020-02-14 17:33:09 +01:00
|
|
|
created() {
|
|
|
|
if (this.autoSet) {
|
|
|
|
this.$once('signup', res => {
|
|
|
|
localStorage.setItem('i', res.i);
|
|
|
|
location.reload();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2018-08-19 12:15:29 +02:00
|
|
|
mounted() {
|
|
|
|
const head = document.getElementsByTagName('head')[0];
|
|
|
|
const script = document.createElement('script');
|
|
|
|
script.setAttribute('src', 'https://www.google.com/recaptcha/api.js');
|
|
|
|
head.appendChild(script);
|
|
|
|
},
|
2018-12-18 16:39:28 +01:00
|
|
|
|
2018-02-10 09:01:32 +01:00
|
|
|
methods: {
|
|
|
|
onChangeUsername() {
|
|
|
|
if (this.username == '') {
|
|
|
|
this.usernameState = null;
|
|
|
|
return;
|
|
|
|
}
|
2018-02-10 08:22:14 +01:00
|
|
|
|
2018-02-10 09:01:32 +01:00
|
|
|
const err =
|
2018-04-08 18:10:04 +02:00
|
|
|
!this.username.match(/^[a-zA-Z0-9_]+$/) ? 'invalid-format' :
|
2018-04-11 14:05:47 +02:00
|
|
|
this.username.length < 1 ? 'min-range' :
|
2018-02-10 09:01:32 +01:00
|
|
|
this.username.length > 20 ? 'max-range' :
|
|
|
|
null;
|
2018-02-10 08:22:14 +01:00
|
|
|
|
2018-02-10 09:01:32 +01:00
|
|
|
if (err) {
|
|
|
|
this.usernameState = err;
|
|
|
|
return;
|
|
|
|
}
|
2018-02-10 08:22:14 +01:00
|
|
|
|
2018-02-10 09:01:32 +01:00
|
|
|
this.usernameState = 'wait';
|
2018-02-10 08:22:14 +01:00
|
|
|
|
2018-11-09 00:13:34 +01:00
|
|
|
this.$root.api('username/available', {
|
2018-02-10 09:01:32 +01:00
|
|
|
username: this.username
|
|
|
|
}).then(result => {
|
|
|
|
this.usernameState = result.available ? 'ok' : 'unavailable';
|
|
|
|
}).catch(err => {
|
|
|
|
this.usernameState = 'error';
|
|
|
|
});
|
|
|
|
},
|
2018-12-18 16:39:28 +01:00
|
|
|
|
2018-02-10 09:01:32 +01:00
|
|
|
onChangePassword() {
|
|
|
|
if (this.password == '') {
|
|
|
|
this.passwordStrength = '';
|
|
|
|
return;
|
|
|
|
}
|
2018-02-10 08:22:14 +01:00
|
|
|
|
2018-02-10 09:01:32 +01:00
|
|
|
const strength = getPasswordStrength(this.password);
|
|
|
|
this.passwordStrength = strength > 0.7 ? 'high' : strength > 0.3 ? 'medium' : 'low';
|
|
|
|
},
|
2018-12-18 16:39:28 +01:00
|
|
|
|
2018-02-10 09:01:32 +01:00
|
|
|
onChangePasswordRetype() {
|
|
|
|
if (this.retypedPassword == '') {
|
|
|
|
this.passwordRetypeState = null;
|
|
|
|
return;
|
2018-02-10 08:22:14 +01:00
|
|
|
}
|
|
|
|
|
2018-02-10 09:01:32 +01:00
|
|
|
this.passwordRetypeState = this.password == this.retypedPassword ? 'match' : 'not-match';
|
|
|
|
},
|
2018-12-18 16:39:28 +01:00
|
|
|
|
2018-02-10 09:01:32 +01:00
|
|
|
onSubmit() {
|
2019-07-09 20:47:07 +02:00
|
|
|
if (this.submitting) return;
|
|
|
|
this.submitting = true;
|
|
|
|
|
2018-11-09 00:13:34 +01:00
|
|
|
this.$root.api('signup', {
|
2018-02-10 09:01:32 +01:00
|
|
|
username: this.username,
|
|
|
|
password: this.password,
|
2018-08-17 12:17:23 +02:00
|
|
|
invitationCode: this.invitationCode,
|
2018-11-07 04:09:24 +01:00
|
|
|
'g-recaptcha-response': this.meta.enableRecaptcha ? (window as any).grecaptcha.getResponse() : null
|
2019-01-18 08:46:56 +01:00
|
|
|
}).then(() => {
|
2018-11-09 00:13:34 +01:00
|
|
|
this.$root.api('signin', {
|
2018-02-10 09:01:32 +01:00
|
|
|
username: this.username,
|
|
|
|
password: this.password
|
2019-01-18 08:46:56 +01:00
|
|
|
}).then(res => {
|
2020-02-14 17:33:09 +01:00
|
|
|
this.$emit('signup', res);
|
2018-02-10 09:01:32 +01:00
|
|
|
});
|
|
|
|
}).catch(() => {
|
2019-07-09 20:47:07 +02:00
|
|
|
this.submitting = false;
|
|
|
|
|
2019-04-16 06:05:10 +02:00
|
|
|
this.$root.dialog({
|
|
|
|
type: 'error',
|
2020-02-11 22:27:11 +01:00
|
|
|
text: this.$t('error')
|
2019-04-16 06:05:10 +02:00
|
|
|
});
|
2018-02-10 09:01:32 +01:00
|
|
|
|
2018-11-07 04:09:24 +01:00
|
|
|
if (this.meta.enableRecaptcha) {
|
2018-07-18 17:04:09 +02:00
|
|
|
(window as any).grecaptcha.reset();
|
|
|
|
}
|
2018-02-10 09:01:32 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|