Render all tables the same way
This commit is contained in:
parent
8b7269ae09
commit
087e096e60
11 changed files with 16 additions and 9 deletions
|
@ -68,7 +68,7 @@ var (
|
||||||
if common.OutputFormat == common.OutputFormatCSV {
|
if common.OutputFormat == common.OutputFormatCSV {
|
||||||
t.RenderCSV()
|
t.RenderCSV()
|
||||||
} else {
|
} else {
|
||||||
t.SetStyle(table.StyleLight)
|
common.StylizeTable(t)
|
||||||
t.Render()
|
t.Render()
|
||||||
}
|
}
|
||||||
case common.OutputFormatQR, common.OutputFormatDefault:
|
case common.OutputFormatQR, common.OutputFormatDefault:
|
||||||
|
|
|
@ -78,7 +78,7 @@ var (
|
||||||
if common.OutputFormat == common.OutputFormatCSV {
|
if common.OutputFormat == common.OutputFormatCSV {
|
||||||
t.RenderCSV()
|
t.RenderCSV()
|
||||||
} else {
|
} else {
|
||||||
t.SetStyle(table.StyleLight)
|
common.StylizeTable(t)
|
||||||
t.Render()
|
t.Render()
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
|
|
|
@ -60,7 +60,7 @@ var (
|
||||||
if common.OutputFormat == common.OutputFormatCSV {
|
if common.OutputFormat == common.OutputFormatCSV {
|
||||||
t.RenderCSV()
|
t.RenderCSV()
|
||||||
} else {
|
} else {
|
||||||
t.SetStyle(table.StyleLight)
|
common.StylizeTable(t)
|
||||||
t.Render()
|
t.Render()
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
|
|
|
@ -73,7 +73,7 @@ var (
|
||||||
if common.OutputFormat == common.OutputFormatCSV {
|
if common.OutputFormat == common.OutputFormatCSV {
|
||||||
t.RenderCSV()
|
t.RenderCSV()
|
||||||
} else {
|
} else {
|
||||||
t.SetStyle(table.StyleLight)
|
common.StylizeTable(t)
|
||||||
t.Render()
|
t.Render()
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
|
|
|
@ -81,7 +81,7 @@ var (
|
||||||
if common.OutputFormat == common.OutputFormatCSV {
|
if common.OutputFormat == common.OutputFormatCSV {
|
||||||
t.RenderCSV()
|
t.RenderCSV()
|
||||||
} else {
|
} else {
|
||||||
t.SetStyle(table.StyleLight)
|
common.StylizeTable(t)
|
||||||
t.Render()
|
t.Render()
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
|
|
|
@ -77,7 +77,7 @@ var (
|
||||||
if common.OutputFormat == common.OutputFormatCSV {
|
if common.OutputFormat == common.OutputFormatCSV {
|
||||||
t.RenderCSV()
|
t.RenderCSV()
|
||||||
} else {
|
} else {
|
||||||
t.SetStyle(table.StyleLight)
|
common.StylizeTable(t)
|
||||||
t.Render()
|
t.Render()
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
|
|
|
@ -112,7 +112,7 @@ var (
|
||||||
if common.OutputFormat == common.OutputFormatCSV {
|
if common.OutputFormat == common.OutputFormatCSV {
|
||||||
t.RenderCSV()
|
t.RenderCSV()
|
||||||
} else {
|
} else {
|
||||||
t.SetStyle(table.StyleLight)
|
common.StylizeTable(t)
|
||||||
t.Render()
|
t.Render()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -117,7 +117,7 @@ var (
|
||||||
if common.OutputFormat == common.OutputFormatCSV {
|
if common.OutputFormat == common.OutputFormatCSV {
|
||||||
t.RenderCSV()
|
t.RenderCSV()
|
||||||
} else {
|
} else {
|
||||||
t.SetStyle(table.StyleLight)
|
common.StylizeTable(t)
|
||||||
t.Render()
|
t.Render()
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
|
|
|
@ -108,7 +108,7 @@ var (
|
||||||
if common.OutputFormat == common.OutputFormatCSV {
|
if common.OutputFormat == common.OutputFormatCSV {
|
||||||
t.RenderCSV()
|
t.RenderCSV()
|
||||||
} else {
|
} else {
|
||||||
t.SetStyle(table.StyleLight)
|
common.StylizeTable(t)
|
||||||
t.Render()
|
t.Render()
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
|
|
|
@ -67,6 +67,7 @@ var versionCmd = &cobra.Command{
|
||||||
if common.OutputFormat == common.OutputFormatCSV {
|
if common.OutputFormat == common.OutputFormatCSV {
|
||||||
t.RenderCSV()
|
t.RenderCSV()
|
||||||
} else {
|
} else {
|
||||||
|
common.StylizeTable(t)
|
||||||
t.Render()
|
t.Render()
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
|
|
|
@ -3,6 +3,8 @@ package common
|
||||||
import (
|
import (
|
||||||
"log"
|
"log"
|
||||||
|
|
||||||
|
"github.com/jedib0t/go-pretty/v6/table"
|
||||||
|
|
||||||
"gitlab.com/signald/signald-go/signald"
|
"gitlab.com/signald/signald-go/signald"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -30,3 +32,7 @@ func Must(err error) {
|
||||||
log.Fatal(err)
|
log.Fatal(err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func StylizeTable(t table.Writer) {
|
||||||
|
t.SetStyle(table.StyleLight)
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue