plugin-backend #1

Merged
ada merged 34 commits from plugin-backend into main 2024-05-01 00:21:12 -05:00
2 changed files with 16 additions and 14 deletions
Showing only changes of commit db17504ea0 - Show all commits

View File

@ -930,12 +930,12 @@ async function update_breakdown(scene, checks, entrances) {
// Check for changes, and if so, update // Check for changes, and if so, update
if ( if (
breakdown_checks.dataset.checksCollected != parseInt(breakdown_checks.dataset.checksCollected) !=
checks.collected + checks.found checks.collected + checks.found
) { ) {
update_breakdown_checks(scene, checks); update_breakdown_checks(scene, checks);
} }
if (breakdown_entrances.dataset.entrancesFound != entrances.found) { if (parseInt(breakdown_entrances.dataset.entrancesFound) != entrances.found) {
update_breakdown_entrances(scene, entrances); update_breakdown_entrances(scene, entrances);
} }
} }
@ -945,9 +945,11 @@ async function update_breakdown_list(data, changed) {
if (changed.checks) { if (changed.checks) {
Object.keys(data.scenes).forEach((scene) => Object.keys(data.scenes).forEach((scene) =>
update_breakdown(scene, data.scenes[scene], { update_breakdown(scene, data.scenes[scene], {
found: document.querySelector( found: parseInt(
document.querySelector(
`.breakdown[data-scene="${scene}"] .breakdown-block-entrances-title` `.breakdown[data-scene="${scene}"] .breakdown-block-entrances-title`
).dataset.entrancesFound, ).dataset.entrancesFound
),
}) })
); );
} else if (changed.entrances) { } else if (changed.entrances) {