forked from liqotech/liqo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinfo.go
136 lines (121 loc) · 3.35 KB
/
info.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
// Copyright 2019-2023 The Liqo Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package output
import (
"strings"
"github.com/pterm/pterm"
)
// Section is a section of the output.
type Section interface {
AddSection(title string) Section
AddSectionWithDetail(title, detail string) Section
AddEntry(key string, values ...string) Section
SprintForBox(printer *Printer) string
}
// entry is a entry of the output.
type entry struct {
key string
values []string
}
// section is a section of the output.
type section struct {
title, detail string
sections []*section
entries []*entry
}
// NewRootSection create a new Section.
func NewRootSection() Section {
return §ion{}
}
// AddSection add a new Section.
func (s *section) AddSection(title string) Section {
return s.AddSectionWithDetail(title, "")
}
// AddSectionWithDetail add a new Section.
func (s *section) AddSectionWithDetail(title, detail string) Section {
section := §ion{title: title, detail: detail}
s.sections = append(s.sections, section)
return section
}
// AddEntry add a new entry.
func (s *section) AddEntry(key string, values ...string) Section {
s.entries = append(s.entries, &entry{key: key, values: values})
return s
}
// SprintForBox print the section for box.
func (s *section) SprintForBox(printer *Printer) string {
s.print(-1, printer)
return printer.BulletListSprintForBox()
}
// String return the string representation of the section.
func (s *section) String() string {
if s.detail != "" {
return pterm.Sprintf(
"%s - %s",
StatusSectionStyle.Sprint(s.title),
StatusInfoStyle.Sprint(s.detail),
)
}
return StatusSectionStyle.Sprint(s.title)
}
// print print the section.
func (s *section) print(level int, printer *Printer) {
if level >= 0 {
printer.BulletListAddItemWithoutBullet(s.String(), level)
}
for _, entry := range s.entries {
entry.print(level+1, printer, longestEntryKey(s.entries))
}
for _, section := range s.sections {
section.print(level+1, printer)
}
}
// longestEntryKey return the longest key length of the entries.
func longestEntryKey(entries []*entry) int {
longest := 0
for _, entry := range entries {
if len(entry.key) > longest {
longest = len(entry.key)
}
}
return longest
}
// print print the entry.
func (e *entry) print(level int, printer *Printer, longestKey int) {
switch len(e.values) {
case 0:
printer.BulletListAddItemWithoutBullet(pterm.Sprintf("%s", e.key),
level,
)
case 1:
printer.BulletListAddItemWithoutBullet(pterm.Sprintf("%s: %s%s",
e.key,
strings.Repeat(" ", longestKey-len(e.key)),
StatusDataStyle.Sprint(e.values[0]),
),
level,
)
default:
printer.BulletListAddItemWithoutBullet(
pterm.Sprintf("%s:", pterm.Sprint(e.key)),
level,
)
for _, v := range e.values {
printer.BulletListAddItemWithBullet(
StatusDataStyle.Sprint(v),
level,
)
}
}
}