Compare commits
No commits in common. "aa9376ac134711b9326611d0e90db647e028f10d" and "db21b01589562d7250386980b18195adf3ab6209" have entirely different histories.
aa9376ac13
...
db21b01589
21
main.go
21
main.go
@ -26,7 +26,7 @@ import (
|
||||
"time"
|
||||
)
|
||||
|
||||
const VERSION = "v14"
|
||||
const VERSION = "v13"
|
||||
|
||||
var (
|
||||
logger *slog.Logger
|
||||
@ -443,25 +443,8 @@ func pageProblems(w http.ResponseWriter, _ *http.Request, _ *session.T) { // {{{
|
||||
return
|
||||
}
|
||||
|
||||
var found bool
|
||||
problemsGrouped := make(map[string]map[string][]Problem)
|
||||
for _, problem := range problems {
|
||||
if _, found = problemsGrouped[problem.AreaName]; !found {
|
||||
problemsGrouped[problem.AreaName] = make(map[string][]Problem)
|
||||
}
|
||||
if _, found = problemsGrouped[problem.AreaName][problem.SectionName]; !found {
|
||||
problemsGrouped[problem.AreaName][problem.SectionName] = []Problem{}
|
||||
}
|
||||
|
||||
problemsGrouped[problem.AreaName][problem.SectionName] = append(
|
||||
problemsGrouped[problem.AreaName][problem.SectionName],
|
||||
problem,
|
||||
)
|
||||
}
|
||||
|
||||
page.Data = map[string]any{
|
||||
"Problems": problems,
|
||||
"ProblemsGrouped": problemsGrouped,
|
||||
"Problems": problems,
|
||||
}
|
||||
page.Render(w)
|
||||
return
|
||||
|
@ -35,12 +35,12 @@ h2:first-child {
|
||||
h1 {
|
||||
font-size: 1.5em;
|
||||
color: #fb4934;
|
||||
font-weight: 800;
|
||||
font-weight: 500;
|
||||
}
|
||||
h2 {
|
||||
font-size: 1.25em;
|
||||
color: #b8bb26;
|
||||
font-weight: 800;
|
||||
font-weight: 500;
|
||||
}
|
||||
a {
|
||||
color: #3f9da1;
|
||||
@ -50,7 +50,7 @@ a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
b {
|
||||
font-weight: 800;
|
||||
font-weight: 500;
|
||||
}
|
||||
input[type="text"],
|
||||
textarea,
|
||||
@ -80,7 +80,7 @@ button:focus {
|
||||
}
|
||||
span.date {
|
||||
color: #d5c4a1;
|
||||
font-weight: 800;
|
||||
font-weight: 500;
|
||||
}
|
||||
span.time {
|
||||
font-size: 0.9em;
|
||||
@ -119,7 +119,7 @@ label {
|
||||
border-bottom: unset;
|
||||
}
|
||||
#datapoints .header {
|
||||
font-weight: 800;
|
||||
font-weight: 500;
|
||||
font-size: 0.85em;
|
||||
color: #d5c4a1;
|
||||
}
|
||||
|
@ -35,12 +35,12 @@ h2:first-child {
|
||||
h1 {
|
||||
font-size: 1.5em;
|
||||
color: #fb4934;
|
||||
font-weight: 800;
|
||||
font-weight: 500;
|
||||
}
|
||||
h2 {
|
||||
font-size: 1.25em;
|
||||
color: #b8bb26;
|
||||
font-weight: 800;
|
||||
font-weight: 500;
|
||||
}
|
||||
a {
|
||||
color: #3f9da1;
|
||||
@ -50,7 +50,7 @@ a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
b {
|
||||
font-weight: 800;
|
||||
font-weight: 500;
|
||||
}
|
||||
input[type="text"],
|
||||
textarea,
|
||||
@ -80,7 +80,7 @@ button:focus {
|
||||
}
|
||||
span.date {
|
||||
color: #d5c4a1;
|
||||
font-weight: 800;
|
||||
font-weight: 500;
|
||||
}
|
||||
span.time {
|
||||
font-size: 0.9em;
|
||||
|
@ -35,12 +35,12 @@ h2:first-child {
|
||||
h1 {
|
||||
font-size: 1.5em;
|
||||
color: #fb4934;
|
||||
font-weight: 800;
|
||||
font-weight: 500;
|
||||
}
|
||||
h2 {
|
||||
font-size: 1.25em;
|
||||
color: #b8bb26;
|
||||
font-weight: 800;
|
||||
font-weight: 500;
|
||||
}
|
||||
a {
|
||||
color: #3f9da1;
|
||||
@ -50,7 +50,7 @@ a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
b {
|
||||
font-weight: 800;
|
||||
font-weight: 500;
|
||||
}
|
||||
input[type="text"],
|
||||
textarea,
|
||||
@ -80,7 +80,7 @@ button:focus {
|
||||
}
|
||||
span.date {
|
||||
color: #d5c4a1;
|
||||
font-weight: 800;
|
||||
font-weight: 500;
|
||||
}
|
||||
span.time {
|
||||
font-size: 0.9em;
|
||||
@ -152,7 +152,7 @@ label {
|
||||
margin-bottom: 32px;
|
||||
}
|
||||
#page .page-label div {
|
||||
font-weight: 800;
|
||||
font-weight: 500;
|
||||
font-size: 1.5em;
|
||||
color: #fb4934;
|
||||
}
|
||||
@ -172,7 +172,7 @@ label {
|
||||
#areas .area > .name {
|
||||
background: #fb4934;
|
||||
color: #fff;
|
||||
font-weight: 800;
|
||||
font-weight: 500;
|
||||
padding: 4px 16px;
|
||||
border-top-left-radius: 4px;
|
||||
border-top-right-radius: 4px;
|
||||
@ -196,10 +196,10 @@ label {
|
||||
white-space: nowrap;
|
||||
}
|
||||
#areas .area .section .create .new {
|
||||
font-weight: 800;
|
||||
font-weight: 500;
|
||||
}
|
||||
#areas .area .section > .name {
|
||||
font-weight: 800;
|
||||
font-weight: 500;
|
||||
}
|
||||
#areas .area .section .triggers .trigger {
|
||||
display: grid;
|
||||
|
@ -35,12 +35,12 @@ h2:first-child {
|
||||
h1 {
|
||||
font-size: 1.5em;
|
||||
color: #fb4934;
|
||||
font-weight: 800;
|
||||
font-weight: 500;
|
||||
}
|
||||
h2 {
|
||||
font-size: 1.25em;
|
||||
color: #b8bb26;
|
||||
font-weight: 800;
|
||||
font-weight: 500;
|
||||
}
|
||||
a {
|
||||
color: #3f9da1;
|
||||
@ -50,7 +50,7 @@ a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
b {
|
||||
font-weight: 800;
|
||||
font-weight: 500;
|
||||
}
|
||||
input[type="text"],
|
||||
textarea,
|
||||
@ -80,7 +80,7 @@ button:focus {
|
||||
}
|
||||
span.date {
|
||||
color: #d5c4a1;
|
||||
font-weight: 800;
|
||||
font-weight: 500;
|
||||
}
|
||||
span.time {
|
||||
font-size: 0.9em;
|
||||
@ -116,12 +116,12 @@ label {
|
||||
}
|
||||
#problems-list .header,
|
||||
#acknowledged-list .header {
|
||||
font-weight: 800;
|
||||
font-weight: 500;
|
||||
}
|
||||
#problems-list .trigger,
|
||||
#acknowledged-list .trigger {
|
||||
color: #fb4934;
|
||||
font-weight: 800;
|
||||
font-weight: 500;
|
||||
}
|
||||
#problems-list .acknowledge img,
|
||||
#acknowledged-list .acknowledge img {
|
||||
@ -130,26 +130,3 @@ label {
|
||||
#acknowledged-list.hidden {
|
||||
display: none;
|
||||
}
|
||||
#areas {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 12px;
|
||||
margin-top: 16px;
|
||||
}
|
||||
#areas .area .section {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, min-content);
|
||||
grid-gap: 8px 12px;
|
||||
}
|
||||
#areas .area .section .name {
|
||||
color: #f7edd7;
|
||||
grid-column: 1 / -1;
|
||||
font-weight: bold !important;
|
||||
line-height: 24px;
|
||||
}
|
||||
#areas .area .section div {
|
||||
white-space: nowrap;
|
||||
}
|
||||
.hidden {
|
||||
display: none;
|
||||
}
|
||||
|
@ -35,12 +35,12 @@ h2:first-child {
|
||||
h1 {
|
||||
font-size: 1.5em;
|
||||
color: #fb4934;
|
||||
font-weight: 800;
|
||||
font-weight: 500;
|
||||
}
|
||||
h2 {
|
||||
font-size: 1.25em;
|
||||
color: #b8bb26;
|
||||
font-weight: 800;
|
||||
font-weight: 500;
|
||||
}
|
||||
a {
|
||||
color: #3f9da1;
|
||||
@ -50,7 +50,7 @@ a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
b {
|
||||
font-weight: 800;
|
||||
font-weight: 500;
|
||||
}
|
||||
input[type="text"],
|
||||
textarea,
|
||||
@ -80,7 +80,7 @@ button:focus {
|
||||
}
|
||||
span.date {
|
||||
color: #d5c4a1;
|
||||
font-weight: 800;
|
||||
font-weight: 500;
|
||||
}
|
||||
span.time {
|
||||
font-size: 0.9em;
|
||||
|
@ -35,12 +35,12 @@ h2:first-child {
|
||||
h1 {
|
||||
font-size: 1.5em;
|
||||
color: #fb4934;
|
||||
font-weight: 800;
|
||||
font-weight: 500;
|
||||
}
|
||||
h2 {
|
||||
font-size: 1.25em;
|
||||
color: #b8bb26;
|
||||
font-weight: 800;
|
||||
font-weight: 500;
|
||||
}
|
||||
a {
|
||||
color: #3f9da1;
|
||||
@ -50,7 +50,7 @@ a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
b {
|
||||
font-weight: 800;
|
||||
font-weight: 500;
|
||||
}
|
||||
input[type="text"],
|
||||
textarea,
|
||||
@ -80,7 +80,7 @@ button:focus {
|
||||
}
|
||||
span.date {
|
||||
color: #d5c4a1;
|
||||
font-weight: 800;
|
||||
font-weight: 500;
|
||||
}
|
||||
span.time {
|
||||
font-size: 0.9em;
|
||||
|
@ -20,13 +20,4 @@ export class UI {
|
||||
localStorage.setItem('show_acknowledged', false)
|
||||
}
|
||||
}
|
||||
|
||||
displayList() {
|
||||
document.querySelector('.display-list').classList.remove('hidden')
|
||||
document.querySelector('.display-areas').classList.add('hidden')
|
||||
}
|
||||
displayAreas() {
|
||||
document.querySelector('.display-list').classList.add('hidden')
|
||||
document.querySelector('.display-areas').classList.remove('hidden')
|
||||
}
|
||||
}
|
||||
|
@ -83,7 +83,7 @@
|
||||
&>.name {
|
||||
background: @color1;
|
||||
color: #fff;
|
||||
font-weight: @bold;
|
||||
font-weight: 500;
|
||||
padding: 4px 16px;
|
||||
border-top-left-radius: 4px;
|
||||
border-top-right-radius: 4px;
|
||||
|
@ -30,33 +30,3 @@
|
||||
#acknowledged-list.hidden{
|
||||
display: none;
|
||||
}
|
||||
|
||||
#areas {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 12px;
|
||||
margin-top: 16px;
|
||||
|
||||
.area {
|
||||
.section {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, min-content);
|
||||
grid-gap: 8px 12px;
|
||||
|
||||
.name {
|
||||
color: @text2;
|
||||
grid-column: 1 / -1;
|
||||
font-weight: bold !important;
|
||||
line-height: 24px;
|
||||
}
|
||||
|
||||
div {
|
||||
white-space: nowrap;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.hidden {
|
||||
display: none;
|
||||
}
|
||||
|
@ -12,7 +12,7 @@
|
||||
@color4: #3f9da1;
|
||||
@color5: #fe8019;
|
||||
|
||||
@bold: 800;
|
||||
@bold: 500;
|
||||
|
||||
.lighterOrDarker(@color, @amount) {
|
||||
@result: lighten(@color, @amount);
|
||||
|
@ -10,7 +10,7 @@
|
||||
<h2>{{ .VERSION }}</h2>
|
||||
|
||||
<div class="graph">
|
||||
<img src="/images/{{ .VERSION }}/graph.svg">
|
||||
<img src="/images/{{ .VERSION }}/graph.svg">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
@ -9,88 +9,68 @@
|
||||
|
||||
{{ block "page_label" . }}{{end}}
|
||||
|
||||
<div>
|
||||
<input type="radio" name="display" id="display-table" onclick="_ui.displayAreas()" checked> <label for="display-table">Areas</label>
|
||||
<input type="radio" name="display" id="display-list" onclick="_ui.displayList()"> <label for="display-list">List</label>
|
||||
</div>
|
||||
<input type="checkbox" id="show-acked" onclick="_ui.toggleAcknowledged(event)"> <label for="show-acked">Show acknowledged</label>
|
||||
|
||||
<div class="display-list hidden">
|
||||
<div id="problems-list">
|
||||
<div style="grid-column: 1/-1; margin-top: 32px;"><h2>Current</h2></div>
|
||||
<div id="problems-list">
|
||||
<div style="grid-column: 1/-1; margin-top: 32px;"><h2>Current</h2></div>
|
||||
|
||||
<div class="header">Trigger</div>
|
||||
<div class="header">Area</div>
|
||||
<div class="header">Section</div>
|
||||
<div class="header">Since</div>
|
||||
{{ range .Data.Problems }}
|
||||
{{ if .Acknowledged }}
|
||||
{{ continue }}
|
||||
{{ end }}
|
||||
<div class="line"></div>
|
||||
|
||||
{{ if eq .TriggerID -1 }}
|
||||
<div class="trigger">{{ .TriggerName }}</div>
|
||||
<div class="area">{{ .AreaName }}</div>
|
||||
<div class="section">{{ .SectionName }}</div>
|
||||
<div class="start"></div>
|
||||
<div class="acknowledge"><img src="/images/{{ $version }}/acknowledge.svg"></div>
|
||||
{{ else }}
|
||||
<div class="trigger"><a href="/trigger/edit/{{ .TriggerID }}">{{ .TriggerName }}</a></div>
|
||||
<div class="area">{{ .AreaName }}</div>
|
||||
<div class="section">{{ .SectionName }}</div>
|
||||
<div class="start">{{ format_time .Start }}</div>
|
||||
<div class="acknowledge"><a href="/problem/acknowledge/{{ .ID }}"><img src="/images/{{ $version }}/acknowledge-filled.svg"></a></div>
|
||||
{{ end }}
|
||||
<div class="header">Trigger</div>
|
||||
<div class="header">Area</div>
|
||||
<div class="header">Section</div>
|
||||
<div class="header">Since</div>
|
||||
{{ range .Data.Problems }}
|
||||
{{ if .Acknowledged }}
|
||||
{{ continue }}
|
||||
{{ end }}
|
||||
</div>
|
||||
<div class="line"></div>
|
||||
|
||||
<input type="checkbox" id="show-acked" onclick="_ui.toggleAcknowledged(event)"> <label for="show-acked">Show acknowledged</label>
|
||||
|
||||
<div id="acknowledged-list" class="hidden">
|
||||
<div style="grid-column: 1/-1; margin-top: 32px;"><h2>Acknowledged</h2></div>
|
||||
<div class="header">Trigger</div>
|
||||
<div class="header">Area</div>
|
||||
<div class="header">Section</div>
|
||||
<div class="header">Since</div>
|
||||
|
||||
{{ range .Data.Problems }}
|
||||
{{ if not .Acknowledged }}
|
||||
{{ continue }}
|
||||
{{ end }}
|
||||
<div class="line"></div>
|
||||
{{ if eq .TriggerID -1 }}
|
||||
<div class="trigger">{{ .TriggerName }}</div>
|
||||
<div class="area">{{ .AreaName }}</div>
|
||||
<div class="section">{{ .SectionName }}</div>
|
||||
<div class="start"></div>
|
||||
<div class="acknowledge"><img src="/images/{{ $version }}/acknowledge.svg"></div>
|
||||
{{ else }}
|
||||
<div class="trigger"><a href="/trigger/edit/{{ .TriggerID }}">{{ .TriggerName }}</a></div>
|
||||
<div class="area">{{ .AreaName }}</div>
|
||||
<div class="section">{{ .SectionName }}</div>
|
||||
<div class="start">{{ format_time .Start }}</div>
|
||||
<div class="acknowledge"><a href="/problem/unacknowledge/{{ .ID }}"><img src="/images/{{ $version }}/acknowledge-outline.svg"></a></div>
|
||||
<div class="acknowledge"><a href="/problem/acknowledge/{{ .ID }}"><img src="/images/{{ $version }}/acknowledge-filled.svg"></a></div>
|
||||
{{ end }}
|
||||
</div>
|
||||
{{ end }}
|
||||
</div>
|
||||
|
||||
<div class="display-areas">
|
||||
<div id="areas">
|
||||
{{ range $areaName, $sections := .Data.ProblemsGrouped }}
|
||||
<div class="area">
|
||||
<div class="name">{{ $areaName }}</div>
|
||||
<div id="acknowledged-list" class="hidden">
|
||||
<div style="grid-column: 1/-1; margin-top: 32px;"><h2>Acknowledged</h2></div>
|
||||
<div class="header">Trigger</div>
|
||||
<div class="header">Area</div>
|
||||
<div class="header">Section</div>
|
||||
<div class="header">Since</div>
|
||||
|
||||
{{ range $sectionName, $problems := $sections }}
|
||||
<div class="section problems">
|
||||
<div class="name">{{ $sectionName }}</div>
|
||||
{{ range .Data.Problems }}
|
||||
{{ if not .Acknowledged }}
|
||||
{{ continue }}
|
||||
{{ end }}
|
||||
<div class="line"></div>
|
||||
<div class="trigger"><a href="/trigger/edit/{{ .TriggerID }}">{{ .TriggerName }}</a></div>
|
||||
<div class="area">{{ .AreaName }}</div>
|
||||
<div class="section">{{ .SectionName }}</div>
|
||||
<div class="start">{{ format_time .Start }}</div>
|
||||
<div class="acknowledge"><a href="/problem/unacknowledge/{{ .ID }}"><img src="/images/{{ $version }}/acknowledge-outline.svg"></a></div>
|
||||
{{ end }}
|
||||
</div>
|
||||
|
||||
{{ range $problems }}
|
||||
<div class="trigger">{{ .TriggerName }}</div>
|
||||
|
||||
{{ if eq (.Start | html) "0001-01-01 00:00:00 +0000 UTC" }}
|
||||
<div class="since"></div>
|
||||
{{ else }}
|
||||
<div class="since">{{ format_time .Start }}</div>
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
</div>
|
||||
{{ end }}
|
||||
<div id="areas">
|
||||
{{ range .Data.Areas }}
|
||||
<div class="area">
|
||||
<div class="name">{{ .Name }}</div>
|
||||
{{ range .SortedSections }}
|
||||
<div class="section">
|
||||
<div class="name">{{ .Name }}</div>
|
||||
</div>
|
||||
{{ end }}
|
||||
</div>
|
||||
{{ end }}
|
||||
</div>
|
||||
|
||||
{{ end }}
|
||||
|
Loading…
Reference in New Issue
Block a user