12 Commits

Author SHA1 Message Date
b637f4e53a 1.0.62 2021-03-08 23:11:57 +00:00
0122b2dd20 fix(core): update 2021-03-08 23:11:56 +00:00
e8800996ce 1.0.61 2020-11-29 02:16:25 +00:00
669c341080 fix(core): update 2020-11-29 02:16:24 +00:00
c36d0dc243 1.0.60 2020-11-29 02:11:29 +00:00
6d81526bd1 fix(core): update 2020-11-29 02:11:28 +00:00
dd8c40568e 1.0.59 2020-11-23 22:03:03 +00:00
192e976cf2 fix(core): update 2020-11-23 22:03:02 +00:00
30c1203c65 1.0.58 2020-09-19 16:00:48 +00:00
58e716b818 fix(core): update 2020-09-19 16:00:47 +00:00
4f14720ae0 1.0.57 2020-09-19 15:55:23 +00:00
0edc943e41 fix(core): update 2020-09-19 15:55:22 +00:00
3 changed files with 2163 additions and 1343 deletions

3348
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{
"name": "@uptimelink/webwidget",
"version": "1.0.56",
"version": "1.0.62",
"private": false,
"description": "the webwidget for public use of uptimelink",
"main": "dist_ts_web/index.js",
@ -13,18 +13,16 @@
"author": "Lossless GmbH",
"license": "UNLICENSED",
"dependencies": {
"@designestate/dees-domtools": "^1.0.41",
"@designestate/dees-wcctools": "^1.0.37",
"@designestate/dees-domtools": "^1.0.84",
"@designestate/dees-element": "^1.0.10",
"@designestate/dees-wcctools": "^1.0.54",
"@gitzone/tsrun": "^1.2.12",
"@losslessone_private/loint-pubapi": "^1.0.9",
"@pushrocks/smartexpress": "^3.0.76",
"lit-element": "^2.3.1",
"typescript": "^3.9.7"
"typescript": "^4.2.3"
},
"devDependencies": {
"@gitzone/tsbuild": "^2.1.24",
"@gitzone/tsbundle": "^1.0.72",
"@gitzone/tswatch": "^1.0.50",
"@gitzone/tsbundle": "^1.0.80",
"@gitzone/tswatch": "^1.0.52",
"@pushrocks/projectinfo": "^4.0.5",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.17.0"

View File

@ -1,8 +1,8 @@
import { LitElement, property, html, customElement, TemplateResult } from 'lit-element';
import { DeesElement, property, html, customElement, TemplateResult } from '@designestate/dees-element';
import * as domtools from '@designestate/dees-domtools';
@customElement('uptimelink-webwidget')
export class UptimelinkWebwidget extends LitElement {
export class UptimelinkWebwidget extends DeesElement {
public static demo = () => html`
<uptimelink-webwidget projectSlug="uptime.link"></uptimelink-webwidget>
`;
@ -10,31 +10,56 @@ export class UptimelinkWebwidget extends LitElement {
@property()
public projectSlug: string;
@property()
public isFocused = false;
@property()
public showExpanded: boolean = false;
constructor() {
super();
domtools.DomTools.setupDomTools();
this.setupEventing();
}
public render(): TemplateResult {
return html`
${domtools.elementBasic.styles}
<style>
:host {
display: block;
}
.mainbox {
position: relative;
line-height: 1em;
margin: auto;
display: grid;
grid-template-columns: 26px auto;
font-family: Roboto;
font-weight: 400;
font-size: 13px;
box-sizing: border-box;
width: 150px;
border-radius: 20px;
border-radius: 15px;
height: 30px;
background: #111;
background: ${this.goBright ? '#fff' : '#222' };
box-shadow: ${this.goBright ? '0px 0px 5px rgba(0,0,0,0.1)' : ''};
padding: 5px;
color: #CCC;
color: ${this.goBright ? '#333' : '#CCC' };
cursor: pointer;
transition: all 0.2s;
overflow: hidden;
}
.firstLine {
display: grid;
grid-template-columns: 26px auto;
}
.mainbox.focused {
width: 200px;
height: 128px;
}
.statusindicator {
height: 20px;
width: 20px;
@ -44,11 +69,108 @@ export class UptimelinkWebwidget extends LitElement {
.statustext {
padding-top: 3px;
}
.expanded {
opacity: 0;
transition: opacity 0.2s;
}
.miniHeading {
position: absolute;
width: 190px;
top: 25px;
left: calc(50% - 95px);
margin-top: 10px;
font-size: 12px;
}
.miniOverview24h {
position: absolute;
top: 55px;
left: calc(50% - 95px);
background: ${this.goBright ? 'rgba(0,0,0,0.07)' : 'rgba(255,255,255,0.07)'};
border-radius: 3px;
width: 190px;
height: 40px;
display: grid;
padding: 3px 3px;
grid-template-columns: repeat(30, 4px);
grid-column-gap: 3px;
}
.miniOverview24h .statusBar {
background: ${this.goBright ? 'rgba(0,0,0,0.15)' : 'rgba(255,255,255,0.15)'};
border-radius: 10px;
}
.miniOverview24h .statusBar.ok {
background: #66BB6A;
}
.viewStatuspage {
position: absolute;
width: 190px;
top: 90px;
left: calc(50% - 95px);
text-align: center;
background: ${this.goBright ? 'rgba(0,0,0,0.07)' : 'rgba(255,255,255,0.07)'};
border-radius: 3px 3px 10px 10px;
padding: 5px;
margin-top: 10px;
}
</style>
<div class="mainbox">
<div class="statusindicator"></div>
<div class="statustext">All systems are up!</div>
<div class="mainbox ${this.isFocused ? 'focused' : null}">
<div class="firstLine">
<div class="statusindicator"></div>
<div class="statustext">All systems are up!</div>
</div>
${this.showExpanded ? html`
<div class="expanded">
<div class="miniHeading">
last 26 hours:
</div>
<div class="miniOverview24h">
${(() => {
let counter = 0;
const returnArray = [];
while(counter < 26) {
returnArray.push(html`<div class="statusBar ok"></div>`)
counter++;
};
return returnArray;
})()}
</div>
<div class="viewStatuspage">View full Statuspage ...</div>
</div>
` : null}
</div>
`;
}
private async setupEventing() {
await this.updateComplete;
const mainbox: HTMLDivElement = this.shadowRoot.querySelector('.mainbox');
mainbox.onmouseenter = async () => {
this.isFocused = true;
await domtools.DomTools.getGlobalDomToolsSync().convenience.smartdelay.delayFor(200);
if (!this.isFocused) {
return;
}
this.showExpanded = true;
await this.performUpdate();
await domtools.DomTools.getGlobalDomToolsSync().convenience.smartdelay.delayFor(50);
const expandedDiv = this.shadowRoot.querySelector('.expanded') as HTMLElement;
expandedDiv.style.opacity = '1';
};
mainbox.onmouseleave = async () => {
if (!this.showExpanded) {
this.isFocused = false;
return;
}
this.showExpanded = false;
await domtools.DomTools.getGlobalDomToolsSync().convenience.smartdelay.delayFor(50);
this.isFocused = false;
}
}
}