DEVELOPMENT ENVIRONMENT

~liljamo/emerwen-web

ref: 4e555b1e3309881de4969794eff19e5275430069 emerwen-web/internal/handlers/partials.go -rw-r--r-- 882 bytes
4e555b1eJonni Liljamo feat: UI for new/patch/delete worker/target 12 hours ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/*
 * 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)
	}
}