WIP: Updates rooms view.

This commit is contained in:
2026-01-02 10:04:28 -05:00
parent 54847d0b34
commit 89fdf0930b
10 changed files with 127 additions and 59 deletions

View File

@@ -68,7 +68,7 @@ extension Room {
Room(
id: UUID(0),
projectID: UUID(0),
name: "Test",
name: "Kitchen",
heatingLoad: 12345,
coolingLoad: .init(total: 12345, sensible: 12345),
registerCount: 2,
@@ -78,20 +78,20 @@ extension Room {
Room(
id: UUID(1),
projectID: UUID(1),
name: "Test",
name: "Bedroom - 1",
heatingLoad: 12345,
coolingLoad: .init(total: 12345, sensible: 12345),
registerCount: 2,
registerCount: 1,
createdAt: Date(),
updatedAt: Date()
),
Room(
id: UUID(2),
projectID: UUID(2),
name: "Test",
name: "Family Room",
heatingLoad: 12345,
coolingLoad: .init(total: 12345, sensible: 12345),
registerCount: 2,
registerCount: 3,
createdAt: Date(),
updatedAt: Date()
),