115 lines
2.5 KiB
Go
115 lines
2.5 KiB
Go
package pages
|
|
|
|
import (
|
|
"fmt"
|
|
"net/url"
|
|
|
|
"github.com/labstack/echo/v4"
|
|
"github.com/mikestefanello/pagoda/ent/admin"
|
|
"github.com/mikestefanello/pagoda/pkg/routenames"
|
|
"github.com/mikestefanello/pagoda/pkg/ui"
|
|
. "github.com/mikestefanello/pagoda/pkg/ui/components"
|
|
"github.com/mikestefanello/pagoda/pkg/ui/forms"
|
|
"github.com/mikestefanello/pagoda/pkg/ui/layouts"
|
|
. "maragu.dev/gomponents"
|
|
. "maragu.dev/gomponents/html"
|
|
)
|
|
|
|
func AdminEntityDelete(ctx echo.Context, entityType admin.EntityType) error {
|
|
r := ui.NewRequest(ctx)
|
|
r.Title = fmt.Sprintf("Delete %s", entityType.GetName())
|
|
|
|
return r.Render(
|
|
layouts.Primary,
|
|
forms.AdminEntityDelete(r, entityType),
|
|
)
|
|
}
|
|
|
|
func AdminEntityInput(ctx echo.Context, entityType admin.EntityType, values url.Values) error {
|
|
r := ui.NewRequest(ctx)
|
|
if values == nil {
|
|
r.Title = fmt.Sprintf("Add %s", entityType.GetName())
|
|
} else {
|
|
r.Title = fmt.Sprintf("Edit %s", entityType.GetName())
|
|
}
|
|
|
|
return r.Render(
|
|
layouts.Primary,
|
|
forms.AdminEntity(r, entityType, values),
|
|
)
|
|
}
|
|
|
|
func AdminEntityList(
|
|
ctx echo.Context,
|
|
entityType admin.EntityType,
|
|
entityList *admin.EntityList,
|
|
) error {
|
|
r := ui.NewRequest(ctx)
|
|
r.Title = entityType.GetName()
|
|
|
|
genHeader := func() Node {
|
|
g := make(Group, 0, len(entityList.Columns)+2)
|
|
g = append(g, Th(Text("ID")))
|
|
for _, h := range entityList.Columns {
|
|
g = append(g, Th(Text(h)))
|
|
}
|
|
g = append(g, Th())
|
|
return g
|
|
}
|
|
|
|
genRow := func(row admin.EntityValues) Node {
|
|
g := make(Group, 0, len(row.Values)+3)
|
|
g = append(g, Th(Text(fmt.Sprint(row.ID))))
|
|
for _, h := range row.Values {
|
|
g = append(g, Td(Text(h)))
|
|
}
|
|
g = append(g,
|
|
Td(
|
|
ButtonLink(
|
|
ColorInfo,
|
|
r.Path(routenames.AdminEntityEdit(entityType.GetName()), row.ID),
|
|
"Edit",
|
|
),
|
|
Span(Class("mr-2")),
|
|
ButtonLink(
|
|
ColorError,
|
|
r.Path(routenames.AdminEntityDelete(entityType.GetName()), row.ID),
|
|
"Delete",
|
|
),
|
|
),
|
|
)
|
|
return g
|
|
}
|
|
|
|
genRows := func() Node {
|
|
g := make(Group, 0, len(entityList.Entities))
|
|
for _, row := range entityList.Entities {
|
|
g = append(g, Tr(genRow(row)))
|
|
}
|
|
return g
|
|
}
|
|
|
|
return r.Render(layouts.Primary, Group{
|
|
Div(
|
|
Class("form-control mb-2"),
|
|
ButtonLink(
|
|
ColorAccent,
|
|
r.Path(routenames.AdminEntityAdd(entityType.GetName())),
|
|
fmt.Sprintf("Add %s", entityType.GetName()),
|
|
),
|
|
),
|
|
Table(
|
|
Class("table table-zebra mb-2"),
|
|
THead(
|
|
Tr(genHeader()),
|
|
),
|
|
TBody(genRows()),
|
|
),
|
|
Pager(
|
|
entityList.Page,
|
|
r.Path(routenames.AdminEntityAdd(entityType.GetName())),
|
|
entityList.HasNextPage,
|
|
"",
|
|
),
|
|
})
|
|
}
|