You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.5 KiB
48 lines
1.5 KiB
import Elementary |
|
import ElementaryHTMX |
|
import Fluent |
|
|
|
struct TodosTableComponent: HTML { |
|
|
|
var name: String |
|
var todos: [TodoDTO] |
|
var refresh: Bool = false |
|
|
|
// ------------------------------------- |
|
|
|
var content: some HTML { |
|
div(.id("cdiv_" + name), refresh ? .hx.swapOOB(.outerHTML) : .empty()) { |
|
table(.class("table")) { |
|
thead { |
|
tr { |
|
th { "#" } |
|
th { "ID" } |
|
th { "Title" } |
|
th { "Modifier" } |
|
} |
|
} |
|
tbody( |
|
.hx.confirm("Are you sure?"), .hx.target("closest tr"), |
|
.hx.swap(.outerHTML, "swap:0.5s") |
|
) { |
|
for (index, todo) in todos.enumerated() { |
|
tr { |
|
td { "\(index)" } |
|
td { todo.id?.uuidString ?? "" } |
|
td { todo.title ?? "" } |
|
td { |
|
if let id = todo.id { |
|
button( |
|
.class("btn btn-danger"), |
|
.hx.delete("/\(name)/\(id.uuidString)") |
|
) { "Delete" } |
|
} |
|
} |
|
} |
|
} |
|
} |
|
} |
|
} |
|
} |
|
|
|
}
|
|
|