fix: clear clean map undo state

This commit is contained in:
Nico 2026-06-15 15:27:30 -07:00
parent 4a866763ac
commit 984b55a4da
2 changed files with 53 additions and 1 deletions

View File

@ -77,7 +77,7 @@ export default function useLocationMapViewControls({
]);
setObjects(priorSnapshot.objects);
setSelectedObjectKey(priorSnapshot.selectedObjectKey);
setHasUnsavedChanges(true);
setHasUnsavedChanges(previous.length > 1);
return previous.slice(0, -1);
});
}, [

View File

@ -1742,6 +1742,58 @@ test("admin selecting an object does not mark a draft dirty until it changes", a
await expect(page.getByRole("button", { name: "Undo" })).toBeEnabled();
});
test("admin undoing the only draft change clears unsaved state", async ({ page }) => {
await mockMapShell(page);
const mapState = draftMapState([
{
id: 1356,
location_map_id: 900,
zone_id: 501,
zone_name: "Bakery",
type: "zone",
label: "Bakery",
x: 40,
y: 40,
width: 260,
height: 160,
rotation: 0,
locked: false,
visible: true,
sort_order: 1,
},
], true);
await page.route("**/households/1/locations/10/map", async (route) => {
await route.fulfill({
status: 200,
contentType: "application/json",
body: JSON.stringify(mapState),
});
});
await page.goto("/stores/100/locations/10/map");
await page.getByRole("button", { name: "Continue Editing" }).click();
await page.getByRole("button", { name: "Map area Bakery" }).click();
await page.getByLabel("Linked zone").selectOption("");
await expect(page.locator(".location-map-status")).toHaveText("Unsaved Draft");
await expect(page.getByRole("button", { name: "Save Draft" })).toBeEnabled();
await expect(page.getByRole("button", { name: "Undo" })).toBeEnabled();
await page.getByRole("button", { name: "Undo" }).click();
await expect(page.locator(".location-map-status")).toHaveText("Draft");
await expect(page.getByRole("button", { name: "Save Draft" })).toHaveCount(0);
await expect(page.getByLabel("Linked zone")).toHaveValue("501");
await expect(page.getByRole("button", { name: "Redo" })).toBeEnabled();
await page.getByRole("button", { name: "Redo" }).click();
await expect(page.locator(".location-map-status")).toHaveText("Unsaved Draft");
await expect(page.getByRole("button", { name: "Save Draft" })).toBeEnabled();
await expect(page.getByLabel("Linked zone")).toHaveValue("");
});
test("admin can recover hidden map areas from the empty canvas", async ({ page }) => {
await mockMapShell(page);