298 lines
8.1 KiB
Vue
298 lines
8.1 KiB
Vue
<template>
|
|
<div
|
|
id="user-auth-form"
|
|
:class="`${
|
|
['reset', 'reset-request'].includes(action) ? action : 'user-form'
|
|
}`"
|
|
>
|
|
<div id="user-form">
|
|
<div
|
|
class="form-box"
|
|
:class="{
|
|
disabled: registration_disabled,
|
|
}"
|
|
>
|
|
<AlertMessage
|
|
message="user.REGISTER_DISABLED"
|
|
v-if="registration_disabled"
|
|
/>
|
|
<div
|
|
class="info-box success-message"
|
|
v-if="isSuccess || isRegistrationSuccess"
|
|
>
|
|
{{
|
|
$t(
|
|
`user.PROFILE.SUCCESSFUL_${
|
|
isRegistrationSuccess ? 'REGISTRATION' : 'UPDATE'
|
|
}`
|
|
)
|
|
}}
|
|
</div>
|
|
<form
|
|
:class="{ errors: formErrors }"
|
|
@submit.prevent="onSubmit(action)"
|
|
>
|
|
<div class="form-items">
|
|
<input
|
|
v-if="action === 'register'"
|
|
id="username"
|
|
:disabled="registration_disabled"
|
|
required
|
|
pattern="[a-zA-Z0-9_]+"
|
|
minlength="3"
|
|
maxlength="30"
|
|
@invalid="invalidateForm"
|
|
v-model="formData.username"
|
|
:placeholder="$t('user.USERNAME')"
|
|
/>
|
|
<div v-if="action === 'register'" class="form-info">
|
|
<i class="fa fa-info-circle" aria-hidden="true" />
|
|
{{ $t('user.USERNAME_INFO') }}
|
|
</div>
|
|
<input
|
|
v-if="action !== 'reset'"
|
|
id="email"
|
|
:disabled="registration_disabled"
|
|
required
|
|
@invalid="invalidateForm"
|
|
type="email"
|
|
v-model="formData.email"
|
|
:placeholder="$t('user.EMAIL')"
|
|
/>
|
|
<div
|
|
v-if="
|
|
[
|
|
'reset-request',
|
|
'register',
|
|
'account-confirmation-resend',
|
|
].includes(action)
|
|
"
|
|
class="form-info"
|
|
>
|
|
<i class="fa fa-info-circle" aria-hidden="true" />
|
|
{{ $t('user.EMAIL_INFO') }}
|
|
</div>
|
|
<PasswordInput
|
|
v-if="
|
|
!['account-confirmation-resend', 'reset-request'].includes(
|
|
action
|
|
)
|
|
"
|
|
:disabled="registration_disabled"
|
|
:required="true"
|
|
:placeholder="
|
|
action === 'reset'
|
|
? $t('user.ENTER_PASSWORD')
|
|
: $t('user.PASSWORD')
|
|
"
|
|
:password="formData.password"
|
|
:checkStrength="['reset', 'register'].includes(action)"
|
|
@updatePassword="updatePassword"
|
|
@passwordError="invalidateForm"
|
|
/>
|
|
</div>
|
|
<button type="submit" :disabled="registration_disabled">
|
|
{{ $t(buttonText) }}
|
|
</button>
|
|
</form>
|
|
<div v-if="action === 'login'">
|
|
<router-link class="links" to="/register">
|
|
{{ $t('user.REGISTER') }}
|
|
</router-link>
|
|
-
|
|
<router-link class="links" to="/password-reset/request">
|
|
{{ $t('user.PASSWORD_FORGOTTEN') }}
|
|
</router-link>
|
|
</div>
|
|
<div v-if="action === 'register'">
|
|
<span class="account">{{ $t('user.ALREADY_HAVE_ACCOUNT') }}</span>
|
|
<router-link class="links" to="/login">
|
|
{{ $t('user.LOGIN') }}
|
|
</router-link>
|
|
</div>
|
|
<div v-if="['login', 'register'].includes(action)">
|
|
<router-link class="links" to="/account-confirmation/resend">
|
|
{{ $t('user.ACCOUNT_CONFIRMATION_NOT_RECEIVED') }}
|
|
</router-link>
|
|
</div>
|
|
<ErrorMessage :message="errorMessages" v-if="errorMessages" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import {
|
|
ComputedRef,
|
|
computed,
|
|
reactive,
|
|
ref,
|
|
toRefs,
|
|
watch,
|
|
withDefaults,
|
|
} from 'vue'
|
|
import { useRoute } from 'vue-router'
|
|
|
|
import PasswordInput from '@/components/Common/PasswordInput.vue'
|
|
import { AUTH_USER_STORE, ROOT_STORE } from '@/store/constants'
|
|
import { TAppConfig } from '@/types/application'
|
|
import { ILoginRegisterFormData } from '@/types/user'
|
|
import { useStore } from '@/use/useStore'
|
|
|
|
interface Props {
|
|
action: string
|
|
token?: string
|
|
}
|
|
const props = withDefaults(defineProps<Props>(), {
|
|
token: '',
|
|
})
|
|
|
|
const route = useRoute()
|
|
const store = useStore()
|
|
|
|
const { action } = toRefs(props)
|
|
const formData: ILoginRegisterFormData = reactive({
|
|
username: '',
|
|
email: '',
|
|
password: '',
|
|
})
|
|
const buttonText: ComputedRef<string> = computed(() =>
|
|
getButtonText(props.action)
|
|
)
|
|
const errorMessages: ComputedRef<string | string[] | null> = computed(
|
|
() => store.getters[ROOT_STORE.GETTERS.ERROR_MESSAGES]
|
|
)
|
|
const isRegistrationSuccess: ComputedRef<boolean> = computed(
|
|
() => store.getters[AUTH_USER_STORE.GETTERS.IS_REGISTRATION_SUCCESS]
|
|
)
|
|
const isSuccess: ComputedRef<boolean> = computed(
|
|
() => store.getters[AUTH_USER_STORE.GETTERS.IS_SUCCESS]
|
|
)
|
|
const appConfig: ComputedRef<TAppConfig> = computed(
|
|
() => store.getters[ROOT_STORE.GETTERS.APP_CONFIG]
|
|
)
|
|
const registration_disabled: ComputedRef<boolean> = computed(
|
|
() =>
|
|
props.action === 'register' && !appConfig.value.is_registration_enabled
|
|
)
|
|
const formErrors = ref(false)
|
|
|
|
function getButtonText(action: string): string {
|
|
switch (action) {
|
|
case 'reset-request':
|
|
case 'reset':
|
|
return 'buttons.SUBMIT'
|
|
default:
|
|
return `buttons.${props.action.toUpperCase()}`
|
|
}
|
|
}
|
|
function invalidateForm() {
|
|
formErrors.value = true
|
|
}
|
|
function updatePassword(password: string) {
|
|
formData.password = password
|
|
}
|
|
function onSubmit(actionType: string) {
|
|
switch (actionType) {
|
|
case 'reset':
|
|
if (!props.token) {
|
|
return store.commit(
|
|
ROOT_STORE.MUTATIONS.SET_ERROR_MESSAGES,
|
|
'user.INVALID_TOKEN'
|
|
)
|
|
}
|
|
return store.dispatch(AUTH_USER_STORE.ACTIONS.RESET_USER_PASSWORD, {
|
|
password: formData.password,
|
|
token: props.token,
|
|
})
|
|
case 'reset-request':
|
|
return store.dispatch(
|
|
AUTH_USER_STORE.ACTIONS.SEND_PASSWORD_RESET_REQUEST,
|
|
{
|
|
email: formData.email,
|
|
}
|
|
)
|
|
case 'account-confirmation-resend':
|
|
return store.dispatch(
|
|
AUTH_USER_STORE.ACTIONS.RESEND_ACCOUNT_CONFIRMATION_EMAIL,
|
|
{
|
|
email: formData.email,
|
|
}
|
|
)
|
|
default:
|
|
store.dispatch(AUTH_USER_STORE.ACTIONS.LOGIN_OR_REGISTER, {
|
|
actionType,
|
|
formData,
|
|
redirectUrl: route.query.from,
|
|
})
|
|
}
|
|
}
|
|
function resetFormData() {
|
|
formData.username = ''
|
|
formData.email = ''
|
|
formData.password = ''
|
|
}
|
|
|
|
watch(
|
|
() => route.path,
|
|
async () => {
|
|
store.commit(ROOT_STORE.MUTATIONS.EMPTY_ERROR_MESSAGES)
|
|
store.commit(AUTH_USER_STORE.MUTATIONS.UPDATE_IS_SUCCESS, false)
|
|
store.commit(
|
|
AUTH_USER_STORE.MUTATIONS.UPDATE_IS_REGISTRATION_SUCCESS,
|
|
false
|
|
)
|
|
formErrors.value = false
|
|
resetFormData()
|
|
}
|
|
)
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
@import '~@/scss/colors.scss';
|
|
@import '~@/scss/vars.scss';
|
|
|
|
#user-auth-form {
|
|
display: flex;
|
|
|
|
#user-form {
|
|
width: 60%;
|
|
|
|
.account {
|
|
font-size: 0.9em;
|
|
padding-left: $default-padding;
|
|
}
|
|
.links {
|
|
font-size: 0.9em;
|
|
font-style: italic;
|
|
padding: 0 $default-padding;
|
|
}
|
|
button {
|
|
margin: $default-margin;
|
|
border: solid 1px var(--app-color);
|
|
|
|
&:disabled {
|
|
border-color: var(--disabled-color);
|
|
}
|
|
}
|
|
.success-message {
|
|
margin: $default-margin;
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: $medium-limit) {
|
|
margin-bottom: 50px;
|
|
#user-form {
|
|
width: 100%;
|
|
}
|
|
}
|
|
}
|
|
|
|
.user-form {
|
|
margin-top: 200px;
|
|
@media screen and (max-width: $small-limit) {
|
|
margin-top: $default-margin;
|
|
}
|
|
}
|
|
</style>
|