-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
79 lines (70 loc) · 2.89 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Challenge - DOM</title>
<link rel="stylesheet" type="text/css" href="style.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Sen:wght@400;700;800&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div id="app">
<!-- TODO: Buatlah sebuah header dengan id todo-title -->
<h1 id="todo-title">To-Do List</h1>
<!-- TODO: Buatlah sebuah subtitle dengan id todo-subtitle -->
<p id="todo-subtitle">Today I need to:</p>
<!-- Section: input -->
<!-- TODO: Buatlah sebuah input bertipe text dengan id todo-input -->
<input type="text" placeholder="Input here..." id="todo-input" />
<!-- TODO: Buatlah sebuah button dengan id todo-submit -->
<button type="button" id="todo-submit">Submit</button>
<!-- Section output -->
<!-- TODO: Buatlah sebuah <ul> dengan id todo-output -->
<ul id="todo-output"></ul>
</div>
<!-- ! Untuk tantangan ini, script jangan diubah ke external js yah ! -->
<script>
// TODO: Deklarasi variable sesuai dengan kebutuhan di sini
const button = document.getElementById("todo-submit");
const input = document.getElementById("todo-input");
const output = document.getElementById("todo-output");
let inputValue = "";
// TODO: Buatlah sebuah fungsi dengan nama fnClickHandler
// Fungsi yang digunakan untuk menambahkan tulisan
// Jangan ubah cara deklarasi fungsinya, cukup isi saja
function fnClickHandler(toDoItem) {
if (
toDoItem?.type === "click" ||
toDoItem?.key === "Enter" ||
toDoItem?.which === 13
) {
const li = document.createElement("li");
const textValue = document.createTextNode(inputValue);
li.appendChild(textValue);
const list = output.children;
output.append(li, ...list);
inputValue = "";
input.value = "";
}
}
function fnHandleInputChange(event) {
if (event?.target?.value?.length > 0) {
inputValue = event?.target?.value;
}
}
// TODO: register event onclick / addEventListener untuk button
// akan menjalankan fungsi fnClickHandler
button.addEventListener("click", fnClickHandler);
// TODO: register event onkeypress / addEventListener untuk input
// sehingga saat di input ditekan enter akan menjalankan fungsi fnClickHandler juga
input.addEventListener("keyup", fnHandleInputChange);
input.addEventListener("keypress", fnClickHandler);
</script>
</body>
</html>