forked from Aerospace-prog/Interactive-Periodic-Table
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
245 lines (197 loc) · 8.16 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
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
// I HAVE ADDED CUSTOM NATIVE LANG - HINGLISH COMMENTS FOR BEGINNERS TO UNDERSTAND THE BELOW CODE BETTER
const table = document.getElementById("periodic-table");
function renderTable(elements) {
// why need to clear table content before displaying.
//because if we don't clear the table content then the search result will be appended to th
table.innerHTML = "";
// yaha se s,p,d block elements render hoga
elements.forEach((rowData) => {
const row = document.createElement("tr");
rowData.forEach((cellData) => {
const cell = document.createElement("td");
if (cellData) {
cell.classList.add("element");
cell.innerHTML = `<strong>${cellData.symbol}</strong><span class="atomic-no">${cellData.atomicNo}</span>`;
//Here ham log cellData mai gradient property check kar rahe hai agar hai toh uska background color set kara hai
if(cellData.color){
cell.style.background = cellData.color;
cell.style.color = "black";
}
} else {
cell.classList.add("empty");
}
row.appendChild(cell);
});
table.appendChild(row);
});
// yaha se f block elements render hoga
//This fblock loop iterates 2 times (first - lanthanides , second - actinides)
fBlock.forEach((block) => {
const row = document.createElement("tr");
const labelcell = document.createElement("td");
labelcell.colSpan = 3;
labelcell.classList.add("f-block-label");
labelcell.textContent = block.label;
row.appendChild(labelcell);
//this loop iterates 14 times (for each element in the f block)
block.elements.forEach((element) => {
const cell = document.createElement("td");
cell.classList.add("element", "f-block");
cell.innerHTML = `<strong>${element.symbol}</strong><span class="atomic-no">${element.atomicNo}</span>`;
if(element.color){
cell.style.background = element.color;
cell.style.color = "black";
}
row.appendChild(cell);
//here ham log celldata(element) mai gradient property check kar rahe hai agar hai toh uska background color set kara hai
});
table.appendChild(row);
});
}
//render table function ends here
//Search function starts
function searchElement(event) {
event.preventDefault();
//trims the whitespace ,convert into lower case for case insensitive search
const searchTerm = document.getElementById("search-input").value.trim().toLowerCase();
// Show an alert if the input is empty
if (!searchTerm) {
alert("Please enter a search term.");
return;
}
// Display the button when clicked on search button
document.querySelector('.show-table-btn').style.display = 'block';
//calling the function for tracking when search button clicked
tracksSearchHistory();
// why need to clear table content before displaying.
//because if we don't clear the table content then the search result will be appended to th
table.innerHTML = "";
//why created set here not else for storing
//because set is faster than array for storing unique elements and to display only unique elements
const uniqueElements = new Set();
//checks the matched elements when searched by the user.
periodicTable.forEach((row) => {
row.forEach((element) => {
if (element) {
const matchesSymbol = element.symbol.toLowerCase().includes(searchTerm);
const matchesAtomicNo = element.atomicNo.toString().includes(searchTerm);
//if the element matches the search term then add it to the set
//json stringify kyu use kiya:
//because json.stringify() returns a string of the elements in the set
if (matchesSymbol || matchesAtomicNo) {
uniqueElements.add(JSON.stringify(element));
}
}
});
});
// Check for matches in f-block elements
fBlock.forEach((block) => {
block.elements.forEach((element) => {
const matchesSymbol = element.symbol.toLowerCase().includes(searchTerm);
const matchesAtomicNo = element.atomicNo.toString().includes(searchTerm);
if (matchesSymbol || matchesAtomicNo) {
uniqueElements.add(JSON.stringify(element));
}
});
});
//why we need to convert the set back to array
//because set is not iterable and we can't use it in for loop
//here we will display all unique matched elments
uniqueElements.forEach((elementStr) => {
const element = JSON.parse(elementStr); // parse json string back into object
const row = document.createElement("tr");
const cell = document.createElement("td");
cell.classList.add("element");
cell.innerHTML = `<strong>${element.symbol}</strong><span class="atomic-no">${element.atomicNo}</span>`;
row.appendChild(cell);
table.appendChild(row);
});
//When result is not found then below will handle it
if (uniqueElements.size === 0) {
const row = document.createElement("tr");
const cell = document.createElement("td");
cell.colSpan = 1;
cell.textContent = "No results found.";
cell.classList.add("no-results");
row.appendChild(cell);
table.appendChild(row);
}
}
//Search function ends here
// calling kar rahe hai for rendering table
renderTable(periodicTable);
//resetting the input box
function resetInput() {
const searchInput = document.getElementById("search-input");
searchInput.value = "";
}
// saving the search history in localStorage
function tracksSearchHistory() {
const searchInput = document.getElementById("search-input").value.trim();
// Ignore empty input
if (!searchInput){
return;
}
// Niche ham existing history mai se get karenge and if not availbale so empty array initialize karnge:-->
//JSON.parse() is used to convert the string back into an object
//localStorage.getItem() is used to get the value of the specified localStorage item
//if the item doesn't exist, it will return null
//if the item exists, it will return the value as a string
const searchHistory = JSON.parse(localStorage.getItem("searchHistory")) || [];
// Add the search term only if it's unique
if (!searchHistory.includes(searchInput)) {
searchHistory.push(searchInput); // adds the input value
// Limit the number of history items to 10
//if the search history is greater than 10 then remove the first element
if (searchHistory.length > 10) {
searchHistory.shift(); // used array methods - to remove the first element
}
// Save updated search history back to localStorage
localStorage.setItem("searchHistory", JSON.stringify(searchHistory));// key mai ham string rakha and value mai array
}
// Update the sidebar with the new history
displaySidebarHistory();
}
// Function to display search history in the sidebar
function displaySidebarHistory() {
const historyList = document.getElementById("sidebar-history-list");
const searchHistory = JSON.parse(localStorage.getItem("searchHistory")) || [];
// Clear the sidebar list before updating
historyList.innerHTML = "";
// Add each search term as a list item
searchHistory.forEach((term) => {
const listItem = document.createElement("li");
listItem.textContent = term;
listItem.classList.add("history-item");
//Jab user kisi particular history item par click karega toh uska value search input box mai set ho jayega
listItem.onclick = () => {
document.getElementById("search-input").value = term;
};
// Here hamne history list (sidebar) mai append kiya hai
historyList.appendChild(listItem);
});
}
// Function to toggle the visibility of the sidebar
function toggleSidebar() {
const sidebar = document.getElementById("history-sidebar");
if(sidebar.style.display === "block"){
sidebar.style.display = "none";
}else{
sidebar.style.display = "block";
}
// Update the sidebar whenever it is opened
if (sidebar.style.display === "block") {
displaySidebarHistory();
}
}
// Calling kar rahe hai jisse update hojaye existing history
displaySidebarHistory();
//After the show table btn clicked so making its display none
function btnDisplayNone(){
document.querySelector('.show-table-btn').style.display = "none";
}
// This function actually Clears the search history
function clearHistory() {
localStorage.removeItem("searchHistory");
displaySidebarHistory();
}