todo/cmd/ls.go

95 lines
2.8 KiB
Go
Raw Normal View History

2022-09-09 17:31:08 +02:00
/*
Copyright © 2022 Volodymyr Patuta me@vpatuta.xyz
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package cmd
import (
"os"
2022-09-10 14:43:58 +02:00
"time"
2022-09-09 17:31:08 +02:00
"github.com/jedib0t/go-pretty/v6/table"
2022-09-10 18:54:17 +02:00
"github.com/jedib0t/go-pretty/v6/text"
2022-09-09 17:31:08 +02:00
"github.com/spf13/cobra"
2022-09-10 14:43:58 +02:00
"golang.org/x/sys/unix"
2022-09-09 17:31:08 +02:00
)
// lsCmd represents the ls command
var lsCmd = &cobra.Command{
Use: "ls",
Short: "A brief description of your command",
Long: `A longer description that spans multiple lines and likely contains examples
and usage of using your command. For example:
Cobra is a CLI library for Go that empowers applications.
This application is a tool to generate the needed files
to quickly create a Cobra application.`,
Run: func(cmd *cobra.Command, args []string) {
todos := getAllTodos()
2022-09-10 14:43:58 +02:00
ws, err := unix.IoctlGetWinsize(int(os.Stdin.Fd()), unix.TIOCGWINSZ)
errPanic(err, "failed to determine terminal width")
cols := int(ws.Col)
2022-09-09 17:31:08 +02:00
t := table.NewWriter()
t.SetOutputMirror(os.Stdout)
2022-09-10 18:54:17 +02:00
t.AppendHeader(table.Row{"#", "Description", "Due date", "Completed"})
2022-09-09 17:31:08 +02:00
for _, todo := range todos {
2022-09-10 14:43:58 +02:00
date := todo.DueDate.Format("02/01/2006 15:04")
d := time.Time{}
if todo.DueDate == d {
date = ""
}
desc := todo.Desc
if len(desc) > (cols - 20) {
desc = insertNth(desc, cols-20)
}
2022-09-10 18:54:17 +02:00
comp := '✗'
if todo.IsDone {
comp = '✓'
}
t.AppendRow([]interface{}{todo.ID, desc, date, string(comp)})
2022-09-09 17:31:08 +02:00
// data[i] = []string{strconv.FormatUint(todo.ID, 10), todo.Desc, todo.DueDate.Format("")}
}
2022-09-10 14:43:58 +02:00
t.SetStyle(table.StyleLight)
t.SetAllowedRowLength(cols)
2022-09-10 18:54:17 +02:00
t.SetColumnConfigs([]table.ColumnConfig{
{Number: 4, Align: text.AlignCenter},
})
2022-09-09 17:31:08 +02:00
t.Render()
},
}
2022-09-10 14:43:58 +02:00
// insertNth inserts new line on each nth position.
func insertNth(s string, n int) string {
for i := n - 1; i < len(s); i += n {
s = s[:i] + "\n" + s[i:]
}
return s
}
2022-09-09 17:31:08 +02:00
func init() {
rootCmd.AddCommand(lsCmd)
// Here you will define your flags and configuration settings.
// Cobra supports Persistent Flags which will work for this command
// and all subcommands, e.g.:
// lsCmd.PersistentFlags().String("foo", "", "A help for foo")
// Cobra supports local flags which will only run when this command
// is called directly, e.g.:
// lsCmd.Flags().BoolP("toggle", "t", false, "Help message for toggle")
}