2020-12-08 05:28:54 -05:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package print
|
|
|
|
|
|
|
|
import (
|
|
|
|
"strconv"
|
|
|
|
|
|
|
|
"code.gitea.io/sdk/gitea"
|
|
|
|
)
|
|
|
|
|
|
|
|
// LabelsList prints a listing of labels
|
|
|
|
func LabelsList(labels []*gitea.Label, output string) {
|
2020-12-09 17:04:36 -05:00
|
|
|
t := tableWithHeader(
|
2020-12-08 05:28:54 -05:00
|
|
|
"Index",
|
|
|
|
"Color",
|
|
|
|
"Name",
|
|
|
|
"Description",
|
2020-12-09 17:04:36 -05:00
|
|
|
)
|
2020-12-08 05:28:54 -05:00
|
|
|
|
|
|
|
for _, label := range labels {
|
2020-12-09 17:04:36 -05:00
|
|
|
t.addRow(
|
|
|
|
strconv.FormatInt(label.ID, 10),
|
2020-12-21 10:41:07 -05:00
|
|
|
formatLabel(label, !isMachineReadable(output), label.Color),
|
2020-12-09 17:04:36 -05:00
|
|
|
label.Name,
|
|
|
|
label.Description,
|
2020-12-08 05:28:54 -05:00
|
|
|
)
|
|
|
|
}
|
2020-12-09 17:04:36 -05:00
|
|
|
t.print(output)
|
2020-12-08 05:28:54 -05:00
|
|
|
}
|