2018-02-10 08:22:14 +01:00
|
|
|
<template>
|
2021-09-29 17:50:45 +02:00
|
|
|
<form class="qlvuhzng _formRoot" @submit.prevent="onSubmit" :autocomplete="Math.random()">
|
2018-08-21 18:02:56 +02:00
|
|
|
<template v-if="meta">
|
2021-09-29 17:50:45 +02:00
|
|
|
<MkInput class="_formBlock" v-if="meta.disableRegistration" v-model="invitationCode" type="text" :autocomplete="Math.random()" spellcheck="false" required>
|
2021-08-06 15:29:19 +02:00
|
|
|
<template #label>{{ $ts.invitationCode }}</template>
|
2021-04-20 16:22:59 +02:00
|
|
|
<template #prefix><i class="fas fa-key"></i></template>
|
2020-10-17 13:12:00 +02:00
|
|
|
</MkInput>
|
2021-09-29 17:50:45 +02:00
|
|
|
<MkInput class="_formBlock" v-model="username" type="text" pattern="^[a-zA-Z0-9_]{1,20}$" :autocomplete="Math.random()" spellcheck="false" required @update:modelValue="onChangeUsername" data-cy-signup-username>
|
2021-08-22 06:16:15 +02:00
|
|
|
<template #label>{{ $ts.username }} <div class="_button _help" v-tooltip:dialog="$ts.usernameInfo"><i class="far fa-question-circle"></i></div></template>
|
2019-02-18 03:13:56 +01:00
|
|
|
<template #prefix>@</template>
|
|
|
|
<template #suffix>@{{ host }}</template>
|
2021-08-06 15:29:19 +02:00
|
|
|
<template #caption>
|
2021-10-08 06:37:02 +02:00
|
|
|
<span v-if="usernameState === 'wait'" style="color:#999"><i class="fas fa-spinner fa-pulse fa-fw"></i> {{ $ts.checking }}</span>
|
|
|
|
<span v-else-if="usernameState === 'ok'" style="color: var(--success)"><i class="fas fa-check fa-fw"></i> {{ $ts.available }}</span>
|
|
|
|
<span v-else-if="usernameState === 'unavailable'" style="color: var(--error)"><i class="fas fa-exclamation-triangle fa-fw"></i> {{ $ts.unavailable }}</span>
|
|
|
|
<span v-else-if="usernameState === 'error'" style="color: var(--error)"><i class="fas fa-exclamation-triangle fa-fw"></i> {{ $ts.error }}</span>
|
|
|
|
<span v-else-if="usernameState === 'invalid-format'" style="color: var(--error)"><i class="fas fa-exclamation-triangle fa-fw"></i> {{ $ts.usernameInvalidFormat }}</span>
|
|
|
|
<span v-else-if="usernameState === 'min-range'" style="color: var(--error)"><i class="fas fa-exclamation-triangle fa-fw"></i> {{ $ts.tooShort }}</span>
|
|
|
|
<span v-else-if="usernameState === 'max-range'" style="color: var(--error)"><i class="fas fa-exclamation-triangle fa-fw"></i> {{ $ts.tooLong }}</span>
|
|
|
|
</template>
|
|
|
|
</MkInput>
|
2021-11-07 12:16:01 +01:00
|
|
|
<MkInput v-if="meta.emailRequiredForSignup" class="_formBlock" v-model="email" :debounce="true" type="email" :autocomplete="Math.random()" spellcheck="false" required @update:modelValue="onChangeEmail" data-cy-signup-email>
|
2021-10-08 06:37:02 +02:00
|
|
|
<template #label>{{ $ts.emailAddress }} <div class="_button _help" v-tooltip:dialog="$ts._signup.emailAddressInfo"><i class="far fa-question-circle"></i></div></template>
|
|
|
|
<template #prefix><i class="fas fa-envelope"></i></template>
|
|
|
|
<template #caption>
|
|
|
|
<span v-if="emailState === 'wait'" style="color:#999"><i class="fas fa-spinner fa-pulse fa-fw"></i> {{ $ts.checking }}</span>
|
|
|
|
<span v-else-if="emailState === 'ok'" style="color: var(--success)"><i class="fas fa-check fa-fw"></i> {{ $ts.available }}</span>
|
2021-11-07 12:16:01 +01:00
|
|
|
<span v-else-if="emailState === 'unavailable:used'" style="color: var(--error)"><i class="fas fa-exclamation-triangle fa-fw"></i> {{ $ts._emailUnavailable.used }}</span>
|
|
|
|
<span v-else-if="emailState === 'unavailable:format'" style="color: var(--error)"><i class="fas fa-exclamation-triangle fa-fw"></i> {{ $ts._emailUnavailable.format }}</span>
|
|
|
|
<span v-else-if="emailState === 'unavailable:disposable'" style="color: var(--error)"><i class="fas fa-exclamation-triangle fa-fw"></i> {{ $ts._emailUnavailable.disposable }}</span>
|
|
|
|
<span v-else-if="emailState === 'unavailable:mx'" style="color: var(--error)"><i class="fas fa-exclamation-triangle fa-fw"></i> {{ $ts._emailUnavailable.mx }}</span>
|
|
|
|
<span v-else-if="emailState === 'unavailable:smtp'" style="color: var(--error)"><i class="fas fa-exclamation-triangle fa-fw"></i> {{ $ts._emailUnavailable.smtp }}</span>
|
2021-10-08 06:37:02 +02:00
|
|
|
<span v-else-if="emailState === 'unavailable'" style="color: var(--error)"><i class="fas fa-exclamation-triangle fa-fw"></i> {{ $ts.unavailable }}</span>
|
|
|
|
<span v-else-if="emailState === 'error'" style="color: var(--error)"><i class="fas fa-exclamation-triangle fa-fw"></i> {{ $ts.error }}</span>
|
2019-02-23 19:56:15 +01:00
|
|
|
</template>
|
2020-10-17 13:12:00 +02:00
|
|
|
</MkInput>
|
2021-09-29 17:50:45 +02:00
|
|
|
<MkInput class="_formBlock" v-model="password" type="password" :autocomplete="Math.random()" required @update:modelValue="onChangePassword" data-cy-signup-password>
|
2021-08-06 15:29:19 +02:00
|
|
|
<template #label>{{ $ts.password }}</template>
|
2021-04-20 16:22:59 +02:00
|
|
|
<template #prefix><i class="fas fa-lock"></i></template>
|
2021-08-06 15:29:19 +02:00
|
|
|
<template #caption>
|
|
|
|
<span v-if="passwordStrength == 'low'" style="color: var(--error)"><i class="fas fa-exclamation-triangle fa-fw"></i> {{ $ts.weakPassword }}</span>
|
|
|
|
<span v-if="passwordStrength == 'medium'" style="color: var(--warn)"><i class="fas fa-check fa-fw"></i> {{ $ts.normalPassword }}</span>
|
|
|
|
<span v-if="passwordStrength == 'high'" style="color: var(--success)"><i class="fas fa-check fa-fw"></i> {{ $ts.strongPassword }}</span>
|
2019-02-18 01:48:00 +01:00
|
|
|
</template>
|
2020-10-17 13:12:00 +02:00
|
|
|
</MkInput>
|
2021-09-29 17:50:45 +02:00
|
|
|
<MkInput class="_formBlock" v-model="retypedPassword" type="password" :autocomplete="Math.random()" required @update:modelValue="onChangePasswordRetype" data-cy-signup-password-retype>
|
2021-08-06 15:29:19 +02:00
|
|
|
<template #label>{{ $ts.password }} ({{ $ts.retype }})</template>
|
2021-04-20 16:22:59 +02:00
|
|
|
<template #prefix><i class="fas fa-lock"></i></template>
|
2021-08-06 15:29:19 +02:00
|
|
|
<template #caption>
|
|
|
|
<span v-if="passwordRetypeState == 'match'" style="color: var(--success)"><i class="fas fa-check fa-fw"></i> {{ $ts.passwordMatched }}</span>
|
|
|
|
<span v-if="passwordRetypeState == 'not-match'" style="color: var(--error)"><i class="fas fa-exclamation-triangle fa-fw"></i> {{ $ts.passwordNotMatched }}</span>
|
2019-02-18 01:48:00 +01:00
|
|
|
</template>
|
2020-10-17 13:12:00 +02:00
|
|
|
</MkInput>
|
2021-09-29 17:50:45 +02:00
|
|
|
<label v-if="meta.tosUrl" class="_formBlock tou">
|
2020-11-29 14:13:10 +01:00
|
|
|
<input type="checkbox" v-model="ToSAgreement">
|
2020-12-26 02:47:36 +01:00
|
|
|
<I18n :src="$ts.agreeTo">
|
2020-12-28 05:58:57 +01:00
|
|
|
<template #0>
|
|
|
|
<a :href="meta.tosUrl" class="_link" target="_blank">{{ $ts.tos }}</a>
|
|
|
|
</template>
|
2020-12-26 02:01:32 +01:00
|
|
|
</I18n>
|
2020-11-29 14:13:10 +01:00
|
|
|
</label>
|
2021-09-29 17:50:45 +02:00
|
|
|
<captcha v-if="meta.enableHcaptcha" class="_formBlock captcha" provider="hcaptcha" ref="hcaptcha" v-model="hCaptchaResponse" :sitekey="meta.hcaptchaSiteKey"/>
|
|
|
|
<captcha v-if="meta.enableRecaptcha" class="_formBlock captcha" provider="recaptcha" ref="recaptcha" v-model="reCaptchaResponse" :sitekey="meta.recaptchaSiteKey"/>
|
2021-10-13 18:27:45 +02:00
|
|
|
<MkButton class="_formBlock" type="submit" :disabled="shouldDisableSubmitting" gradate data-cy-signup-submit>{{ $ts.start }}</MkButton>
|
2018-08-21 18:02:56 +02:00
|
|
|
</template>
|
2018-02-10 08:22:14 +01:00
|
|
|
</form>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2020-10-17 13:12:00 +02:00
|
|
|
import { defineComponent, defineAsyncComponent } from 'vue';
|
2018-02-10 08:22:14 +01:00
|
|
|
const getPasswordStrength = require('syuilo-password-strength');
|
2021-04-04 06:00:39 +02:00
|
|
|
import { toUnicode } from 'punycode/';
|
2021-03-23 09:30:14 +01:00
|
|
|
import { host, url } from '@client/config';
|
2020-01-29 20:37:25 +01:00
|
|
|
import MkButton from './ui/button.vue';
|
2021-09-29 17:50:45 +02:00
|
|
|
import MkInput from './form/input.vue';
|
|
|
|
import MkSwitch from './form/switch.vue';
|
2021-03-23 09:30:14 +01:00
|
|
|
import * as os from '@client/os';
|
|
|
|
import { login } from '@client/account';
|
2018-02-10 08:22:14 +01:00
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
export default defineComponent({
|
2020-01-29 20:37:25 +01:00
|
|
|
components: {
|
|
|
|
MkButton,
|
|
|
|
MkInput,
|
|
|
|
MkSwitch,
|
2020-10-17 13:12:00 +02:00
|
|
|
captcha: defineAsyncComponent(() => import('./captcha.vue')),
|
2020-01-29 20:37:25 +01:00
|
|
|
},
|
2018-12-18 16:39:28 +01:00
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
props: {
|
|
|
|
autoSet: {
|
|
|
|
type: Boolean,
|
|
|
|
required: false,
|
|
|
|
default: false,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
emits: ['signup'],
|
|
|
|
|
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: '',
|
2021-10-08 06:37:02 +02:00
|
|
|
email: '',
|
2018-02-11 04:08:43 +01:00
|
|
|
url,
|
2018-02-10 09:01:32 +01:00
|
|
|
usernameState: null,
|
2021-10-08 06:37:02 +02:00
|
|
|
emailState: null,
|
2018-02-10 09:01:32 +01:00
|
|
|
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-04-28 07:29:33 +02:00
|
|
|
hCaptchaResponse: null,
|
2020-04-29 02:15:18 +02:00
|
|
|
reCaptchaResponse: null,
|
2018-02-10 08:22:14 +01:00
|
|
|
}
|
|
|
|
},
|
2018-12-18 16:39:28 +01:00
|
|
|
|
2018-02-11 04:08:43 +01:00
|
|
|
computed: {
|
2020-02-10 15:17:42 +01:00
|
|
|
meta() {
|
2020-12-19 02:55:52 +01:00
|
|
|
return this.$instance;
|
2020-02-10 15:17:42 +01:00
|
|
|
},
|
2020-04-28 07:29:33 +02:00
|
|
|
|
|
|
|
shouldDisableSubmitting(): boolean {
|
|
|
|
return this.submitting ||
|
|
|
|
this.meta.tosUrl && !this.ToSAgreement ||
|
|
|
|
this.meta.enableHcaptcha && !this.hCaptchaResponse ||
|
2020-04-29 02:54:21 +02:00
|
|
|
this.meta.enableRecaptcha && !this.reCaptchaResponse ||
|
2020-04-28 07:29:33 +02:00
|
|
|
this.passwordRetypeState == 'not-match';
|
|
|
|
},
|
|
|
|
|
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
|
|
|
|
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
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
os.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
|
|
|
|
2021-10-08 06:37:02 +02:00
|
|
|
onChangeEmail() {
|
|
|
|
if (this.email == '') {
|
|
|
|
this.emailState = null;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.emailState = 'wait';
|
|
|
|
|
|
|
|
os.api('email-address/available', {
|
|
|
|
emailAddress: this.email
|
|
|
|
}).then(result => {
|
2021-11-07 12:16:01 +01:00
|
|
|
this.emailState = result.available ? 'ok' :
|
|
|
|
result.reason === 'used' ? 'unavailable:used' :
|
|
|
|
result.reason === 'format' ? 'unavailable:format' :
|
|
|
|
result.reason === 'disposable' ? 'unavailable:disposable' :
|
|
|
|
result.reason === 'mx' ? 'unavailable:mx' :
|
|
|
|
result.reason === 'smtp' ? 'unavailable:smtp' :
|
|
|
|
'unavailable';
|
2021-10-08 06:37:02 +02:00
|
|
|
}).catch(err => {
|
|
|
|
this.emailState = 'error';
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
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;
|
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
os.api('signup', {
|
2018-02-10 09:01:32 +01:00
|
|
|
username: this.username,
|
|
|
|
password: this.password,
|
2021-10-08 06:37:02 +02:00
|
|
|
emailAddress: this.email,
|
2018-08-17 12:17:23 +02:00
|
|
|
invitationCode: this.invitationCode,
|
2020-04-28 07:29:33 +02:00
|
|
|
'hcaptcha-response': this.hCaptchaResponse,
|
2020-05-15 13:37:05 +02:00
|
|
|
'g-recaptcha-response': this.reCaptchaResponse,
|
2019-01-18 08:46:56 +01:00
|
|
|
}).then(() => {
|
2021-10-08 06:37:02 +02:00
|
|
|
if (this.meta.emailRequiredForSignup) {
|
|
|
|
os.dialog({
|
|
|
|
type: 'success',
|
|
|
|
title: this.$ts._signup.almostThere,
|
|
|
|
text: this.$t('_signup.emailSent', { email: this.email }),
|
|
|
|
});
|
|
|
|
this.$emit('signupEmailPending');
|
|
|
|
} else {
|
|
|
|
os.api('signin', {
|
|
|
|
username: this.username,
|
|
|
|
password: this.password
|
|
|
|
}).then(res => {
|
|
|
|
this.$emit('signup', res);
|
|
|
|
|
|
|
|
if (this.autoSet) {
|
|
|
|
login(res.i);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2018-02-10 09:01:32 +01:00
|
|
|
}).catch(() => {
|
2019-07-09 20:47:07 +02:00
|
|
|
this.submitting = false;
|
2020-04-29 02:15:18 +02:00
|
|
|
this.$refs.hcaptcha?.reset?.();
|
|
|
|
this.$refs.recaptcha?.reset?.();
|
2019-07-09 20:47:07 +02:00
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
os.dialog({
|
2019-04-16 06:05:10 +02:00
|
|
|
type: 'error',
|
2020-12-26 02:47:36 +01:00
|
|
|
text: this.$ts.somethingHappened
|
2019-04-16 06:05:10 +02:00
|
|
|
});
|
2018-02-10 09:01:32 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
2020-04-29 02:15:18 +02:00
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
2021-08-22 09:15:40 +02:00
|
|
|
.qlvuhzng {
|
2020-04-29 02:15:18 +02:00
|
|
|
.captcha {
|
|
|
|
margin: 16px 0;
|
|
|
|
}
|
2020-11-29 14:13:10 +01:00
|
|
|
|
|
|
|
> .tou {
|
|
|
|
display: block;
|
|
|
|
margin: 16px 0;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2020-04-29 02:15:18 +02:00
|
|
|
}
|
|
|
|
</style>
|