-
Notifications
You must be signed in to change notification settings - Fork 150
/
index.html
127 lines (122 loc) · 4.01 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Homepage</title>
<link rel="stylesheet" href="styles.css" />
<link href="favicon.png" rel="shortcut icon" type="image/x-icon" />
</head>
<body>
<div id="search">
<input
id="search-field"
type="text"
name="search-field"
onkeypress="return search(event)"
/>
</div>
<div class="container">
<div id="clock"></div>
<div class="weather-container">
<div class="row">
<div id="weather-description" class="inline"></div>
<div class="inline">-</div>
<div id="temp" class="inline"></div>
</div>
</div>
<div id="bookmark-container"></div>
</div>
<script src="bookmarks.js"></script>
<script>
const searchUrl = "https://google.com/search?q=";
// Search on enter key event
function search(e) {
if (e.keyCode == 13) {
var val = document.getElementById("search-field").value;
window.open(searchUrl + val);
}
}
// Get current time and format
function getTime() {
let date = new Date(),
min = date.getMinutes(),
sec = date.getSeconds(),
hour = date.getHours();
return (
"" +
(hour < 10 ? "0" + hour : hour) +
":" +
(min < 10 ? "0" + min : min) +
":" +
(sec < 10 ? "0" + sec : sec)
);
}
// Handle Weather request
function getWeather() {
let xhr = new XMLHttpRequest();
// Request to open weather map
xhr.open(
"GET",
"http://api.openweathermap.org/data/2.5/weather?id=4737316&units=imperial&appid=e5b292ae2f9dae5f29e11499c2d82ece"
);
xhr.onload = () => {
if (xhr.readyState === 4) {
if (xhr.status === 200) {
let json = JSON.parse(xhr.responseText);
document.getElementById("temp").innerHTML =
json.main.temp.toFixed(0) + " F";
document.getElementById("weather-description").innerHTML =
json.weather[0].description;
} else {
console.log("error msg: " + xhr.status);
}
}
};
xhr.send();
}
// Handle writing out Bookmarks
function setupBookmarks() {
const bookmarkContainer = document.getElementById("bookmark-container");
bookmarkContainer.innerHTML = bookmarks
.map((b) => {
const html = ["<div class='bookmark-set'>"];
html.push(`<div class="bookmark-title">${b.title}</div>`);
html.push('<div class="bookmark-inner-container">');
html.push(
...b.links.map(
(l) =>
`<a class="bookmark" href="${l.url}" target="_blank">${l.name}</a>`
)
);
html.push("</div></div>");
return html.join("");
})
.join("");
}
window.onload = () => {
setupBookmarks();
getWeather();
// Set up the clock
document.getElementById("clock").innerHTML = getTime();
// Set clock interval to tick clock
setInterval(() => {
document.getElementById("clock").innerHTML = getTime();
}, 100);
};
document.addEventListener("keyup", (event) => {
if (event.keyCode == 32) {
// Spacebar code to open search
document.getElementById("search").style.display = "flex";
document.getElementById("search-field").focus();
} else if (event.keyCode == 27) {
// Esc to close search
document.getElementById("search-field").value = "";
document.getElementById("search-field").blur();
document.getElementById("search").style.display = "none";
}
});
</script>
</body>
</html>