-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
299 lines (255 loc) · 9.44 KB
/
script.js
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
(function(window, $) {
var Pessoa = function(data) {
var _this = this;
_this.idade = -1;
_this.telefones = [];
_this.errors = [];
this.setNome = function(value) {
if(value.length < 10 || value.length > 40) {
_this.errors.push('O nome deve conter somente letras maiúsculas, mínimo de 10 e máximo de 40 caracteres');
return false;
}
return _this.nome = value.toUpperCase();
};
this.setCpf = function(value) {
var numbers = value.match(/\d+/g);
if(!numbers || numbers.length !== 4 || numbers.join('').length !== 11) {
_this.errors.push('O CPF deve conter apenas números, exatamente 11 posições');
return false;
}
return _this.cpf = value;
};
this.setRg = function(value) {
if(value.length < 8) {
_this.errors.push('O RG é um campo obrigatório');
return false;
}
return _this.rg = value;
};
this.setDataNascimento = function(value) {
_this.idade = moment().diff(moment(value, 'DD/MM/YYYY'), 'years');
if(_this.idade < 16) {
_this.errors.push('Data de nascimento, somente de pessoas que possuam 16 anos completos ou mais');
return false;
}
return _this.data_nascimento = moment(value, 'DD/MM/YYYY').format('YYYY-MM-DD');
};
this.setDataCadastro = function(value) {
var days = moment().diff(moment(value), 'days');
if(days <= 0 || days > 365) {
_this.errors.push('A data de cadastro não deve ser superior a data atual e inferior a 365 dias');
return false;
}
return _this.data_cadastro = value;
};
this.setSexo = function(value) {
if(value.length < 1) {
_this.errors.push('O campo sexo é um campo obrigatório');
return false;
}
return _this.sexo = value;
};
this.setReservista = function(value) {
if(_this.sexo === 'M' && _this.idade > 18 && value.length < 1) {
_this.errors.push('O campo reservista é obrigatório');
return false;
}
return _this.reservista = value;
};
this.setTelefones = function(data) {
var error = false;
data.telefone_tipo.forEach(function(current, index) {
var val1 = data.telefone[index].value;
var val2 = data.telefone[index].value;
var numbers = val2.match(/\d+/g);
if(!numbers || numbers.join('').length < 10 || val1.length < 1) {
error = true;
return false;
}
_this.telefones.push({
telefone_tipo: val1,
telefone: val2
});
});
if(error) {
_this.errors.push('Para cada telefone informe se é "Fixo" ou "Celular"');
return false;
}
return _this.telefones;
};
this.getErrors = function() {
return _this.errors;
};
this.isValid = function() {
return _this.errors.length <= 0;
};
this.save = function() {
console.log({
nome: _this.nome,
cpf: _this.cpf,
rg: _this.rg,
data_nascimento: _this.data_nascimento,
data_cadastro: _this.data_cadastro,
sexo: _this.sexo,
reservista: _this.reservista,
telefones: _this.telefones
});
};
_this.nome = (data && data.nome ? this.setNome(data.nome.value) : '');
_this.cpf = (data && data.cpf ? this.setCpf(data.cpf.value) : '');
_this.rg = (data && data.rg ? this.setRg(data.rg.value) : '');
_this.data_nascimento = (data && data.data_nascimento ? this.setDataNascimento(data.data_nascimento.value) : '');
_this.data_cadastro = (data && data.data_cadastro ? this.setDataCadastro(data.data_cadastro.value) : '');
_this.sexo = (data && data.sexo ? this.setSexo(data.sexo.value) : '');
_this.reservista = (data && data.reservista ? this.setReservista(data.reservista.value) : '');
};
window.Pessoa = Pessoa;
return window.Pessoa;
})(window, $);
(function(window, $) {
var App = function() {
var _this = this;
this.load = function() {
$(function() {
// console.clear();
_this.addRequiredMessageTags();
_this.onSexoFieldChange();
// _this.fillForTestPurpose();
});
};
// Adding `p span` automatically to the required fields
this.addRequiredMessageTags = function() {
var required = $('.validate').find('.required').parent();
if(required.find('p span').length === 0) {
required.append('<p><span></span></p>');
}
};
this.fillForTestPurpose = function() {
var form = $('.validate');
form.find('[name="nome"]').val('Pablo Ricardo Rocha');
form.find('[name="cpf"]').val('152.982.155-05');
form.find('[name="rg"]').val('9878548-9');
form.find('[name="data_nascimento"]').val('21/04/1989');
form.find('[name="data_cadastro"]').val(moment().format('YYYY-MM-DD'));
form.find('[name="sexo"]').val('M');
form.find('[name="sexo"]').change();
form.find('[name="reservista"]').prop('disabled', false);
form.find('[name="reservista"]').val('999');
form.find('[name="telefone_tipo[]"]').eq(0).val('fixo');
form.find('[name="telefone[]"]').eq(0).val('(44)3325-9874');
};
this.onSexoFieldChange = function() {
$('[name="sexo"]').change(function() {
var field = $('[name="reservista"]');
if(this.value === 'M') {
field.prop('disabled', false);
field.parent().removeClass('hide');
} else {
field.prop('disabled', true);
field.parent().addClass('hide');
}
});
};
// @TODO: need improve this
this.addTelefoneFields = function(element) {
var $div = $(element).parent().find('[id^="telefone_tipo-"]');
var num = parseInt( $div.prop("id").match(/\d+/g), 10 ) +1;
var clone = $(element).parent().clone();
clone.find('[id^="telefone_tipo-"]')
.prop('id', 'telefone_tipo-' + num)
.prop('value', '');
clone.find('[id^="telefone-"]')
.prop('id', 'telefone-' + num)
.prop('value', '');
clone.insertAfter($(element).parent());
clone.find('[id^="telefone-"]').focus();
$div.parent().find('button').remove();
// need reload the mask
//$('head').append('<script src="js/jquery.mask.js" type="text/javascript"></script>');
$('.fone').mask('(99)9999-9999');
};
this.validateToggle = function(isvalid, field) {
setTimeout(function() {
var element = $('[name="' + field + '"]');
if(isvalid && !element.hasClass('invalid')) {
element.removeClass('invalid');
element.addClass('valid');
} else {
element.removeClass('valid');
element.addClass('invalid');
}
}, 0);
};
this.validate = function(form) {
var pessoa = new window.Pessoa();
_this.validateToggle(pessoa.setNome(form.nome.value), 'nome');
_this.validateToggle(pessoa.setCpf(form.cpf.value), 'cpf');
_this.validateToggle(pessoa.setRg(form.rg.value), 'rg');
_this.validateToggle(pessoa.setDataNascimento(form.data_nascimento.value), 'data_nascimento');
_this.validateToggle(pessoa.setDataCadastro(form.data_cadastro.value), 'data_cadastro');
_this.validateToggle(pessoa.setSexo(form.sexo.value), 'sexo');
var isReservistaValid = pessoa.setReservista(form.reservista.value);
_this.validateToggle(isReservistaValid, 'reservista');
if(!isReservistaValid) {
var field = $('[name="reservista"]');
field.prop('required', true);
field.addClass('required');
// @TODO: not working
_this.addRequiredMessageTags();
}
var telefones = pessoa.setTelefones({
telefone_tipo: $('[name^="telefone_tipo[]"]').serializeArray(),
telefone: $('[name^="telefone[]"]').serializeArray()
});
if(!telefones) {
$.each($('[name^="telefone_tipo"]'), function(index, value) {
if($(this).val().length <= 0 || $(this).next().val().length <= 0) {
$(this).addClass('required invalid');
$(this).prop('required', true);
$(this).next().addClass('required invalid');
$(this).next().prop('required', true);
} else {
$(this).removeClass('required invalid');
$(this).prop('required', false);
$(this).next().removeClass('required invalid');
$(this).next().prop('required', false);
}
});
}
var isvalid = pessoa.isValid();
if(!isvalid) {
$('.messages').show();
$('.messages').html(pessoa.getErrors().join('<br />'));
} else {
$('.messages').hide();
// checking for others pluggins that also validate the form like $('.cpf')
// if valid, you can save the object
setTimeout(function() {
if($('.invalid').length === 0) {
pessoa.save();
}
}, 0);
// returning false for test purpose
return false;
}
return isvalid;
};
this.reset = function(form) {
$('.invalid').remove();
$('.messages').hide();
$('.messages').html('');
var total = $('[name^="telefone_tipo"]').length - 1;
$.each($('[name^="telefone_tipo"]'), function(index, value) {
if(index !== total) {
$(this).parent().remove();
}
});
form.reset();
// hiding the reservista field
$('[name="sexo"]').change();
$('[name="nome"]').focus();
};
};
window.App = new App();
return window.App;
})(window, jQuery).load();