mirror of
https://gitea.com/gitea/tea
synced 2024-10-31 21:20:23 +00:00
a91168fd36
remove unused debug var move outputList into a struct so we can add additional functionality for all list output rename list output to table.go make table sortable sort milestones sort milestones descending remove unnecessary if Co-authored-by: Norwin Roosen <git@nroo.de> Reviewed-on: https://gitea.com/gitea/tea/pulls/281 Reviewed-by: khmarbaise <khmarbaise@noreply.gitea.io> Reviewed-by: 6543 <6543@obermui.de> Co-Authored-By: Norwin <noerw@noreply.gitea.io> Co-Committed-By: Norwin <noerw@noreply.gitea.io>
52 lines
1.1 KiB
Go
52 lines
1.1 KiB
Go
// 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 (
|
|
"strings"
|
|
|
|
"code.gitea.io/sdk/gitea"
|
|
)
|
|
|
|
// NotificationsList prints a listing of notification threads
|
|
func NotificationsList(news []*gitea.NotificationThread, output string, showRepository bool) {
|
|
headers := []string{
|
|
"Type",
|
|
"Index",
|
|
"Title",
|
|
}
|
|
if showRepository {
|
|
headers = append(headers, "Repository")
|
|
}
|
|
|
|
t := table{headers: headers}
|
|
|
|
for _, n := range news {
|
|
if n.Subject == nil {
|
|
continue
|
|
}
|
|
// if pull or Issue get Index
|
|
var index string
|
|
if n.Subject.Type == "Issue" || n.Subject.Type == "Pull" {
|
|
index = n.Subject.URL
|
|
urlParts := strings.Split(n.Subject.URL, "/")
|
|
if len(urlParts) != 0 {
|
|
index = urlParts[len(urlParts)-1]
|
|
}
|
|
index = "#" + index
|
|
}
|
|
|
|
item := []string{n.Subject.Type, index, n.Subject.Title}
|
|
if showRepository {
|
|
item = append(item, n.Repository.FullName)
|
|
}
|
|
t.addRowSlice(item)
|
|
}
|
|
|
|
if t.Len() != 0 {
|
|
t.print(output)
|
|
}
|
|
}
|