autotypist/tagWindow.go

94 lines
1.9 KiB
Go
Raw Normal View History

package main
import (
"go.wit.com/gui"
"go.wit.com/log"
"go.wit.com/lib/gadgets"
2024-02-17 08:38:44 -06:00
"go.wit.com/lib/gui/repolist"
"go.wit.com/lib/gui/repostatus"
)
var tagW *tagWindow
type tagWindow struct {
win *gadgets.BasicWindow
box *gui.Node
grid *gui.Node
group *gui.Node
allTags []*gitTag
}
type gitTag struct {
rs *repostatus.RepoStatus
hidden bool
}
func makeTagWindow() *tagWindow {
if tagW != nil {
tagW.win.Toggle()
return tagW
}
tagW = new(tagWindow)
tagW.win = gadgets.NewBasicWindow(me.myGui, "git tag tasks")
tagW.win.Custom = func() {
log.Warn("got to close")
}
tagW.win.Make()
tagW.win.StandardClose()
tagW.win.Draw()
tagW.box = tagW.win.Box()
topGrid := tagW.box.RawGrid()
tagW.group = tagW.box.NewGroup("tags")
tagW.grid = tagW.box.RawGrid()
topGrid.NewButton("list all tags", func() {
me.autotypistWindow.Disable()
defer me.autotypistWindow.Enable()
2024-02-17 08:38:44 -06:00
for _, repo := range repolist.AllRepos() {
allTags := repo.AllTags()
for _, t := range allTags {
2024-02-17 15:47:46 -06:00
log.Info("found tag:", t.TagString(), "from", repo.Name())
}
}
}).SetProgName("TAGSLISTALL")
topGrid.NewButton("delete all dup tags", func() {
me.autotypistWindow.Disable()
defer me.autotypistWindow.Enable()
2024-02-17 08:38:44 -06:00
for _, repo := range repolist.AllRepos() {
2024-02-17 15:47:46 -06:00
if repo.GoPath() == "go.wit.com/lib/gadgets" {
// only do log for now
} else {
// continue
}
2024-02-17 08:38:44 -06:00
tagsW := repo.TagsBox()
tagsW.PruneSmart()
deleteTags := tagsW.List()
for _, t := range deleteTags {
tagW.grid.NewLabel(t.TagString())
2024-02-17 15:47:46 -06:00
tagW.grid.NewLabel(repo.Name())
tagW.grid.NewButton("delete", func() {
2024-02-17 08:38:44 -06:00
repo.DeleteTag(t)
})
tagW.grid.NextRow()
if me.autoDryRun.Checked() {
2024-02-17 15:47:46 -06:00
log.Info("delete tag --dry-run:", t.TagString(), "from", repo.Name())
} else {
2024-02-17 15:47:46 -06:00
log.Info("Deleting tag:", t.TagString(), "from", repo.Name())
2024-02-17 08:38:44 -06:00
go repo.DeleteTag(t)
log.Sleep(1)
}
}
}
})
return tagW
}
func (t *gitTag) Hide() {
t.hidden = true
}