-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
83 lines (64 loc) · 2.13 KB
/
index.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
import { DateTime } from './modules/luxon.js';
import Book from './modules/book.js';
import UI from './modules/UI.js';
const librarySection = document.getElementById('library');
const formSection = document.getElementById('newbook');
const contactSection = document.getElementById('contact');
const libraryLink = document.getElementById('librarylink');
const newBookLink = document.getElementById('newbooklink');
const contactLink = document.getElementById('contactlink');
formSection.style.display = 'none';
contactSection.style.display = 'none';
function List() {
librarySection.style.display = 'block';
formSection.style.display = 'none';
contactSection.style.display = 'none';
}
function Form() {
formSection.style.display = 'block';
contactSection.style.display = 'none';
librarySection.style.display = 'none';
}
function Contact() {
contactSection.style.display = 'block';
formSection.style.display = 'none';
librarySection.style.display = 'none';
}
libraryLink.addEventListener('click', List);
newBookLink.addEventListener('click', Form);
contactLink.addEventListener('click', Contact);
document.getElementById('book-form').addEventListener('submit',
(e) => {
const title = document.getElementById('title').value;
const author = document.getElementById('author').value;
const book = new Book(title, author);
const ui = new UI();
if (title === '' || author === '') {
ui.showAlert('Please fill in all fields', 'error');
} else {
ui.addBook(book);
ui.showAlert('Book Added', 'success');
ui.clearFields();
}
e.preventDefault();
});
document.getElementById('book-list').addEventListener('click',
(e) => {
const ui = new UI();
ui.deleteBook(e.target);
ui.showAlert('Book Removed', 'success');
e.preventDefault();
});
const currentDate = document.querySelector('#time');
const dt = DateTime.local();
const newDate = dt.toLocaleString({
month: 'long',
day: 'numeric',
year: 'numeric',
});
setInterval(() => {
const newTime = dt.toLocaleString(DateTime.TIME_WITH_SECONDS);
currentDate.innerHTML = `
<p>${newDate}   ${newTime}</p>
`;
}, 1000);