-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwindowHeader.tsx
48 lines (42 loc) · 1.62 KB
/
windowHeader.tsx
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
import React from 'react';
const getDayLiteral = (e: number) => {
switch(e) {
case 0:
return "SUN";
case 1:
return "MON";
case 2:
return "TEU";
case 3:
return "WED";
case 4:
return "THU";
case 5:
return "FRI";
case 6:
return "SAT";
default:
return "SUN";
}
}
const getMonth = (e: number) => {
const monthNames = ["January", "February", "March", "April", "May", "June",
"July", "August", "September", "October", "November", "December"
];
return monthNames[e];
}
const WindowHeader = () => {
return (
<div className="overflow-hidden relative" style={{zIndex : 5, backgroundColor : "rgb(227, 226, 252, 0.3)"}}>
<div className="float-left text-black flex flex-row ml-3" style={{zIndex : 10}}>
<div className="text-center font-sans text-xl text-white m-1 mr-4 mt-0"></div>
<div className="text-center font-sans text-md text-white m-1">Finder</div>
</div>
<div className="float-right text-white text-sm flex-row flex mr-3" style={{ zIndex: 10 }}>
<div className="text-center font-sans text-md text-white m-1" >{getDayLiteral(new Date().getDay())} {' '} {new Date().getDate()} {' '} {getMonth(new Date().getMonth())}</div>
<div className="text-center font-sans text-md text-white m-1" >{new Date().toLocaleString('en-US', { hour: 'numeric', minute: 'numeric', hour12: true })}</div>
</div>
</div>
)
};
export default WindowHeader;