mirror of
https://github.com/neilotoole/sq.git
synced 2024-12-26 09:44:18 +03:00
35 lines
819 B
Go
35 lines
819 B
Go
package tablew
|
|
|
|
import (
|
|
"io"
|
|
|
|
"github.com/neilotoole/sq/cli/output"
|
|
"github.com/neilotoole/sq/libsq/notify"
|
|
)
|
|
|
|
type notifyWriter struct {
|
|
tbl *table
|
|
}
|
|
|
|
// NewNotifyWriter implements output.NotificationWriter.
|
|
func NewNotifyWriter(out io.Writer, fm *output.Formatting, header bool) output.NotificationWriter {
|
|
tbl := &table{out: out, header: header, fm: fm}
|
|
w := ¬ifyWriter{tbl: tbl}
|
|
w.tbl.reset()
|
|
return w
|
|
}
|
|
|
|
// NotifyDestinations implements output.NotificationWriter.
|
|
func (w *notifyWriter) NotifyDestinations(dests []notify.Destination) error {
|
|
w.tbl.tblImpl.SetHeader([]string{"NOTIFIER", "TYPE", "TARGET"})
|
|
var rows [][]string
|
|
|
|
for _, dest := range dests {
|
|
row := []string{dest.Label, string(dest.Type), dest.Target}
|
|
rows = append(rows, row)
|
|
}
|
|
|
|
w.tbl.appendRowsAndRenderAll(rows)
|
|
return nil
|
|
}
|