aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2018-09-09 20:22:46 +0200
committerMichael Muré <batolettre@gmail.com>2018-09-09 20:22:46 +0200
commitdd0823dd2ba68a9c778e81b26e53600b159b5a7d (patch)
tree7557afd91e6fcc12f7357be2616aaa28022f5d10
parent09e097e1bf32ad153c139e3f6befad9fb059fd6e (diff)
downloadgit-bug-dd0823dd2ba68a9c778e81b26e53600b159b5a7d.tar.gz
ls: accept a query to sort and filter the list
-rw-r--r--commands/ls.go14
-rw-r--r--doc/man/git-bug-ls.12
-rw-r--r--doc/md/git-bug_ls.md2
3 files changed, 14 insertions, 4 deletions
diff --git a/commands/ls.go b/commands/ls.go
index 18496e06..339f1469 100644
--- a/commands/ls.go
+++ b/commands/ls.go
@@ -16,7 +16,17 @@ func runLsBug(cmd *cobra.Command, args []string) error {
}
defer backend.Close()
- allIds := backend.AllBugsId(cache.OrderByCreation, cache.OrderAscending)
+ var query *cache.Query
+ if len(args) >= 1 {
+ fmt.Println("Query", args[0])
+ query, err = cache.ParseQuery(args[0])
+
+ if err != nil {
+ return err
+ }
+ }
+
+ allIds := backend.QueryBugs(query)
for _, id := range allIds {
b, err := backend.ResolveBug(id)
@@ -50,7 +60,7 @@ func runLsBug(cmd *cobra.Command, args []string) error {
}
var lsCmd = &cobra.Command{
- Use: "ls",
+ Use: "ls <query>",
Short: "Display a summary of all bugs",
RunE: runLsBug,
}
diff --git a/doc/man/git-bug-ls.1 b/doc/man/git-bug-ls.1
index 00622f4f..2f54503f 100644
--- a/doc/man/git-bug-ls.1
+++ b/doc/man/git-bug-ls.1
@@ -10,7 +10,7 @@ git\-bug\-ls \- Display a summary of all bugs
.SH SYNOPSIS
.PP
-\fBgit\-bug ls [flags]\fP
+\fBgit\-bug ls <query> [flags]\fP
.SH DESCRIPTION
diff --git a/doc/md/git-bug_ls.md b/doc/md/git-bug_ls.md
index b7e2da56..5b89fabb 100644
--- a/doc/md/git-bug_ls.md
+++ b/doc/md/git-bug_ls.md
@@ -7,7 +7,7 @@ Display a summary of all bugs
Display a summary of all bugs
```
-git-bug ls [flags]
+git-bug ls <query> [flags]
```
### Options