git-bug/commands/ls.go

53 lines
925 B
Go
Raw Normal View History

2018-07-14 23:19:05 +03:00
package commands
import (
"fmt"
2018-08-13 19:32:11 +03:00
"github.com/MichaelMure/git-bug/bug"
2018-07-17 21:23:14 +03:00
"github.com/MichaelMure/git-bug/util"
"github.com/spf13/cobra"
2018-07-14 23:19:05 +03:00
)
func runLsBug(cmd *cobra.Command, args []string) error {
bugs := bug.ReadAllLocalBugs(repo)
2018-07-14 23:19:05 +03:00
for b := range bugs {
if b.Err != nil {
return b.Err
2018-07-14 23:19:05 +03:00
}
snapshot := b.Bug.Compile()
2018-07-14 23:19:05 +03:00
var author bug.Person
2018-07-17 21:23:14 +03:00
if len(snapshot.Comments) > 0 {
create := snapshot.Comments[0]
author = create.Author
}
// truncate + pad if needed
titleFmt := fmt.Sprintf("%-50.50s", snapshot.Title)
authorFmt := fmt.Sprintf("%-15.15s", author.Name)
fmt.Printf("%s %s\t%s\t%s\t%s\n",
util.Cyan(b.Bug.HumanId()),
2018-07-17 21:23:14 +03:00
util.Yellow(snapshot.Status),
titleFmt,
util.Magenta(authorFmt),
snapshot.Summary(),
)
2018-07-14 23:19:05 +03:00
}
return nil
}
var lsCmd = &cobra.Command{
Use: "ls",
Short: "Display a summary of all bugs",
RunE: runLsBug,
}
func init() {
2018-07-20 16:46:14 +03:00
RootCmd.AddCommand(lsCmd)
2018-07-14 23:19:05 +03:00
}