git-bug/commands/comment.go

51 lines
1.1 KiB
Go
Raw Normal View History

2018-07-15 10:26:11 +03:00
package commands
import (
2020-06-28 19:26:29 +03:00
text "github.com/MichaelMure/go-term-text"
"github.com/spf13/cobra"
_select "github.com/MichaelMure/git-bug/commands/select"
"github.com/MichaelMure/git-bug/util/colors"
2018-07-15 10:26:11 +03:00
)
2020-06-28 19:26:29 +03:00
func newCommentCommand() *cobra.Command {
env := newEnv()
cmd := &cobra.Command{
Use: "comment [ID]",
Short: "Display or add comments to a bug.",
PreRunE: loadBackend(env),
RunE: closeBackend(env, func(cmd *cobra.Command, args []string) error {
2020-06-28 19:26:29 +03:00
return runComment(env, args)
}),
ValidArgsFunction: completeBug(env),
2020-06-28 19:26:29 +03:00
}
cmd.AddCommand(newCommentAddCommand())
cmd.AddCommand(newCommentEditCommand())
2020-06-28 19:26:29 +03:00
return cmd
}
func runComment(env *Env, args []string) error {
b, args, err := _select.ResolveBug(env.backend, args)
2018-07-15 10:26:11 +03:00
if err != nil {
return err
}
snap := b.Snapshot()
2020-06-28 19:26:29 +03:00
for i, comment := range snap.Comments {
if i != 0 {
2020-06-28 19:26:29 +03:00
env.out.Println()
}
2020-06-28 19:26:29 +03:00
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))
}
2018-07-15 10:26:11 +03:00
2020-06-28 19:26:29 +03:00
return nil
2018-07-15 10:26:11 +03:00
}