Merge pull request #29 from steveoh/affected-systems
add affected systems to incident cards
This commit is contained in:
commit
9c6851ccbb
8253
package-lock.json
generated
Normal file
8253
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
@ -6,7 +6,7 @@
|
||||
{{ partial "systems" (dict "content" . "incidents" $active) }}
|
||||
|
||||
{{ with $active }}
|
||||
<div class="section-title">Active Incidents</div>
|
||||
<div class="section-title mute">Active Incidents</div>
|
||||
{{ range $active }}
|
||||
{{ partial "incident" . }}
|
||||
{{ end }}
|
||||
|
@ -1,9 +1,9 @@
|
||||
<div class="footer">
|
||||
<p>
|
||||
<a href="https://www.netlify.com/statuskit">
|
||||
<a class="mute" href="https://www.netlify.com/statuskit">
|
||||
StatusKit by Netlify
|
||||
</a> •
|
||||
<a href="https://github.com/netlify/netlify-statuskit">
|
||||
<a class="mute" href="https://github.com/netlify/netlify-statuskit">
|
||||
View on GitHub
|
||||
</a>
|
||||
</p>
|
||||
|
@ -9,7 +9,7 @@
|
||||
{{ $active := where $incidents "Params.resolved" "!=" true }}
|
||||
{{ $major := where $active "Params.severity" "major-outage" }}
|
||||
|
||||
<html>
|
||||
<html lang="{{.Site.LanguageCode}}">
|
||||
<head>
|
||||
<title>{{ $title }}</title>
|
||||
<link rel="stylesheet" href="/css/main.css"/>
|
||||
@ -24,8 +24,10 @@
|
||||
<body>
|
||||
<div class="gangsta-wrap">
|
||||
<div class="header">
|
||||
<img src="{{ $logo }}" class="logo"/>
|
||||
<span class="title"><a href="/">{{ $title }}</a></span>
|
||||
<div>
|
||||
<img src="{{ $logo }}" alt="logo" class="logo"/>
|
||||
<span class="title"><a href="/">{{ $title }}</a></span>
|
||||
</div>
|
||||
<div class="right-links">
|
||||
{{ with $resources }}
|
||||
<a href="{{ . }}" class="button resources-link">Resources</a>
|
||||
|
@ -1,15 +1,21 @@
|
||||
{{- $severity := .Params.severity | default "under-maintenance" -}}
|
||||
{{- $alert := index .Site.Data.severity.alerts $severity -}}
|
||||
<div class="incident card">
|
||||
<div class="incident-header">
|
||||
<p class="incident-title">{{ .Title }}</p>
|
||||
<p class="incident-date">{{ dateFormat "02 Jan 2006 15:04 MST" .Date }}</p>
|
||||
<div class="flex-out">
|
||||
<h1 class="incident-title">{{ .Title }}</h1>
|
||||
<p class="small mute">{{- dateFormat "02 Jan 2006 15:04 MST" .Date -}}</p>
|
||||
</div>
|
||||
<div class="incident-description">
|
||||
{{- .Content -}}
|
||||
</div>
|
||||
{{- $severity := .Params.severity | default "under-maintenance" -}}
|
||||
{{- $alert := index .Site.Data.severity.alerts $severity -}}
|
||||
|
||||
<p class="incident-status color-{{ $alert }}">
|
||||
{{ index .Site.Data.severity.descriptions $severity }}
|
||||
</p>
|
||||
<div class="incident-status flex-out">
|
||||
<p class="color-{{ $alert }}">
|
||||
{{- index .Site.Data.severity.descriptions $severity -}}
|
||||
</p>
|
||||
<p class="small">Affected Systems:
|
||||
<span class="color-{{ $alert }}">
|
||||
{{- delimit .Params.affectedsystems ", " -}}
|
||||
</span>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -1,5 +1,5 @@
|
||||
<div class="system-status-badge color-{{ .alert }}">
|
||||
<!-- Depends on status -->
|
||||
<img src="/images/icon-{{ .alert }}.svg" />
|
||||
<img src="/images/icon-{{ .alert }}.svg" alt="{{ .alert }}"/>
|
||||
{{ .description }}
|
||||
</div>
|
||||
|
@ -7,8 +7,7 @@
|
||||
{{ $name := . }}
|
||||
<div class="system-operational">
|
||||
<div class="card">
|
||||
{{ $name }}
|
||||
|
||||
{{- $name -}}
|
||||
{{ if $.incidents }}
|
||||
{{ range $.incidents }}
|
||||
{{ if in .Params.affectedsystems $name }}
|
||||
|
@ -2,11 +2,11 @@
|
||||
|
||||
<div class="incidents">
|
||||
{{ range (.Paginate .Data.Pages.ByPublishDate 15 ).Pages }}
|
||||
<div class="incident-summary">
|
||||
<div class="incident-summary flex-out">
|
||||
<a href="{{ .Permalink }}" class="article article-title">
|
||||
{{ .Title }}
|
||||
</a>
|
||||
<span class="article-date">
|
||||
<span class="article-date mute">
|
||||
{{ dateFormat "02 Jan 2006 15:04 MST" .Date }}
|
||||
</span>
|
||||
</div>
|
||||
|
@ -1 +1 @@
|
||||
<span class="incident-date">{{ dateFormat "02 Jan 2006 15:04 MST" (.Get 0) }}</span>
|
||||
<p class="small mute separate">{{ dateFormat "02 Jan 2006 15:04 MST" (.Get 0) }}</p>
|
||||
|
@ -28,6 +28,9 @@ a:active {
|
||||
margin-bottom: 40px;
|
||||
padding: 16px 0 24px 0;
|
||||
border-bottom: 2px solid #F7F7F8;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.logo {
|
||||
@ -52,18 +55,14 @@ a:active {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.right-links {
|
||||
float: right;
|
||||
}
|
||||
|
||||
@media (max-width: 450px) {
|
||||
.right-links {
|
||||
float: left;
|
||||
margin-top: 24px;
|
||||
}
|
||||
|
||||
.header {
|
||||
padding-bottom: 68px;
|
||||
flex-direction: column;
|
||||
}
|
||||
}
|
||||
|
||||
@ -109,8 +108,8 @@ a:active {
|
||||
padding: 16px;
|
||||
border-radius: 10px;
|
||||
background: #fff;
|
||||
box-shadow: 0px 4px 8px 0px rgba(0,0,0,.05);
|
||||
border: 1px solid #fbfbfb;
|
||||
box-shadow: 0px 4px 8px 0px rgba(0,0,0,.1);
|
||||
border: 1px solid #eaeaea;
|
||||
|
||||
font-size: 16px;
|
||||
font-weight: 500;
|
||||
@ -138,25 +137,27 @@ a:active {
|
||||
height: 16px;
|
||||
}
|
||||
|
||||
.incident h1 {
|
||||
font-size: 1.5em;
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.incident {
|
||||
color: #202020;
|
||||
}
|
||||
|
||||
.incident-title {
|
||||
float: left;
|
||||
text-transform: capitalize;
|
||||
width: 75%;
|
||||
}
|
||||
|
||||
.incident-date {
|
||||
float: right;
|
||||
font-size: 14px;
|
||||
opacity: 0.3;
|
||||
}
|
||||
|
||||
@media (max-width: 450px) {
|
||||
@media (max-width: 725px) {
|
||||
.incident-date {
|
||||
width: 100%;
|
||||
}
|
||||
.incident-title {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.incident-description {
|
||||
@ -164,10 +165,22 @@ a:active {
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
.separate {
|
||||
text-align: right;
|
||||
padding-bottom: 1em;
|
||||
border-bottom: 2px solid #F7F7F8;
|
||||
}
|
||||
|
||||
.incident-status {
|
||||
margin: 24px 0 0 0;
|
||||
}
|
||||
|
||||
.flex-out {
|
||||
display: flex;
|
||||
flex-direciton: row;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.system-check-ok {
|
||||
margin: 80px auto 104px auto;
|
||||
width: 100%;
|
||||
@ -190,7 +203,6 @@ a:active {
|
||||
font-size: 16px;
|
||||
font-weight: 500;
|
||||
border-bottom: 2px solid #F7F7F8;
|
||||
color: #bbb;
|
||||
}
|
||||
|
||||
.see-more {
|
||||
@ -218,6 +230,14 @@ a:active {
|
||||
color: #BD1F1A;
|
||||
}
|
||||
|
||||
.mute {
|
||||
opacity: 0.7;
|
||||
}
|
||||
|
||||
.small {
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.incident-summary {
|
||||
margin-bottom: 24px;
|
||||
overflow: hidden;
|
||||
@ -225,16 +245,13 @@ a:active {
|
||||
|
||||
.article-title {
|
||||
width: 70%;
|
||||
float: left;
|
||||
text-transform: capitalize;
|
||||
}
|
||||
|
||||
.article-date {
|
||||
width: 29%;
|
||||
float: right;
|
||||
text-align: right;
|
||||
font-size: 14px;
|
||||
opacity: 0.3;
|
||||
}
|
||||
|
||||
.pagination,
|
||||
@ -283,7 +300,6 @@ a:active {
|
||||
|
||||
.footer a {
|
||||
color: #202020;
|
||||
opacity: 0.3;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user