2024-01-14 10:36:46 -06:00
|
|
|
// watch all your go git repos
|
2024-01-13 23:27:46 -06:00
|
|
|
package main
|
|
|
|
|
2024-01-18 00:58:14 -06:00
|
|
|
import (
|
2024-01-18 05:03:04 -06:00
|
|
|
"go.wit.com/gui"
|
2024-01-18 00:58:14 -06:00
|
|
|
"go.wit.com/lib/gadgets"
|
|
|
|
"go.wit.com/lib/gui/repostatus"
|
2024-01-13 23:27:46 -06:00
|
|
|
)
|
|
|
|
|
2024-01-14 10:36:46 -06:00
|
|
|
// the main window nodes
|
|
|
|
var reposwin *gadgets.BasicWindow
|
|
|
|
var reposbox *gui.Node
|
|
|
|
var reposgrid *gui.Node
|
|
|
|
var reposgroup *gui.Node
|
2024-01-16 04:46:17 -06:00
|
|
|
|
2024-01-23 11:22:33 -06:00
|
|
|
var me *autoType
|
2024-01-16 04:46:17 -06:00
|
|
|
|
2024-01-23 11:22:33 -06:00
|
|
|
type autoType struct {
|
2024-01-24 22:22:34 -06:00
|
|
|
allrepos map[string]*repo
|
2024-01-18 05:03:04 -06:00
|
|
|
myGui *gui.Node
|
2024-01-16 11:56:55 -06:00
|
|
|
|
|
|
|
autotypistWindow *gadgets.BasicWindow
|
2024-01-20 18:45:55 -06:00
|
|
|
|
2024-01-16 11:56:55 -06:00
|
|
|
// #### autotypist Global Display Options
|
2024-01-25 13:09:33 -06:00
|
|
|
autoHidePerfect *gui.Node
|
|
|
|
autoHideReadOnly *gui.Node
|
2024-01-16 04:46:17 -06:00
|
|
|
|
2024-01-16 11:56:55 -06:00
|
|
|
// #### autotypist Global Build Options
|
|
|
|
// what to change all the branches to
|
|
|
|
// so, as a developer, you can move all the repos
|
|
|
|
// to the 'devel' branch and then test a devel branch build
|
|
|
|
// then switch back to your 'username' branch and do a build there
|
|
|
|
toMoveToBranch string
|
|
|
|
|
|
|
|
// displays the preferred names used for the repo tree state
|
2024-01-18 00:58:14 -06:00
|
|
|
mainBranch *gadgets.BasicCombobox
|
2024-01-16 04:46:17 -06:00
|
|
|
develBranch *gadgets.BasicCombobox
|
2024-01-18 00:58:14 -06:00
|
|
|
userBranch *gadgets.BasicCombobox
|
2024-01-16 11:56:55 -06:00
|
|
|
|
2024-01-18 05:03:04 -06:00
|
|
|
// this button will regenerate everyones go.mod & go.sum
|
|
|
|
rerunGoMod *gui.Node
|
2024-01-20 18:45:55 -06:00
|
|
|
|
|
|
|
// if checked, will stop trying to os.Exec() things after failure
|
|
|
|
stopOnErrors *gui.Node
|
2024-01-21 03:22:51 -06:00
|
|
|
|
2024-01-23 11:22:33 -06:00
|
|
|
// button to attempt to autorebuild
|
|
|
|
autoRebuildButton *gui.Node
|
|
|
|
|
|
|
|
// checkbox for --dry-run
|
|
|
|
autoDryRun *gui.Node
|
2024-01-26 02:04:19 -06:00
|
|
|
|
|
|
|
// checkbox for intermittent scanning
|
|
|
|
scanEveryMinute *gui.Node
|
2024-01-23 11:22:33 -06:00
|
|
|
|
|
|
|
// The current working directory
|
2024-01-30 23:55:04 -06:00
|
|
|
autoWorkingPwd *gadgets.OneLiner
|
2024-01-23 11:22:33 -06:00
|
|
|
|
2024-01-26 14:21:05 -06:00
|
|
|
// what is being used as your home dir
|
|
|
|
userHomePwd *gadgets.OneLiner
|
|
|
|
|
|
|
|
// what is being used as ~/go/src
|
|
|
|
goSrcPwd *gadgets.OneLiner
|
|
|
|
|
2024-01-23 11:22:33 -06:00
|
|
|
downloadEverythingButton *gui.Node
|
2024-01-25 11:35:40 -06:00
|
|
|
|
|
|
|
// delete ~/go/src & ~/go/pkg buttons
|
|
|
|
deleteGoSrcPkgB *gui.Node
|
2024-01-16 04:46:17 -06:00
|
|
|
}
|
|
|
|
|
2024-01-13 23:27:46 -06:00
|
|
|
type repo struct {
|
2024-01-18 00:58:14 -06:00
|
|
|
hidden bool
|
|
|
|
path string
|
2024-01-13 23:27:46 -06:00
|
|
|
lasttagrev string
|
2024-01-18 00:58:14 -06:00
|
|
|
lasttag string
|
2024-01-13 23:27:46 -06:00
|
|
|
|
|
|
|
pLabel *gui.Node // path label
|
2024-01-30 18:50:00 -06:00
|
|
|
|
2024-01-24 22:22:34 -06:00
|
|
|
lastTag *gui.Node // last tagged version label
|
|
|
|
vLabel *gui.Node // version label
|
|
|
|
dirtyLabel *gui.Node // git state (dirty or not?)
|
2024-01-24 02:41:34 -06:00
|
|
|
goSumStatus *gui.Node // what is the state of the go.sum file
|
2024-01-13 23:27:46 -06:00
|
|
|
|
|
|
|
masterVersion *gui.Node // the master branch version
|
2024-01-30 18:50:00 -06:00
|
|
|
develVersion *gui.Node // the devel branch version
|
|
|
|
userVersion *gui.Node // the user branch version
|
2024-01-13 23:27:46 -06:00
|
|
|
|
2024-01-23 11:22:33 -06:00
|
|
|
statusButton *gui.Node // opens up the status window
|
2024-01-13 23:27:46 -06:00
|
|
|
|
|
|
|
status *repostatus.RepoStatus
|
|
|
|
}
|