2020-09-30 05:11:33 +00: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 (
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"code.gitea.io/sdk/gitea"
|
|
|
|
)
|
|
|
|
|
|
|
|
// MilestoneDetails print an milestone formatted to stdout
|
|
|
|
func MilestoneDetails(milestone *gitea.Milestone) {
|
|
|
|
fmt.Printf("%s\n",
|
|
|
|
milestone.Title,
|
|
|
|
)
|
|
|
|
if len(milestone.Description) != 0 {
|
|
|
|
fmt.Printf("\n%s\n", milestone.Description)
|
|
|
|
}
|
|
|
|
if milestone.Deadline != nil && !milestone.Deadline.IsZero() {
|
2022-03-28 22:37:13 +00:00
|
|
|
fmt.Printf("\nDeadline: %s\n", FormatTime(*milestone.Deadline, false))
|
2020-09-30 05:11:33 +00:00
|
|
|
}
|
|
|
|
}
|
2020-12-08 10:28:54 +00:00
|
|
|
|
|
|
|
// MilestonesList prints a listing of milestones
|
|
|
|
func MilestonesList(miles []*gitea.Milestone, output string, state gitea.StateType) {
|
|
|
|
headers := []string{
|
|
|
|
"Title",
|
|
|
|
}
|
|
|
|
if state == gitea.StateAll {
|
|
|
|
headers = append(headers, "State")
|
|
|
|
}
|
|
|
|
headers = append(headers,
|
|
|
|
"Open/Closed Issues",
|
|
|
|
"DueDate",
|
|
|
|
)
|
|
|
|
|
2020-12-09 22:04:36 +00:00
|
|
|
t := table{headers: headers}
|
2020-12-08 10:28:54 +00:00
|
|
|
|
|
|
|
for _, m := range miles {
|
|
|
|
var deadline = ""
|
|
|
|
|
|
|
|
if m.Deadline != nil && !m.Deadline.IsZero() {
|
2022-03-28 22:37:13 +00:00
|
|
|
deadline = FormatTime(*m.Deadline, isMachineReadable(output))
|
2020-12-08 10:28:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
item := []string{
|
|
|
|
m.Title,
|
|
|
|
}
|
|
|
|
if state == gitea.StateAll {
|
|
|
|
item = append(item, string(m.State))
|
|
|
|
}
|
|
|
|
item = append(item,
|
|
|
|
fmt.Sprintf("%d/%d", m.OpenIssues, m.ClosedIssues),
|
|
|
|
deadline,
|
|
|
|
)
|
2020-12-09 22:04:36 +00:00
|
|
|
t.addRowSlice(item)
|
2020-12-08 10:28:54 +00:00
|
|
|
}
|
2020-12-09 22:04:36 +00:00
|
|
|
|
|
|
|
t.sort(0, true)
|
|
|
|
t.print(output)
|
2020-12-08 10:28:54 +00:00
|
|
|
}
|