forge/windowPatches.go

96 lines
2.0 KiB
Go
Raw Normal View History

2025-03-10 13:52:25 -05:00
// Copyright 2017-2025 WIT.COM Inc. All rights reserved.
// Use of this source code is governed by the GPL 3.0
package main
import (
"sync"
"go.wit.com/gui"
"go.wit.com/lib/gadgets"
"go.wit.com/lib/protobuf/forgepb"
"go.wit.com/log"
)
type stdPatchTableWin struct {
sync.Mutex
win *gadgets.GenericWindow // the machines gui window
box *gui.Node // the machines gui parent box widget
TB *forgepb.PatchesTable // the gui table buffer
update bool // if the window should be updated
}
func (w *stdPatchTableWin) Toggle() {
if w == nil {
return
}
if w.win == nil {
return
}
w.win.Toggle()
}
2025-03-10 17:14:59 -05:00
func makePatchesWin(p *forgepb.Patches) *stdPatchTableWin {
2025-03-10 13:52:25 -05:00
dwin := new(stdPatchTableWin)
2025-03-10 14:57:33 -05:00
dwin.win = gadgets.NewGenericWindow("current patches", "patching options")
2025-03-10 13:52:25 -05:00
dwin.win.Custom = func() {
log.Info("test delete window here")
2025-03-10 14:57:33 -05:00
// dwin = nil
2025-03-10 13:52:25 -05:00
}
grid := dwin.win.Group.RawGrid()
2025-03-10 17:14:59 -05:00
grid.NewLabel(fmt.Sprintf("%d", p.Len())
grid.NewLabel(fmt.Sprintf("total patches")
grid.NextRow()
all := p.All()
for all.Scan() {
repo := all.Next()
}
grid.NewLabel(fmt.Sprintf("%d", p.Len())
grid.NewLabel(fmt.Sprintf("total repos")
grid.NextRow()
2025-03-10 13:52:25 -05:00
grid.NewButton("reload", func() {
})
// make a box at the bottom of the window for the protobuf table
dwin.box = dwin.win.Bottom.Box().SetProgName("TBOX")
2025-03-10 17:14:59 -05:00
if p != nil {
dwin.doPatchesTable(p)
}
2025-03-10 13:52:25 -05:00
return dwin
}
func (dwin *stdPatchTableWin) doPatchesTable(currentPatches *forgepb.Patches) {
dwin.Lock()
defer dwin.Unlock()
if dwin.TB != nil {
dwin.TB.Delete()
dwin.TB = nil
}
2025-03-10 14:57:33 -05:00
// display the protobuf
dwin.TB = AddPatchesPB(dwin.box, currentPatches)
f := func(p *forgepb.Patch) {
log.Info("do something with patch", p.Filename)
}
dwin.TB.Custom(f)
2025-03-10 13:52:25 -05:00
}
// define what rows to have in the protobuf table
func AddPatchesPB(tbox *gui.Node, pb *forgepb.Patches) *forgepb.PatchesTable {
t := pb.NewTable("PatchesPB")
t.NewUuid()
t.SetParent(tbox)
t.AddRepoNamespace()
t.AddFilename()
t.AddCommitHash()
t.ShowTable()
return t
}