WIP: Working rooms table and form for project.
This commit is contained in:
@@ -53,8 +53,7 @@ extension Room.Create {
|
||||
return .init(
|
||||
name: name,
|
||||
heatingLoad: heatingLoad,
|
||||
coolingTotal: coolingTotal,
|
||||
coolingSensible: coolingSensible,
|
||||
coolingLoad: coolingLoad,
|
||||
registerCount: registerCount,
|
||||
projectID: projectID
|
||||
)
|
||||
@@ -67,12 +66,9 @@ extension Room.Create {
|
||||
guard heatingLoad >= 0 else {
|
||||
throw ValidationError("Room heating load should not be less than 0.")
|
||||
}
|
||||
guard coolingTotal >= 0 else {
|
||||
guard coolingLoad >= 0 else {
|
||||
throw ValidationError("Room cooling total should not be less than 0.")
|
||||
}
|
||||
guard coolingSensible >= 0 else {
|
||||
throw ValidationError("Room cooling sensible should not be less than 0.")
|
||||
}
|
||||
guard registerCount >= 1 else {
|
||||
throw ValidationError("Room cooling sensible should not be less than 1.")
|
||||
}
|
||||
@@ -88,8 +84,7 @@ extension Room {
|
||||
.id()
|
||||
.field("name", .string, .required)
|
||||
.field("heatingLoad", .double, .required)
|
||||
.field("coolingTotal", .double, .required)
|
||||
.field("coolingSensible", .double, .required)
|
||||
.field("coolingLoad", .double, .required)
|
||||
.field("registerCount", .int8, .required)
|
||||
.field("createdAt", .datetime)
|
||||
.field("updatedAt", .datetime)
|
||||
@@ -117,11 +112,8 @@ final class RoomModel: Model, @unchecked Sendable {
|
||||
@Field(key: "heatingLoad")
|
||||
var heatingLoad: Double
|
||||
|
||||
@Field(key: "coolingTotal")
|
||||
var coolingTotal: Double
|
||||
|
||||
@Field(key: "coolingSensible")
|
||||
var coolingSensible: Double
|
||||
@Field(key: "coolingLoad")
|
||||
var coolingLoad: Double
|
||||
|
||||
@Field(key: "registerCount")
|
||||
var registerCount: Int
|
||||
@@ -141,8 +133,7 @@ final class RoomModel: Model, @unchecked Sendable {
|
||||
id: UUID? = nil,
|
||||
name: String,
|
||||
heatingLoad: Double,
|
||||
coolingTotal: Double,
|
||||
coolingSensible: Double,
|
||||
coolingLoad: Double,
|
||||
registerCount: Int,
|
||||
createdAt: Date? = nil,
|
||||
updatedAt: Date? = nil,
|
||||
@@ -151,8 +142,7 @@ final class RoomModel: Model, @unchecked Sendable {
|
||||
self.id = id
|
||||
self.name = name
|
||||
self.heatingLoad = heatingLoad
|
||||
self.coolingTotal = coolingTotal
|
||||
self.coolingSensible = coolingSensible
|
||||
self.coolingLoad = coolingLoad
|
||||
self.registerCount = registerCount
|
||||
self.createdAt = createdAt
|
||||
self.updatedAt = updatedAt
|
||||
@@ -165,11 +155,10 @@ final class RoomModel: Model, @unchecked Sendable {
|
||||
projectID: $project.id,
|
||||
name: name,
|
||||
heatingLoad: heatingLoad,
|
||||
coolingLoad: .init(total: coolingTotal, sensible: coolingSensible),
|
||||
coolingLoad: coolingLoad,
|
||||
registerCount: registerCount,
|
||||
createdAt: createdAt!,
|
||||
updatedAt: updatedAt!
|
||||
)
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6,7 +6,7 @@ public struct Room: Codable, Equatable, Identifiable, Sendable {
|
||||
public let projectID: Project.ID
|
||||
public let name: String
|
||||
public let heatingLoad: Double
|
||||
public let coolingLoad: CoolingLoad
|
||||
public let coolingLoad: Double
|
||||
public let registerCount: Int
|
||||
public let createdAt: Date
|
||||
public let updatedAt: Date
|
||||
@@ -16,7 +16,7 @@ public struct Room: Codable, Equatable, Identifiable, Sendable {
|
||||
projectID: Project.ID,
|
||||
name: String,
|
||||
heatingLoad: Double,
|
||||
coolingLoad: CoolingLoad,
|
||||
coolingLoad: Double,
|
||||
registerCount: Int = 1,
|
||||
createdAt: Date,
|
||||
updatedAt: Date
|
||||
@@ -39,23 +39,20 @@ extension Room {
|
||||
public let projectID: Project.ID
|
||||
public let name: String
|
||||
public let heatingLoad: Double
|
||||
public let coolingTotal: Double
|
||||
public let coolingSensible: Double
|
||||
public let coolingLoad: Double
|
||||
public let registerCount: Int
|
||||
|
||||
public init(
|
||||
projectID: Project.ID,
|
||||
name: String,
|
||||
heatingLoad: Double,
|
||||
coolingTotal: Double,
|
||||
coolingSensible: Double,
|
||||
coolingLoad: Double,
|
||||
registerCount: Int = 1
|
||||
) {
|
||||
self.projectID = projectID
|
||||
self.name = name
|
||||
self.heatingLoad = heatingLoad
|
||||
self.coolingTotal = coolingTotal
|
||||
self.coolingSensible = coolingSensible
|
||||
self.coolingLoad = coolingLoad
|
||||
self.registerCount = registerCount
|
||||
}
|
||||
}
|
||||
@@ -70,7 +67,7 @@ extension Room {
|
||||
projectID: UUID(0),
|
||||
name: "Kitchen",
|
||||
heatingLoad: 12345,
|
||||
coolingLoad: .init(total: 12345, sensible: 12345),
|
||||
coolingLoad: 1234,
|
||||
registerCount: 2,
|
||||
createdAt: Date(),
|
||||
updatedAt: Date()
|
||||
@@ -80,7 +77,7 @@ extension Room {
|
||||
projectID: UUID(1),
|
||||
name: "Bedroom - 1",
|
||||
heatingLoad: 12345,
|
||||
coolingLoad: .init(total: 12345, sensible: 12345),
|
||||
coolingLoad: 1456,
|
||||
registerCount: 1,
|
||||
createdAt: Date(),
|
||||
updatedAt: Date()
|
||||
@@ -90,7 +87,7 @@ extension Room {
|
||||
projectID: UUID(2),
|
||||
name: "Family Room",
|
||||
heatingLoad: 12345,
|
||||
coolingLoad: .init(total: 12345, sensible: 12345),
|
||||
coolingLoad: 1673,
|
||||
registerCount: 3,
|
||||
createdAt: Date(),
|
||||
updatedAt: Date()
|
||||
|
||||
@@ -104,8 +104,9 @@ extension SiteRoute.View {
|
||||
|
||||
extension SiteRoute.View {
|
||||
public enum RoomRoute: Equatable, Sendable {
|
||||
case form(dismiss: Bool = false)
|
||||
case form(Project.ID, dismiss: Bool = false)
|
||||
case index(Project.ID)
|
||||
case submit(Room.Create)
|
||||
|
||||
static let rootPath = "rooms"
|
||||
|
||||
@@ -117,6 +118,7 @@ extension SiteRoute.View {
|
||||
}
|
||||
Method.get
|
||||
Query {
|
||||
Field("projectID") { Project.ID.parser() }
|
||||
Field("dismiss", default: false) { Bool.parser() }
|
||||
}
|
||||
}
|
||||
@@ -127,6 +129,20 @@ extension SiteRoute.View {
|
||||
Field("projectID") { Project.ID.parser() }
|
||||
}
|
||||
}
|
||||
Route(.case(Self.submit)) {
|
||||
Path { rootPath }
|
||||
Method.post
|
||||
Body {
|
||||
FormData {
|
||||
Field("projectID") { Project.ID.parser() }
|
||||
Field("name", .string)
|
||||
Field("heatingLoad") { Double.parser() }
|
||||
Field("coolingLoad") { Double.parser() }
|
||||
Field("registerCount") { Digits() }
|
||||
}
|
||||
.map(.memberwise(Room.Create.init))
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -120,13 +120,25 @@ extension SiteRoute.View.RoomRoute {
|
||||
@Dependency(\.database) var database
|
||||
|
||||
switch self {
|
||||
case .form(let dismiss):
|
||||
return RoomForm(dismiss: dismiss)
|
||||
|
||||
case .form(let projectID, let dismiss):
|
||||
return RoomForm(dismiss: dismiss, projectID: projectID)
|
||||
|
||||
case .index(let projectID):
|
||||
let rooms = try await database.rooms.fetch(projectID)
|
||||
return request.view {
|
||||
ProjectView(projectID: projectID, activeTab: .rooms) {
|
||||
RoomsView(rooms: rooms)
|
||||
RoomsView(projectID: projectID, rooms: rooms)
|
||||
}
|
||||
}
|
||||
|
||||
case .submit(let form):
|
||||
request.logger.debug("New room form submitted.")
|
||||
let _ = try await database.rooms.create(form)
|
||||
let rooms = try await database.rooms.fetch(form.projectID)
|
||||
return request.view {
|
||||
ProjectView(projectID: form.projectID, activeTab: .rooms) {
|
||||
RoomsView(projectID: form.projectID, rooms: rooms)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,6 +3,8 @@ import ElementaryHTMX
|
||||
import ManualDCore
|
||||
import Styleguide
|
||||
|
||||
// TODO: Need a back button to navigate to all projects table.
|
||||
|
||||
struct ProjectView<Inner: HTML>: HTML, Sendable where Inner: Sendable {
|
||||
let projectID: Project.ID
|
||||
let activeTab: Sidebar.ActiveTab
|
||||
@@ -54,7 +56,7 @@ struct Sidebar: HTML {
|
||||
}
|
||||
.attributes(.class("p-4"))
|
||||
|
||||
row(title: "Project", icon: .mapPin, route: .project(.index))
|
||||
row(title: "Project", icon: .mapPin, route: .project(.detail(projectID)))
|
||||
.attributes(.data("active", value: active == .projects ? "true" : "false"))
|
||||
|
||||
row(title: "Rooms", icon: .doorClosed, route: .room(.index(projectID)))
|
||||
|
||||
@@ -9,11 +9,19 @@ import Styleguide
|
||||
struct RoomForm: HTML, Sendable {
|
||||
|
||||
let dismiss: Bool
|
||||
let projectID: Project.ID
|
||||
|
||||
var body: some HTML {
|
||||
ModalForm(id: "roomForm", dismiss: dismiss) {
|
||||
h1(.class("text-3xl font-bold pb-6")) { "Room" }
|
||||
form {
|
||||
// TODO: Use htmx here.
|
||||
form(
|
||||
.method(.post),
|
||||
.action(route: .room(.index(projectID)))
|
||||
) {
|
||||
div(.class("hidden")) {
|
||||
input(.name("projectID"), .id("projectID"), .value("\(projectID)"))
|
||||
}
|
||||
div {
|
||||
label(.for("name")) { "Name:" }
|
||||
Input(id: "name", placeholder: "Room Name")
|
||||
@@ -40,7 +48,7 @@ struct RoomForm: HTML, Sendable {
|
||||
div(.class("space-x-4")) {
|
||||
CancelButton()
|
||||
.attributes(
|
||||
.hx.get(route: .room(.form(dismiss: true))),
|
||||
.hx.get(route: .room(.form(projectID, dismiss: true))),
|
||||
.hx.target("#roomForm"),
|
||||
.hx.swap(.outerHTML)
|
||||
)
|
||||
|
||||
@@ -5,7 +5,10 @@ import Foundation
|
||||
import ManualDCore
|
||||
import Styleguide
|
||||
|
||||
// TODO: Calculate rooms sensible based on project wide SHR.
|
||||
|
||||
struct RoomsView: HTML, Sendable {
|
||||
let projectID: Project.ID
|
||||
let rooms: [Room]
|
||||
|
||||
var body: some HTML {
|
||||
@@ -17,7 +20,7 @@ struct RoomsView: HTML, Sendable {
|
||||
.data("tip", value: "Add room")
|
||||
) {
|
||||
button(
|
||||
.hx.get(route: .room(.form(dismiss: false))),
|
||||
.hx.get(route: .room(.form(projectID, dismiss: false))),
|
||||
.hx.target("#roomForm"),
|
||||
.hx.swap(.outerHTML),
|
||||
.class("btn btn-primary w-[40px] text-2xl")
|
||||
@@ -35,7 +38,6 @@ struct RoomsView: HTML, Sendable {
|
||||
th { Label("Name") }
|
||||
th { Label("Heating Load") }
|
||||
th { Label("Cooling Total") }
|
||||
th { Label("Cooling Sensible") }
|
||||
th { Label("Register Count") }
|
||||
}
|
||||
}
|
||||
@@ -48,13 +50,9 @@ struct RoomsView: HTML, Sendable {
|
||||
.attributes(.class("text-error"))
|
||||
}
|
||||
td {
|
||||
Number(room.coolingLoad.total)
|
||||
Number(room.coolingLoad)
|
||||
.attributes(.class("text-success"))
|
||||
}
|
||||
td {
|
||||
Number(room.coolingLoad.sensible)
|
||||
.attributes(.class("text-info"))
|
||||
}
|
||||
td {
|
||||
Number(room.registerCount)
|
||||
}
|
||||
@@ -72,16 +70,12 @@ struct RoomsView: HTML, Sendable {
|
||||
.attributes(
|
||||
.class("badge badge-outline badge-success badge-xl"))
|
||||
}
|
||||
td {
|
||||
Number(rooms.coolingSensibleTotal)
|
||||
.attributes(.class("badge badge-outline badge-info badge-xl"))
|
||||
}
|
||||
td {}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
RoomForm(dismiss: true)
|
||||
RoomForm(dismiss: true, projectID: projectID)
|
||||
}
|
||||
}
|
||||
|
||||
@@ -93,10 +87,6 @@ extension Array where Element == Room {
|
||||
}
|
||||
|
||||
var coolingTotal: Double {
|
||||
reduce(into: 0) { $0 += $1.coolingLoad.total }
|
||||
}
|
||||
|
||||
var coolingSensibleTotal: Double {
|
||||
reduce(into: 0) { $0 += $1.coolingLoad.sensible }
|
||||
reduce(into: 0) { $0 += $1.coolingLoad }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user