@@ -39,6 +39,8 @@ type defaultFrontend struct {
39
39
40
40
groupCmds map [string ]* cobra.Command
41
41
executableCmds map [string ]* cobra.Command
42
+
43
+ cmdCategories []* cobra.Group
42
44
}
43
45
44
46
func NewDefaultFrontend (appCtx context.LauncherContext , rootCmd * cobra.Command , backend backend.Backend ) Frontend {
@@ -50,9 +52,24 @@ func NewDefaultFrontend(appCtx context.LauncherContext, rootCmd *cobra.Command,
50
52
groupCmds : make (map [string ]* cobra.Command ),
51
53
executableCmds : make (map [string ]* cobra.Command ),
52
54
}
55
+ // add all command categories
56
+ if viper .GetBool (config .GROUP_HELP_BY_REGISTRY_KEY ) {
57
+ frontend .RegisterCommandCategory ()
58
+ }
53
59
return frontend
54
60
}
55
61
62
+ func (self * defaultFrontend ) RegisterCommandCategory () {
63
+ self .cmdCategories = []* cobra.Group {}
64
+ for _ , source := range self .backend .AllPackageSources () {
65
+ self .cmdCategories = append (self .cmdCategories , & cobra.Group {
66
+ ID : source .Repo .Name (),
67
+ Title : fmt .Sprintf ("Commands from '%s' registry" , source .Repo .Name ()),
68
+ })
69
+ }
70
+ self .rootCmd .AddGroup (self .cmdCategories ... )
71
+ }
72
+
56
73
func (self * defaultFrontend ) AddUserCommands () {
57
74
self .addGroupCommands ()
58
75
self .addExecutableCommands ()
@@ -61,6 +78,7 @@ func (self *defaultFrontend) AddUserCommands() {
61
78
func (self * defaultFrontend ) addGroupCommands () {
62
79
groups := self .backend .GroupCommands ()
63
80
for _ , v := range groups {
81
+ registryName := v .RepositoryID ()
64
82
group := v .RuntimeGroup ()
65
83
name := v .RuntimeName ()
66
84
usage := strings .TrimSpace (fmt .Sprintf ("%s %s" ,
@@ -99,13 +117,18 @@ func (self *defaultFrontend) addGroupCommands() {
99
117
self .processFlags (false , group , name , cmd , flags , exclusiveFlags , groupFlags )
100
118
101
119
self .groupCmds [v .RuntimeName ()] = cmd
120
+
121
+ if viper .GetBool (config .GROUP_HELP_BY_REGISTRY_KEY ) {
122
+ cmd .GroupID = registryName
123
+ }
102
124
self .rootCmd .AddCommand (cmd )
103
125
}
104
126
}
105
127
106
128
func (self * defaultFrontend ) addExecutableCommands () {
107
129
executables := self .backend .ExecutableCommands ()
108
130
for _ , v := range executables {
131
+ registryName := v .RepositoryID ()
109
132
group := v .RuntimeGroup ()
110
133
name := v .RuntimeName ()
111
134
usage := strings .TrimSpace (fmt .Sprintf ("%s %s" ,
@@ -205,6 +228,9 @@ func (self *defaultFrontend) addExecutableCommands() {
205
228
}
206
229
207
230
if v .RuntimeGroup () == "" {
231
+ if viper .GetBool (config .GROUP_HELP_BY_REGISTRY_KEY ) {
232
+ cmd .GroupID = registryName
233
+ }
208
234
self .rootCmd .AddCommand (cmd )
209
235
} else {
210
236
if group , exists := self .groupCmds [v .RuntimeGroup ()]; exists {
0 commit comments