Compare commits
12 Commits
Author | SHA1 | Date | |
---|---|---|---|
617a3f307c | |||
a577418132 | |||
c969da7362 | |||
fd6427da1e | |||
ad178bfec3 | |||
22db7a50de | |||
f010f1e32b | |||
1e24a6a671 | |||
69583a90ad | |||
efb2e53e0c | |||
fe38765d2f | |||
1903687a46 |
@ -13,6 +13,7 @@
|
||||
},
|
||||
"npmci": {
|
||||
"npmGlobalTools": [],
|
||||
"npmAccessLevel": "private"
|
||||
"npmAccessLevel": "private",
|
||||
"npmRegistryUrl": "verdaccio.lossless.one"
|
||||
}
|
||||
}
|
12178
package-lock.json
generated
12178
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
10
package.json
10
package.json
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@uptimelink_private/catalog",
|
||||
"version": "1.0.60",
|
||||
"version": "1.0.66",
|
||||
"private": false,
|
||||
"description": "a catalog with webcomponents for uptimelink dashboard",
|
||||
"main": "dist_ts_web/index.js",
|
||||
@ -13,12 +13,12 @@
|
||||
"author": "Lossless GmbH",
|
||||
"license": "UNLICENSED",
|
||||
"dependencies": {
|
||||
"@designestate/dees-domtools": "^1.0.95",
|
||||
"@designestate/dees-element": "^1.0.25",
|
||||
"@designestate/dees-wcctools": "^1.0.57",
|
||||
"@designestate/dees-domtools": "^1.0.96",
|
||||
"@designestate/dees-element": "^1.0.26",
|
||||
"@designestate/dees-wcctools": "^1.0.59",
|
||||
"@gitzone/tsrun": "^1.2.17",
|
||||
"@losslessone_private/loint-pubapi": "^1.0.10",
|
||||
"@pushrocks/smartexpress": "^3.0.103",
|
||||
"@uptimelink/interfaces": "^1.0.10",
|
||||
"typescript": "^4.4.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
@ -1,6 +1,7 @@
|
||||
export * from './upl-statuspage-assetsselector';
|
||||
export * from './upl-statuspage-footer';
|
||||
export * from './upl-statuspage-header';
|
||||
export * from './upl-statuspage-incidents';
|
||||
export * from './upl-statuspage-statusbar';
|
||||
export * from './upl-statuspage-statusdetails';
|
||||
export * from './upl-statuspage-statusmonth';
|
||||
|
@ -33,11 +33,17 @@ export class UplStatuspageFooter extends DeesElement {
|
||||
css`
|
||||
:host {
|
||||
display: block;
|
||||
background: ${cssManager.bdTheme('#eeeeeb', '#222222')};
|
||||
background: ${cssManager.bdTheme('#ffffff', '#000000')};
|
||||
font-family: Roboto Mono;
|
||||
color: ${cssManager.bdTheme('#333333', '#ffffff')};
|
||||
}
|
||||
|
||||
.mainbox {
|
||||
max-width: 900px;
|
||||
margin: auto;
|
||||
padding-top: 20px;
|
||||
padding-bottom: 20px;
|
||||
}
|
||||
|
||||
`
|
||||
]
|
||||
|
90
ts_web/elements/upl-statuspage-incidents.ts
Normal file
90
ts_web/elements/upl-statuspage-incidents.ts
Normal file
@ -0,0 +1,90 @@
|
||||
import * as plugins from '../plugins';
|
||||
import {
|
||||
DeesElement,
|
||||
property,
|
||||
html,
|
||||
customElement,
|
||||
TemplateResult,
|
||||
css,
|
||||
cssManager,
|
||||
} from '@designestate/dees-element';
|
||||
|
||||
declare global {
|
||||
interface HTMLElementTagNameMap {
|
||||
'upl-statuspage-incidents': UplStatuspageIncidents;
|
||||
}
|
||||
}
|
||||
|
||||
@customElement('upl-statuspage-incidents')
|
||||
export class UplStatuspageIncidents extends DeesElement {
|
||||
// STATIC
|
||||
public static demo = () => html` <upl-statuspage-incidents></upl-statuspage-incidents> `;
|
||||
|
||||
// INSTANCE
|
||||
@property({
|
||||
type: Array,
|
||||
})
|
||||
public currentIncidences: plugins.uplInterfaces.data.IIncident[] = [];
|
||||
|
||||
@property({
|
||||
type: Array,
|
||||
})
|
||||
public pastIncidences: plugins.uplInterfaces.data.IIncident[] = [];
|
||||
|
||||
@property({
|
||||
type: Boolean,
|
||||
})
|
||||
public whitelabel = false;
|
||||
|
||||
constructor() {
|
||||
super();
|
||||
}
|
||||
|
||||
public static styles = [
|
||||
plugins.domtools.elementBasic.staticStyles,
|
||||
css`
|
||||
:host {
|
||||
display: block;
|
||||
background: ${cssManager.bdTheme('#eeeeeb', '#222222')};
|
||||
font-family: Roboto Mono;
|
||||
color: ${cssManager.bdTheme('#333333', '#ffffff')};
|
||||
}
|
||||
|
||||
.mainbox {
|
||||
max-width: 900px;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
.noIncidentBox {
|
||||
background: #333;
|
||||
padding: 10px;
|
||||
margin-bottom: 15px;
|
||||
border-radius: 3px;
|
||||
}
|
||||
`,
|
||||
];
|
||||
|
||||
public render(): TemplateResult {
|
||||
return html`
|
||||
<style></style>
|
||||
<div class="mainbox">
|
||||
<uplinternal-miniheading> Current Incidents </uplinternal-miniheading>
|
||||
${this.currentIncidences.length
|
||||
? html``
|
||||
: html` <div class="noIncidentBox">No incidents ongoing.</div> `}
|
||||
<uplinternal-miniheading> Past Incidents </uplinternal-miniheading>
|
||||
${this.pastIncidences.length
|
||||
? html``
|
||||
: html` <div class="noIncidentBox">No past incidents in the last 90 days.</div> `}
|
||||
</div>
|
||||
`;
|
||||
}
|
||||
|
||||
public dispatchReportNewIncident() {
|
||||
this.dispatchEvent(new CustomEvent('reportNewIncident', {}));
|
||||
}
|
||||
|
||||
public dispatchStatusSubscribe() {
|
||||
this.dispatchEvent(new CustomEvent('statusSubscribe', {}));
|
||||
}
|
||||
}
|
@ -1,5 +1,13 @@
|
||||
import { DeesElement, property, html, customElement, TemplateResult } from '@designestate/dees-element';
|
||||
import * as domtools from '@designestate/dees-domtools';
|
||||
import * as plugins from '../plugins';
|
||||
import {
|
||||
DeesElement,
|
||||
property,
|
||||
html,
|
||||
customElement,
|
||||
TemplateResult,
|
||||
css,
|
||||
cssManager,
|
||||
} from '@designestate/dees-element';
|
||||
|
||||
import './internal/uplinternal-miniheading';
|
||||
|
||||
@ -11,20 +19,15 @@ declare global {
|
||||
|
||||
@customElement('upl-statuspage-statusdetails')
|
||||
export class UplStatuspageStatusdetails extends DeesElement {
|
||||
public static demo = () => html`
|
||||
<upl-statuspage-statusdetails></upl-statuspage-statusdetails>
|
||||
`;
|
||||
|
||||
|
||||
public static demo = () => html` <upl-statuspage-statusdetails></upl-statuspage-statusdetails> `;
|
||||
|
||||
constructor() {
|
||||
super();
|
||||
}
|
||||
|
||||
public render(): TemplateResult {
|
||||
return html`
|
||||
${domtools.elementBasic.styles}
|
||||
<style>
|
||||
public static styles = [
|
||||
plugins.domtools.elementBasic.staticStyles,
|
||||
css`
|
||||
:host {
|
||||
position: relative;
|
||||
padding: 0px 0px 15px 0px;
|
||||
@ -44,8 +47,10 @@ export class UplStatuspageStatusdetails extends DeesElement {
|
||||
}
|
||||
|
||||
.mainbox .barContainer {
|
||||
position: relative;
|
||||
display: flex;
|
||||
padding: 10px 6px;
|
||||
padding: 6px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.mainbox .barContainer .bar {
|
||||
@ -53,18 +58,23 @@ export class UplStatuspageStatusdetails extends DeesElement {
|
||||
width: 11px;
|
||||
border-radius: 3px;
|
||||
height: 40px;
|
||||
background: #2DEB51;
|
||||
background: #2deb51;
|
||||
}
|
||||
.timeIndicator {
|
||||
position: absolute;
|
||||
width: 11px;
|
||||
height: 11px;
|
||||
background: #fff;
|
||||
top: 90px;
|
||||
left: 600px;
|
||||
background: #FF9800;
|
||||
top: 56px;
|
||||
left: 400px;
|
||||
transform: rotate(45deg);
|
||||
}
|
||||
</style>
|
||||
`,
|
||||
];
|
||||
|
||||
public render(): TemplateResult {
|
||||
return html`
|
||||
<style></style>
|
||||
<uplinternal-miniheading>Yesterday & Today</uplinternal-miniheading>
|
||||
<div class="mainbox">
|
||||
<div class="barContainer">
|
||||
@ -77,9 +87,9 @@ export class UplStatuspageStatusdetails extends DeesElement {
|
||||
}
|
||||
return returnArray;
|
||||
})()}
|
||||
</div>
|
||||
<div class="timeIndicator"></div>
|
||||
</div>
|
||||
</div>
|
||||
`;
|
||||
}
|
||||
}
|
@ -4,6 +4,8 @@ import {
|
||||
html,
|
||||
customElement,
|
||||
TemplateResult,
|
||||
css,
|
||||
cssManager
|
||||
} from '@designestate/dees-element';
|
||||
import * as domtools from '@designestate/dees-domtools';
|
||||
|
||||
@ -23,10 +25,9 @@ export class UplStatuspageStatusmonth extends DeesElement {
|
||||
super();
|
||||
}
|
||||
|
||||
public render(): TemplateResult {
|
||||
return html`
|
||||
${domtools.elementBasic.styles}
|
||||
<style>
|
||||
public static styles = [
|
||||
domtools.elementBasic.staticStyles,
|
||||
css`
|
||||
:host {
|
||||
position: relative;
|
||||
padding: 0px 0px 15px 0px;
|
||||
@ -60,7 +61,12 @@ export class UplStatuspageStatusmonth extends DeesElement {
|
||||
background: #2deb51;
|
||||
border-radius: 3px;
|
||||
}
|
||||
</style>
|
||||
`
|
||||
]
|
||||
|
||||
public render(): TemplateResult {
|
||||
return html`
|
||||
<style></style>
|
||||
<uplinternal-miniheading>Last 150 days</uplinternal-miniheading>
|
||||
<div class="mainbox">
|
||||
<div class="statusMonth">
|
||||
|
7
ts_web/plugins.ts
Normal file
7
ts_web/plugins.ts
Normal file
@ -0,0 +1,7 @@
|
||||
import * as domtools from '@designestate/dees-domtools';
|
||||
import * as uplInterfaces from '@uptimelink/interfaces';
|
||||
|
||||
export {
|
||||
domtools,
|
||||
uplInterfaces
|
||||
}
|
Reference in New Issue
Block a user