-
Notifications
You must be signed in to change notification settings - Fork 57
/
index.html
282 lines (240 loc) · 8.36 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Notion Random Quote</title>
<link href="https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400&family=Roboto+Mono:wght@300;400&family=Roboto:wght@300;400&display=swap" rel="stylesheet">
<style>
body {
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin: 0;
padding: 0;
}
.card {
width: 80%;
max-width: 700px;
}
.card-body {
padding: 20px;
}
.quote {
font-size: 1.5rem;
}
.content {
font-weight: 200;
}
cite {
font-size: 80%;
font-weight: 500;
font-style: normal;
}
.mono {
font-family: 'Roboto Mono', monospace;
}
.sans {
font-family: 'Roboto', sans-serif;
}
.serif {
font-family: 'Noto Serif JP', serif;
}
.settings {
text-align: center;
border-color: 1px;
background-color: #eee;
position: fixed;
right: 0;
bottom: 0;
opacity: 0;
transition: opacity 0.2s;
}
.settings:hover {
opacity: 1;
}
.settings button {
border: none;
background: none;
text-transform: capitalize;
cursor: pointer;
transition: opacity 0.2s;
}
.settings button:hover {
opacity: 0.6;
}
.settings .modes button {
font-size: 0.8rem;
}
.settings .action {
padding: 0.4rem;
}
.settings .size button {
font-size: 1rem;
}
.settings .fonts button {
font-size: 1.2rem;
display: inline-block;
text-align: center;
}
.settings small {
font-size: 0.8rem;
float: left;
}
.light {
color: rgba(0, 0, 0, 0.9);
background-color: #ffffff !important;
}
.dark {
color: rgba(255, 255, 255, 0.9);
background-color: rgb(25, 25, 25) !important;
}
.dash {
opacity: 0.2;
}
hr {
border: none;
border-bottom: 1px solid gray;
opacity: 0.2;
padding: 0;
margin: 0;
margin-bottom: 0.4rem;
}
</style>
</head>
<body class="light">
<div class="settings">
<div class="action sans">
<button class="shuffle">Shuffle</button>
</div>
<hr>
<div class="size sans">
<button class="plus">A+</button>
<button class="minus">A-</button>
</div>
<div class="modes sans">
<button class="light">Light</button>
<button class="dark">Dark</button>
</div>
<div class="fonts">
<button class="sans">
ag <br>
<small class="sans">Default</small>
</button>
<button class="serif">
ag <br>
<small class="sans">Serif</small>
</button>
<button class="mono">
ag <br>
<small class="sans">Mono</small>
</button>
</div>
</div>
<div class="quote mono">
<div class="card-body">
<blockquote class="blockquote">
<p class="content"></p>
<span class="dash">―</span> <cite title="Source Title"></cite>
</blockquote>
</div>
</div>
<script>
document.addEventListener("DOMContentLoaded", () => {
let size = 1.5;
const body = document.querySelector("body");
const quote = document.querySelector(".quote");
const shuffle = document.querySelector(".shuffle");
const quote_text = document.querySelector("blockquote p");
const cite = document.querySelector("blockquote cite");
const fonts_buttons = document.querySelectorAll(".settings .fonts button");
const modes_buttons = document.querySelectorAll(".settings .modes button");
const size_buttons = document.querySelectorAll(".settings .size button");
const prefersDark = window.matchMedia("(prefers-color-scheme: dark)");
async function updateQuote() {
try {
const response = await fetch("https://quoteslate.vercel.app/api/quotes/random");
const data = await response.json();
if (response.ok) {
quote_text.textContent = data.quote;
cite.textContent = data.author;
} else {
quote_text.textContent = "An error occured";
console.log(data);
}
} catch (error) {
quote_text.textContent = "Oops! There is a problem with the quotes server.";
console.log(error);
}
}
async function updateQuoteCustom(f) {
const response = await fetch(f);
const data = await response.json();
if (response.ok && data.length > 0) {
random_quote = data[Math.floor(Math.random() * data.length - 1) + 1];
quote_text.textContent = random_quote.content;
cite.textContent = random_quote.author;
} else {
quote_text.textContent = "An error occured";
console.log(data);
}
}
function updateStyle() {
const font = localStorage.getItem('font') || 'sans';
changeFont(font);
const mode = localStorage.getItem('mode');
if (mode) changeMode(mode);
size = parseFloat(localStorage.getItem('size'), 2) || 1.5;
setSize(size);
}
function changeFont(value) {
quote.className = value;
localStorage.setItem('font', value);
}
function changeMode(value) {
body.className = value;
localStorage.setItem('mode', value);
}
function changeSize(value) {
size = value == "plus" ? size + 0.1 : size - 0.1;
size = parseFloat(size.toFixed(2))
setSize(size);
}
function setSize(value) {
quote.style.fontSize = value + 'rem';
localStorage.setItem('size', value);
}
function loadQuote() {
var url = new URL(window.location);
var fileUrl = url.searchParams.get("f");
if (fileUrl == null) {
updateQuote();
} else {
updateQuoteCustom(fileUrl);
}
}
function handleColorSchemeChange(mediaQueryList) {
if (!localStorage.getItem('mode')) {
body.className = mediaQueryList.matches ? 'dark' : 'light';
}
}
size_buttons.forEach(function(elem) {
elem.addEventListener("click", () => changeSize(elem.classList.value));
});
fonts_buttons.forEach(function(elem) {
elem.addEventListener("click", () => changeFont(elem.classList.value));
});
modes_buttons.forEach(function(elem) {
elem.addEventListener("click", () => changeMode(elem.classList.value));
});
shuffle.addEventListener("click", () => loadQuote());
prefersDark.addEventListener('change', handleColorSchemeChange);
updateStyle();
loadQuote();
handleColorSchemeChange(prefersDark);
});
</script>
</body>
</html>