aboutsummaryrefslogtreecommitdiffstats
path: root/commands/comment.go
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2020-06-28 18:26:29 +0200
committerMichael Muré <batolettre@gmail.com>2020-06-28 18:26:29 +0200
commit26bd1dd11010b4d86cebe2510ad7085a6b316334 (patch)
treef1fe939311c75bd615071e96f3d37822cccd77a7 /commands/comment.go
parentc0dbc149d5c0c3610476ba14a800c9ba803a2c2c (diff)
downloadgit-bug-26bd1dd11010b4d86cebe2510ad7085a6b316334.tar.gz
commands: refactor to avoid globals
Diffstat (limited to 'commands/comment.go')
-rw-r--r--commands/comment.go57
1 files changed, 27 insertions, 30 deletions
diff --git a/commands/comment.go b/commands/comment.go
index 4be39a84..82e7d9f6 100644
--- a/commands/comment.go
+++ b/commands/comment.go
@@ -1,20 +1,34 @@
package commands
import (
- "fmt"
-
- "github.com/MichaelMure/go-term-text"
+ text "github.com/MichaelMure/go-term-text"
"github.com/spf13/cobra"
- "github.com/MichaelMure/git-bug/bug"
"github.com/MichaelMure/git-bug/cache"
"github.com/MichaelMure/git-bug/commands/select"
"github.com/MichaelMure/git-bug/util/colors"
"github.com/MichaelMure/git-bug/util/interrupt"
)
-func runComment(cmd *cobra.Command, args []string) error {
- backend, err := cache.NewRepoCache(repo)
+func newCommentCommand() *cobra.Command {
+ env := newEnv()
+
+ cmd := &cobra.Command{
+ Use: "comment [<id>]",
+ Short: "Display or add comments to a bug.",
+ PreRunE: loadRepo(env),
+ RunE: func(cmd *cobra.Command, args []string) error {
+ return runComment(env, args)
+ },
+ }
+
+ cmd.AddCommand(newCommentAddCommand())
+
+ return cmd
+}
+
+func runComment(env *Env, args []string) error {
+ backend, err := cache.NewRepoCache(env.repo)
if err != nil {
return err
}
@@ -28,33 +42,16 @@ func runComment(cmd *cobra.Command, args []string) error {
snap := b.Snapshot()
- commentsTextOutput(snap.Comments)
-
- return nil
-}
-
-func commentsTextOutput(comments []bug.Comment) {
- for i, comment := range comments {
+ for i, comment := range snap.Comments {
if i != 0 {
- fmt.Println()
+ env.out.Println()
}
- fmt.Printf("Author: %s\n", colors.Magenta(comment.Author.DisplayName()))
- fmt.Printf("Id: %s\n", colors.Cyan(comment.Id().Human()))
- fmt.Printf("Date: %s\n\n", comment.FormatTime())
- fmt.Println(text.LeftPadLines(comment.Message, 4))
+ env.out.Printf("Author: %s\n", colors.Magenta(comment.Author.DisplayName()))
+ env.out.Printf("Id: %s\n", colors.Cyan(comment.Id().Human()))
+ env.out.Printf("Date: %s\n\n", comment.FormatTime())
+ env.out.Println(text.LeftPadLines(comment.Message, 4))
}
-}
-var commentCmd = &cobra.Command{
- Use: "comment [<id>]",
- Short: "Display or add comments to a bug.",
- PreRunE: loadRepo,
- RunE: runComment,
-}
-
-func init() {
- RootCmd.AddCommand(commentCmd)
-
- commentCmd.Flags().SortFlags = false
+ return nil
}