-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
197 lines (160 loc) · 5.23 KB
/
script.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
// Массив, в котором хранятся объекты книг
const myLibrary = [
{
author: "Ф. М. Достоевский",
title: "Братья Карамазовы",
pages: 900,
read: true,
isRead: function () {
if (this.read) {
return "Read";
} else {
return "Not read";
}
},
},
{
author: "Ф. М. Достоевский",
title: "Идиот",
pages: 640,
read: true,
isRead: function () {
if (this.read) {
return "Read";
} else {
return "Not read";
}
},
},
];
// Функция-конструктор, создающая объект книги
class Book {
constructor(author, title, pages, read) {
this.author = author;
this.title = title;
this.pages = pages;
this.read = read;
}
isRead = function () {
if (this.read) {
return "Read";
} else {
return "Not read";
}
};
}
// Функция, добавляющая новый объект книги на страницу
function addBookToLibrary(book) {
const div = document.createElement("div");
div.classList.add("book");
div.setAttribute("id", `${myLibrary.indexOf(book)}`);
const h3 = document.createElement("h3");
h3.textContent = `${book.author} - ${book.title}`;
const p1 = document.createElement("p");
p1.textContent = `${book.pages} pages`;
const p2 = document.createElement("p");
p2.setAttribute("class", "ready-or-not");
p2.textContent = `${book.isRead()}`;
const button2 = document.createElement("button");
button2.textContent = "status";
button2.classList.add("changeStatus");
button2.setAttribute("id", `${myLibrary.indexOf(book)}`);
p2.setAttribute("id", `${myLibrary.indexOf(book)}`);
const button = document.createElement("button");
button.textContent = "x";
button.classList.add("delete");
button.setAttribute("id", `${myLibrary.indexOf(book)}`);
div.append(h3, p1, p2, button2, button);
bookshelf.appendChild(div);
deleteButton = document.querySelectorAll(".delete");
bookStored = document.querySelectorAll(".book");
changeStatus = document.querySelectorAll(".changeStatus");
updateButtons();
}
// Создаёт книжную полку на странице
const bookshelf = document.querySelector(".list");
myLibrary.forEach((book) => {
const div = document.createElement("div");
div.classList.add("book");
div.setAttribute("id", `${myLibrary.indexOf(book)}`);
const h3 = document.createElement("h3");
h3.textContent = `${book.author} - ${book.title}`;
const p1 = document.createElement("p");
p1.textContent = `${book.pages} pages`;
const p2 = document.createElement("p");
p2.textContent = `${book.isRead()}`;
p2.setAttribute("class", "ready-or-not");
p2.setAttribute("id", `${myLibrary.indexOf(book)}`);
const button2 = document.createElement("button");
button2.textContent = "status";
button2.classList.add("changeStatus");
button2.setAttribute("id", `${myLibrary.indexOf(book)}`);
const button = document.createElement("button");
button.textContent = "x";
button.classList.add("delete");
button.setAttribute("id", `${myLibrary.indexOf(book)}`);
div.append(h3, p1, p2, button2, button);
bookshelf.appendChild(div);
});
// Выбираю элементы сразу после их создания, чтобы обновились кнопки
let deleteButton = document.querySelectorAll(".delete");
let bookStored = document.querySelectorAll(".book");
let changeStatus = document.querySelectorAll(".changeStatus");
updateButtons();
// Открывает и закрывает диалог
const addBookDialog = document.getElementById("add-book");
const addBookButton = document.getElementById("add-book-button");
const add = document.getElementById("add");
const closeButton = document.getElementById("close");
addBookButton.addEventListener("click", () => {
addBookDialog.showModal();
});
closeButton.addEventListener("click", () => {
addBookDialog.close();
});
// Берет данные из формы, создаёт объект книги, добавляет его в массив и добавляет на страницу
add.addEventListener("click", (event) => {
const forma = document.getElementById(".forma");
const author = document.getElementById("author");
const title = document.getElementById("title");
const pages = document.getElementById("pages");
const read = document.getAnimations("isRead");
if (
author.validity.valueMissing ||
title.validity.valueMissing ||
pages.validity.valueMissing
) {
return;
}
let isRead;
if (read.value === "read") {
isRead = true;
} else {
isRead = false;
}
let book = new Book(author.value, title.value, pages.value, isRead);
myLibrary.push(book);
addBookToLibrary(book);
});
// Добавляют кнопке функцию удаления книги
function updateButtons() {
deleteButton.forEach(function (button) {
button.addEventListener("click", () => {
let id = button.id;
bookStored[id].remove();
});
});
changeStatus.forEach(function (button) {
button.addEventListener("click", () => {
let id = button.id;
if (myLibrary[id].read) {
myLibrary[id].read = false;
} else {
myLibrary[id].read = true;
}
let pages2 = document.querySelectorAll(".ready-or-not");
console.log(pages2);
pages2[id].textContent = `${myLibrary[id].isRead()}`;
});
});
}