-
Notifications
You must be signed in to change notification settings - Fork 0
/
date-processing-scripts.js
50 lines (45 loc) · 1.07 KB
/
date-processing-scripts.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
let type1 = "3 de Janeiro de 2018"
const parseMonth = (monthPT) => {
switch(monthPT) {
case 'janeiro':
return 1;
case 'fevereiro':
return 2;
case 'março':
return 3;
case 'abril':
return 4;
case 'maio':
return 5;
case 'junho':
return 6;
case 'julho':
return 7;
case 'agosto':
return 8;
case 'setembro':
return 9;
case 'outubro':
return 10;
case 'novembro':
return 11;
case 'dezembro':
return 12;
default:
return 1 + new Date().getMonth();
}
}
const parseDate = (date) => {
if(date) {
let splitDate = date.split(" ");
let day = splitDate[0]
let month = parseMonth(splitDate[2].toLowerCase());
let year = splitDate[4]
let currentDate = new Date();
let hoursAndMinutes = currentDate.getHours() + ':' + currentDate.getMinutes();
let correctedDate = `${month}/${day}/${year}`;
let dateTime = `${correctedDate} ${hoursAndMinutes}`;
return new Date(dateTime).toString();
}
return new Date().toString();
}