frontend: apply go fmt

This commit is contained in:
Arnie97 2020-07-28 13:37:22 +08:00 committed by Lan Tian
parent f661e878c4
commit 20b1233ec8
No known key found for this signature in database
GPG Key ID: 27F31700E751EC22
2 changed files with 29 additions and 28 deletions

View File

@ -26,8 +26,8 @@ func renderTemplate(w http.ResponseWriter, r *http.Request, title string, conten
var args tmplArguments var args tmplArguments
args.Options = map[string]string{ args.Options = map[string]string{
"summary": "show protocol", "summary": "show protocols",
"detail": "show protocol all", "detail": "show protocols all",
"route": "show route for ...", "route": "show route for ...",
"route_all": "show route for ... all", "route_all": "show route for ... all",
"route_bgpmap": "show route for ... (bgpmap)", "route_bgpmap": "show route for ... (bgpmap)",
@ -96,16 +96,16 @@ func summaryTable(isIPv6 bool, data string, serverName string) string {
result = "<pre>" + strings.TrimSpace(data) + "</pre>" result = "<pre>" + strings.TrimSpace(data) + "</pre>"
} else { } else {
// Draw the table head // Draw the table head
result += "<table class=\"table table-striped table-bordered table-sm\">" result += `<table class="table table-striped table-bordered table-sm">`
result += "<thead>" result += `<thead>`
for _, col := range strings.Split(stringsSplitted[0], " ") { for _, col := range strings.Split(stringsSplitted[0], " ") {
colTrimmed := strings.TrimSpace(col) colTrimmed := strings.TrimSpace(col)
if len(colTrimmed) == 0 { if len(colTrimmed) == 0 {
continue continue
} }
result += "<th scope=\"col\">" + colTrimmed + "</th>" result += `<th scope="col">` + colTrimmed + `</th>`
} }
result += "</thead><tbody>" result += `</thead><tbody>`
stringsWithoutTitle := stringsSplitted[1:] stringsWithoutTitle := stringsSplitted[1:]
sort.Strings(stringsWithoutTitle) sort.Strings(stringsWithoutTitle)
@ -129,17 +129,17 @@ func summaryTable(isIPv6 bool, data string, serverName string) string {
} }
// Draw the row in red if the link isn't up // Draw the row in red if the link isn't up
result += "<tr class=\"" + (map[string]string{ result += `<tr class="` + (map[string]string{
"up": "table-success", "up": "table-success",
"down": "table-secondary", "down": "table-secondary",
"start": "table-danger", "start": "table-danger",
"passive": "table-info", "passive": "table-info",
})[row[3]] + "\">" })[row[3]] + `">`
// Add link to detail for first column // Add link to detail for first column
if isIPv6 { if isIPv6 {
result += "<td><a href=\"/ipv6/detail/" + serverName + "/" + row[0] + "\">" + row[0] + "</a></td>" result += `<td><a href="/ipv6/detail/` + serverName + `/` + row[0] + `">` + row[0] + `</a></td>`
} else { } else {
result += "<td><a href=\"/ipv4/detail/" + serverName + "/" + row[0] + "\">" + row[0] + "</a></td>" result += `<td><a href="/ipv4/detail/` + serverName + `/` + row[0] + `">` + row[0] + `</a></td>`
} }
// Draw the other cells // Draw the other cells
for i := 1; i < 6; i++ { for i := 1; i < 6; i++ {

View File

@ -12,6 +12,7 @@ type tmplArguments struct {
// Parameters related to current request // Parameters related to current request
AllServersLinkActive bool AllServersLinkActive bool
AllServersURL string AllServersURL string
// Whois specific handling (for its unique URL) // Whois specific handling (for its unique URL)
IsWhois bool IsWhois bool
WhoisTarget string WhoisTarget string
@ -86,7 +87,7 @@ var tmpl = template.Must(template.New("tmpl").Parse(`
</nav> </nav>
<div class="container"> <div class="container">
{{ .Content }} {{ .Content }}
</div> </div>
</body> </body>
</html> </html>