Separate bricktracker sets from rebrickable sets (dedup), introduce custom checkboxes

This commit is contained in:
2025-01-24 10:36:24 +01:00
parent 57d9f167a5
commit d063062780
88 changed files with 1560 additions and 748 deletions

View File

@@ -7,60 +7,6 @@ const clean_status = (status) => {
}
}
// Change the status of a set checkbox
const change_set_checkbox_status = async (el, kind, id, url) => {
const status = document.getElementById(`status-${kind}-${id}`);
try {
// Set the status to unknown
if (status) {
clean_status(status)
status.classList.add("ri-question-line", "text-warning");
}
const response = await fetch(url, {
method: "POST",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify({
state: el.checked
})
});
if (!response.ok) {
throw new Error(`Response status: ${response.status}`);
}
const json = await response.json();
if ("error" in json) {
throw new Error(`Error received: ${json.error}`)
}
// Set the status to OK
if (status) {
clean_status(status)
status.classList.add("ri-checkbox-circle-line", "text-success");
}
// Update the card
const card = document.getElementById(`set-${id}`);
if (card) {
// Not going through dataset to avoid converting
card.setAttribute(`data-${kind}`, Number(el.checked));
}
} catch (error) {
console.log(error.message);
// Set the status to not OK
if (status) {
clean_status(status)
status.classList.add("ri-alert-line", "text-danger");
}
}
}
// Change the amount of missing parts
const change_part_missing_amount = async (el, set_id, part_id, url) => {
const status = document.getElementById(`status-part-${set_id}-${part_id}`);