2024-02-02 02:52:59 +00:00
|
|
|
document.addEventListener("DOMContentLoaded", function () {
|
|
|
|
const familyDropdown = document.getElementById("familyDropdown");
|
|
|
|
const monsterDropdown = document.getElementById("monsterDropdown");
|
|
|
|
|
2024-02-02 15:03:55 +00:00
|
|
|
// Initialize dropdowns
|
2024-02-02 20:39:43 +00:00
|
|
|
updateMonsterDropdownByFamily();
|
2024-02-02 02:52:59 +00:00
|
|
|
|
2024-02-02 15:03:55 +00:00
|
|
|
// Fetch families data from the server and populate families dropdown
|
2024-02-02 02:52:59 +00:00
|
|
|
fetch("/get_families")
|
|
|
|
.then(response => response.json())
|
|
|
|
.then(data => {
|
|
|
|
populateDropdown(familyDropdown, data);
|
|
|
|
})
|
|
|
|
.catch(error => console.error("Error fetching families:", error));
|
|
|
|
|
2024-02-02 15:03:55 +00:00
|
|
|
// Listeners for Dropdown Changes
|
2024-02-02 02:52:59 +00:00
|
|
|
familyDropdown.addEventListener("change", function () {
|
2024-02-02 20:39:43 +00:00
|
|
|
updateMonsterDropdownByFamily();
|
2024-02-02 02:52:59 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
monsterDropdown.addEventListener("change", function () {
|
|
|
|
updateIframes();
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|