-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.js
291 lines (229 loc) · 7.47 KB
/
main.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
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
283
284
285
286
287
288
289
290
291
document.addEventListener('DOMContentLoaded', function () {
const submitBook = document.getElementById('inputBook');
submitBook.addEventListener('submit', function () {
event.preventDefault();
addBook();
submitBook.reset();
});
if (isStorageExist) {
loadDataFromStorage();
}
});
const books = [];
// MENAMBAHKAN DATA BUKU
function addBook() {
const bookTitle = document.getElementById('inputBookTitle').value;
const bookAuthor = document.getElementById('inputBookAuthor').value;
const bookYear = document.getElementById('inputBookYear').value;
const isComplete = document.getElementById('inputBookIsComplete').checked;
const generateID = generateId();
const bookData = generateBookData(generateID, bookTitle, bookAuthor, bookYear, isComplete);
books.push(bookData);
document.dispatchEvent(new Event(RENDER_EVENT));
console.log(`${bookData.title} has been added`);
saveData();
succeed('Buku telah disimpan!');
}
function generateId() {
return +new Date();
}
function generateBookData(id, title, author, year, isComplete) {
return {
id,
title,
author,
year,
isComplete,
};
}
const RENDER_EVENT = 'render-event';
document.addEventListener(RENDER_EVENT, function () {
const incompleteBookList = document.getElementById('incompleteBookList');
incompleteBookList.innerHTML = '';
const completeBookList = document.getElementById('completeBookList');
completeBookList.innerHTML = '';
for (const book of books) {
bookObject = putBook(book);
if (!book.isComplete) {
incompleteBookList.append(bookObject);
} else {
completeBookList.append(bookObject);
}
}
});
function putBook(book) {
const textTitle = document.createElement('h3');
textTitle.classList.add('book-title');
textTitle.innerText = book.title;
const textAuthor = document.createElement('p');
textAuthor.innerText = `Penulis: ${book.author}`;
const textYear = document.createElement('p');
textYear.innerText = `Tahun: ${book.year}`;
const actionContainer = document.createElement('div');
actionContainer.classList.add('action');
const markContainer = document.createElement('div');
markContainer.classList.add('mark-action');
if (book.isComplete) {
const incompleteButton = document.createElement('button');
incompleteButton.classList.add('incomplete-button');
incompleteButton.innerText = 'Belum selesai';
incompleteButton.addEventListener('click', function () {
markBookAsIncomplete(book.id);
});
markContainer.append(incompleteButton);
} else {
const completeButton = document.createElement('button');
completeButton.classList.add('complete-button');
completeButton.innerText = 'Sudah selesai';
completeButton.addEventListener('click', function () {
markBookAsComplete(book.id);
});
markContainer.append(completeButton);
}
const editContainer = document.createElement('div');
editContainer.classList.add('edit-action');
const editButton = document.createElement('button');
editButton.classList.add('edit-button');
editButton.innerText = 'Edit';
editButton.addEventListener('click', function () {
editBook(book.id);
});
editContainer.append(editButton);
const removeButton = document.createElement('button');
removeButton.classList.add('remove-button');
removeButton.innerText = 'Hapus';
removeButton.addEventListener('click', function () {
confirmRemoveBook(book.id);
});
editContainer.append(removeButton);
actionContainer.append(markContainer, editContainer);
const bookContainer = document.createElement('div');
bookContainer.classList.add('container');
bookContainer.append(textTitle, textAuthor, textYear, actionContainer);
bookContainer.setAttribute('id', `book-${book.id}`);
return bookContainer;
}
// MEMINDAHKAN BUKU KE RAK 'SELESAI DIBACA'
function markBookAsComplete(bookId) {
const bookTarget = findBook(bookId);
if (bookId === null) return;
bookTarget.isComplete = true;
document.dispatchEvent(new Event(RENDER_EVENT));
console.log(`${bookTarget.title} has been moved to complete bookshelf`);
saveData();
}
// MEMINDAHKAN BUKU KE RAK 'BELUM SELESAI DIBACA'
function markBookAsIncomplete(bookId) {
const bookTarget = findBook(bookId);
if (bookId === null) return;
bookTarget.isComplete = false;
document.dispatchEvent(new Event(RENDER_EVENT));
console.log(`${bookTarget.title} has been moved to incomplete bookshelf`);
saveData();
}
function findBook(bookId) {
for (const book of books) {
if (book.id === bookId) {
return book;
}
}
return null;
}
// MENGEDIT DATA BUKU
function editBook(bookId) {
const bookOld = findBook(bookId);
const editTitle = document.getElementById('inputBookTitle');
editTitle.value = bookOld.title;
const editAuthor = document.getElementById('inputBookAuthor');
editAuthor.value = bookOld.author;
const editYear = document.getElementById('inputBookYear');
editYear.value = bookOld.year;
const editIsComplete = document.getElementById('inputBookIsComplete');
if (bookOld.isComplete === true) {
editIsComplete.checked = true;
}
removeBook(bookId);
document.documentElement.scrollTop = 0;
}
// CUSTOM DIALOG: MENGHAPUS BUKU
function confirmRemoveBook(bookId) {
const areYouSure = 'Apakah Anda yakin ingin menghapus buku ini?';
if (confirm(areYouSure) === true) {
removeBook(bookId);
succeed('Buku telah dihapus!');
}
}
// MENGHAPUS DATA BUKU
function removeBook(bookId) {
const bookTarget = findBookIndex(bookId);
if (bookTarget === -1) return;
books.splice(bookTarget, 1);
document.dispatchEvent(new Event(RENDER_EVENT));
console.log('A book has been removed');
saveData();
}
function findBookIndex(bookId) {
for (const index in books) {
if (books[index].id === bookId) {
return index;
}
}
return -1;
}
// MENYIMPAN DATA BUKU PADA LOCAL STORAGE
const SAVED_EVENT = 'saved-book';
const STORAGE_KEY = 'BOOKSHELF_APPS';
function saveData() {
if (isStorageExist) {
const parsed = JSON.stringify(books);
localStorage.setItem(STORAGE_KEY, parsed);
document.dispatchEvent(new Event(SAVED_EVENT));
}
}
function isStorageExist() {
if (typeof Storage === 'undefined') {
alert('Browser anda tidak mendukung local storage');
return false;
}
return true;
}
document.addEventListener(SAVED_EVENT, function () {
console.log('Bookshelf has been updated:');
console.log(localStorage.getItem(STORAGE_KEY));
});
function loadDataFromStorage() {
const loadData = localStorage.getItem(STORAGE_KEY);
let data = JSON.parse(loadData);
if (data !== null) {
for (const book of data) {
books.push(book);
}
}
document.dispatchEvent(new Event(RENDER_EVENT));
}
// FITUR PENCARIAN BUKU
const searchInput = document.getElementById('searchBookTitle');
searchInput.addEventListener('keypress', function (keyboardButton) {
if (keyboardButton.key === 'Enter') {
searchButton.click();
}
});
const searchButton = document.getElementById('searchButton');
searchButton.addEventListener('click', function () {
searchBook();
});
function searchBook() {
const inputSearch = document.getElementById('searchBookTitle').value.toLowerCase();
const searchBooks = document.querySelectorAll('.book-title');
for (const book of searchBooks) {
if (book.innerText.toLowerCase().includes(inputSearch)) {
book.parentElement.style.display = 'block';
} else {
book.parentElement.style.display = 'none';
}
}
}
// CUSTOM DIALOG: PROSES PERHASIL
function succeed(process) {
alert(process);
}