/*
* Copyright (C) 2024 Jonni Liljamo <jonni@liljamo.com>
*
* This file is licensed under GPL-3.0-or-later, see NOTICE and LICENSE for
* more information.
*/
package handlers
import (
"net/http"
"git.src.quest/~liljamo/emerwen-web/internal/client"
"git.src.quest/~liljamo/emerwen-web/internal/components"
"git.src.quest/~liljamo/emerwen-web/internal/renderer"
"github.com/gin-gonic/gin"
"google.golang.org/protobuf/types/known/emptypb"
)
// PartialWorkers returns a gin handler for the partial workers route.
func PartialWorkers(client *client.Client) gin.HandlerFunc {
return func(c *gin.Context) {
response, err := client.Client.GetWorkers(client.Ctx, &emptypb.Empty{})
if err != nil {
handleClientError(c, err)
return
}
r := renderer.New(BaseContext(c), http.StatusOK, components.PartialWorkers(response.Workers))
c.Render(http.StatusOK, r)
}
}