-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto publishing site from packit/status@c44144c
- Loading branch information
0 parents
commit 754b773
Showing
259 changed files
with
95,207 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
status.packit.dev |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
<!doctype html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>cState Admin</title> | ||
</head> | ||
<body> | ||
<!-- | ||
To easily manage your status on Netlify, | ||
much like on WordPress, you need to keep | ||
this directory. Platforms which do not | ||
support Netlify CMS do not need this | ||
/admin/ directory. | ||
--> | ||
|
||
<script>console.log('You are using cState. The version can be looked at from the console on the homepage or incidents view. https://github.com/cstate')</script> | ||
<script src="https://identity.netlify.com/v1/netlify-identity-widget.js"></script> | ||
<script src="https://unpkg.com/netlify-cms@^2.0.0/dist/netlify-cms.js"></script> | ||
<script> | ||
var IssuePreview = createClass({ | ||
render: function() { | ||
var entry = this.props.entry; | ||
|
||
var layoutPostDate = entry.getIn(['data', 'date']); | ||
var layoutPostDateEnd = entry.getIn(['data', 'resolvedWhen']); | ||
|
||
var resultOfStateProps = {"class": "warning"}; | ||
var resultOfState = 'This incident has not yet been resolved.'; | ||
|
||
if (entry.getIn(['data', 'resolved']) === true) { | ||
var resultOfStateProps = {"class": "green"}; | ||
var resultOfState = 'This incident has been resolved.'; | ||
} | ||
|
||
if (entry.getIn(['data', 'informational']) === true) { | ||
var resultOfStateProps = {"class": "green"}; | ||
var resultOfState = ''; | ||
} | ||
|
||
|
||
return h('div', {}, | ||
h('h1', {}, entry.getIn(['data', 'title'])), | ||
h('p', {}, | ||
h('strong', resultOfStateProps, resultOfState) | ||
), | ||
h('div', {"className": "text"}, this.props.widgetFor('body')) | ||
); | ||
} | ||
}); | ||
CMS.registerPreviewTemplate("issues", IssuePreview, { raw: true }); | ||
|
||
const previewStyles = ` | ||
html, | ||
body { | ||
padding: 16px; | ||
color: #444; | ||
background: #fff; | ||
font: 100%/1.5 BlinkMacSystemFont, -apple-system, "San Francisco Text", "Roboto", "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; | ||
} | ||
h1 { | ||
line-height: 1; | ||
margin: 0; | ||
color: #000; | ||
font-weight: normal; | ||
font-size: 40px; | ||
font-family: "Segoe UI", BlinkMacSystemFont, -apple-system, "San Francisco Text", "Roboto", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; | ||
} | ||
small { | ||
margin-top: 12px; | ||
color: #666; | ||
font-variant: small-caps; | ||
display: block; | ||
} | ||
.text { | ||
padding-top: 12px; | ||
border-top: 1px solid #ccc; | ||
} | ||
.green { color: #228B22; } | ||
.red { color: #DC143C; } | ||
.warning { color: #EE7600; } | ||
`; | ||
CMS.registerPreviewStyle(previewStyles, { raw: true }); | ||
</script> | ||
</body> | ||
</html> |
Oops, something went wrong.