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"
|
2019-11-03 16:00:35 +03:00
|
|
|
"github.com/spf13/cobra"
|
|
|
|
|
2020-07-28 21:24:24 +03:00
|
|
|
_select "github.com/MichaelMure/git-bug/commands/select"
|
2018-09-15 21:30:31 +03:00
|
|
|
"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{
|
2020-07-28 21:24:24 +03:00
|
|
|
Use: "comment [ID]",
|
2020-06-28 20:09:32 +03:00
|
|
|
Short: "Display or add comments to a bug.",
|
|
|
|
PreRunE: loadBackend(env),
|
|
|
|
PostRunE: closeBackend(env),
|
2020-06-28 19:26:29 +03:00
|
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
|
|
return runComment(env, args)
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
cmd.AddCommand(newCommentAddCommand())
|
|
|
|
|
|
|
|
return cmd
|
|
|
|
}
|
|
|
|
|
|
|
|
func runComment(env *Env, args []string) error {
|
2020-06-28 20:09:32 +03:00
|
|
|
b, args, err := _select.ResolveBug(env.backend, args)
|
2018-07-15 10:26:11 +03:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2018-09-15 21:30:31 +03:00
|
|
|
snap := b.Snapshot()
|
|
|
|
|
2020-06-28 19:26:29 +03:00
|
|
|
for i, comment := range snap.Comments {
|
2018-09-15 21:30:31 +03:00
|
|
|
if i != 0 {
|
2020-06-28 19:26:29 +03:00
|
|
|
env.out.Println()
|
2018-09-15 21:30:31 +03:00
|
|
|
}
|
|
|
|
|
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-09-15 21:30:31 +03:00
|
|
|
}
|
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
|
|
|
}
|