1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
|
<template>
<div class="mt-5">
<div class="row d-flex justify-content-center">
<div class="col-md-7">
<div class="card px-5 py-4 mb-3">
<form>
<div class="text-center mb-4">
<h4>Login</h4>
</div>
<div class="forms-inputs mb-4">
<span>Email</span>
<input type="text" v-model="email"
:class="{'form-control': true, 'is-invalid' : !validEmail(email) && emailBlured}"
@blur="emailBlured = true">
<div class="invalid-feedback">A valid email is required!</div>
</div>
<div class="forms-inputs mb-4">
<span>Password</span>
<input type="password" v-model="password"
:class="{'form-control': true, 'is-invalid' : !validPassword(password) && passwordBlured}"
@blur="passwordBlured = true">
<div class="invalid-feedback">Password is required!</div>
</div>
<div class="forms-inputs mb-4">
<input type="submit" value="Submit" class="btn btn-dark w-100" @click.stop.prevent="login">
</div>
</form>
</div>
</div>
</div>
</div>
<Modal :title="modalTitle" v-if="showModal" @close="closeBtnAction">
<p v-text="modalText"></p>
</Modal>
</template>
<script>
import validator from 'validator';
import Modal from '@/components/Modal.vue';
export default {
name: 'Login',
components: {
Modal
},
data() {
return {
valid: false,
email: "",
emailBlured : false,
password: "",
passwordBlured:false,
showModal: false,
modalTitle: '',
modalText: '',
closeBtnAction: null
}
},
methods: {
validEmail: (email) => validator.isEmail(email),
validPassword: (password) => password.length,
validate() {
this.emailBlured = true;
this.passwordBlured = true;
if (this.validEmail(this.email) && this.validPassword(this.password)) {
this.valid = true;
}
else {
this.valid = false;
}
},
login() {
this.validate();
const successMsg = () => {
this.modalTitle = 'Success!';
this.modalText = 'You successfully logged in!';
this.showModal = true;
this.closeBtnAction = () => this.$router.push('/');
};
const failureMsg = () => {
this.modalTitle = 'Failure!';
this.modalText = 'You failed to login.';
this.showModal = true;
this.closeBtnAction = () => this.showModal = false;
};
if (this.valid) {
const requestData = {
email: this.email,
password: this.password
};
this.$store.dispatch('login', requestData)
.then(() => successMsg())
.catch(() => failureMsg());
}
else {
failureMsg();
}
}
}
}
</script>
<style lang="scss">
.forms-inputs input:focus {
border: 2px solid #000
}
</style>
|