FitTrackee/fittrackee_client/src/components/User/LoginOrRegisterForm.vue

172 lines
4.5 KiB
Vue
Raw Normal View History

2021-08-14 19:43:19 +02:00
<template>
<div id="login-or-register-form">
2021-08-14 19:43:19 +02:00
<div id="user-form">
<div
class="form-box"
:class="{
disabled: registration_disabled,
}"
>
2021-08-14 19:43:19 +02:00
<form @submit.prevent="onSubmit(action)">
<div class="form-items">
<input
v-if="action === 'register'"
id="username"
:disabled="registration_disabled"
2021-08-14 19:43:19 +02:00
required
v-model="formData.username"
:placeholder="t('user.USERNAME')"
/>
<input
id="email"
:disabled="registration_disabled"
2021-08-14 19:43:19 +02:00
required
type="email"
v-model="formData.email"
:placeholder="t('user.EMAIL')"
/>
<input
id="password"
:disabled="registration_disabled"
2021-08-14 19:43:19 +02:00
required
type="password"
v-model="formData.password"
:placeholder="t('user.PASSWORD')"
/>
<input
v-if="action === 'register'"
id="confirm-password"
:disabled="registration_disabled"
2021-08-14 19:43:19 +02:00
type="password"
required
v-model="formData.password_conf"
:placeholder="t('user.PASSWORD-CONFIRM')"
/>
</div>
<button type="submit" :disabled="registration_disabled">
{{ t(buttonText) }}
</button>
2021-08-14 19:43:19 +02:00
</form>
<ErrorMessage :message="errorMessages" v-if="errorMessages" />
<AlertMessage
message="user.REGISTER_DISABLED"
v-if="registration_disabled"
/>
2021-08-14 19:43:19 +02:00
</div>
</div>
</div>
</template>
<script lang="ts">
import { ComputedRef, computed, defineComponent, reactive, watch } from 'vue'
2021-08-14 19:43:19 +02:00
import { useI18n } from 'vue-i18n'
import { useRoute } from 'vue-router'
2021-08-14 19:43:19 +02:00
import { IFormData } from '@/interfaces'
import { ROOT_STORE, USER_STORE } from '@/store/constants'
import { IAppConfig } from '@/store/modules/root/interfaces'
2021-08-14 19:43:19 +02:00
import { useStore } from '@/use/useStore'
import AlertMessage from '@/components/Common/AlertMessage.vue'
import ErrorMessage from '@/components/Common/ErrorMessage.vue'
import router from '@/router'
2021-08-14 19:43:19 +02:00
export default defineComponent({
name: 'LoginOrRegisterForm',
components: {
AlertMessage,
ErrorMessage,
},
2021-08-14 19:43:19 +02:00
props: {
action: {
type: String,
required: true,
},
},
setup(props) {
2021-08-14 19:43:19 +02:00
const formData: IFormData = reactive({
username: '',
email: '',
password: '',
password_conf: '',
})
const { t } = useI18n()
const route = useRoute()
2021-08-14 19:43:19 +02:00
const store = useStore()
const buttonText: ComputedRef<string> = computed(() =>
props.action === 'register' ? 'buttons.REGISTER' : 'buttons.LOGIN'
)
const errorMessages: ComputedRef<string | string[] | null> = computed(
() => store.getters[ROOT_STORE.GETTERS.ERROR_MESSAGES]
)
const appConfig: ComputedRef<IAppConfig> = computed(
() => store.getters[ROOT_STORE.GETTERS.APP_CONFIG]
)
const registration_disabled: ComputedRef<boolean> = computed(
() =>
props.action === 'register' &&
!appConfig.value.is_registration_enabled
)
2021-08-14 19:43:19 +02:00
function onSubmit(actionType: string) {
return store.dispatch(USER_STORE.ACTIONS.LOGIN_OR_REGISTER, {
actionType,
formData,
})
}
function resetFormData() {
formData.username = ''
formData.email = ''
formData.password = ''
formData.password_conf = ''
}
watch(
() => route.path,
async () => {
store.commit(ROOT_STORE.MUTATIONS.EMPTY_ERROR_MESSAGES)
resetFormData()
}
)
2021-08-14 19:43:19 +02:00
return {
t,
appConfig,
buttonText,
errorMessages,
2021-08-14 19:43:19 +02:00
formData,
onSubmit,
registration_disabled,
router,
2021-08-14 19:43:19 +02:00
}
},
})
</script>
<style scoped lang="scss">
@import '~@/scss/base';
#login-or-register-form {
2021-08-14 19:43:19 +02:00
display: flex;
align-items: center;
margin: $default-margin 0;
2021-08-15 09:24:10 +02:00
height: 100%;
2021-08-14 19:43:19 +02:00
#user-form {
width: 60%;
button {
margin: $default-margin;
}
@media screen and (max-width: $medium-limit) {
margin-top: $default-margin;
width: 100%;
}
}
@media screen and (max-width: $medium-limit) {
height: auto;
margin-bottom: 50px;
2021-08-14 19:43:19 +02:00
}
}
</style>