16 Commits

5 changed files with 3459 additions and 1556 deletions

View File

@ -1,5 +1,51 @@
# Changelog # Changelog
## 2025-01-09 - 1.2.2 - fix(component)
Fix sizing of status indicator in uptimelink-webwidget
- Corrected the status indicator dimensions for consistency.
## 2025-01-09 - 1.2.1 - fix(UptimelinkWebwidget)
Remove incorrect scale transformation in focused state.
- Fixed the CSS transform property for the .mainbox.focused class in the UptimelinkWebwidget component by removing an unintended scale transformation.
## 2025-01-09 - 1.2.0 - feat(webwidget)
Enhanced widget animations and styling
- Enabled reflect option for 'isOnTop' and 'showExpanded' properties.
- Improved the animation and styling of the 'mainbox' when it gains focus.
- Mainbox now has smoother opacity transitions and better background handling.
- Enhanced functionality of widget positioning for better rendering.
## 2024-06-28 - 1.1.2 - fix(elements)
Fix blur effect in UptimelinkWebwidget component
- Changed blur effect from true to false in the DeesWindowLayer setup
## 2024-06-27 - 1.1.1 - fix(build)
Fix build script to use correct tsbuild command
- Corrected the build script in package.json to use 'tsbuild tsfolders --allowimplicitany && tsbundle element --production' instead of 'tsbuild element --allowimplicitany && tsbundle element --production'.
## 2024-06-27 - 1.1.0 - feat(elements)
Add performance improvements to uptimelink-webwidget
- Added 'will-change: transform' to improve performance of the transform property
- Increased transition speed for element opacity from 0.2s to 0.1s for faster visual feedback
- Added scale transformation effect to the focused state of the widget
## 2024-06-27 - 1.0.82 - fix(core)
No code changes detected. Preparing for version increment based on package state.
## 2024-06-26 - 1.0.81 - fix(core)
Updated dependencies and improved code documentation.
- Updated internal dependencies to newer versions.
- Improved code documentation within TypeScript files.
- Adjusted scripts in package.json for better build performance.
## 2024-06-26 - 1.0.80 - fix(documentation) ## 2024-06-26 - 1.0.80 - fix(documentation)
Update package description and README for clarity Update package description and README for clarity

View File

@ -1,6 +1,6 @@
{ {
"name": "@uptime.link/webwidget", "name": "@uptime.link/webwidget",
"version": "1.0.80", "version": "1.2.2",
"private": false, "private": false,
"description": "The web widget for public use of uptimelink, allowing users to monitor uptime status through a user-friendly interface.", "description": "The web widget for public use of uptimelink, allowing users to monitor uptime status through a user-friendly interface.",
"main": "dist_ts_web/index.js", "main": "dist_ts_web/index.js",
@ -8,22 +8,22 @@
"type": "module", "type": "module",
"scripts": { "scripts": {
"test": "npm run build", "test": "npm run build",
"build": "tsbuild element --allowimplicitany && tsbundle element --production", "build": "tsbuild tsfolders --allowimplicitany && tsbundle element --production",
"watch": "tswatch element" "watch": "tswatch element"
}, },
"author": "Lossless GmbH", "author": "Lossless GmbH",
"license": "UNLICENSED", "license": "UNLICENSED",
"dependencies": { "dependencies": {
"@design.estate/dees-catalog": "^1.0.289", "@design.estate/dees-catalog": "^1.3.3",
"@design.estate/dees-domtools": "^2.0.57", "@design.estate/dees-domtools": "^2.1.1",
"@design.estate/dees-element": "^2.0.34", "@design.estate/dees-element": "^2.0.39",
"@design.estate/dees-wcctools": "^1.0.90" "@design.estate/dees-wcctools": "^1.0.90"
}, },
"devDependencies": { "devDependencies": {
"@git.zone/tsbuild": "^2.1.82", "@git.zone/tsbuild": "^2.2.0",
"@git.zone/tsbundle": "^2.0.15", "@git.zone/tsbundle": "^2.1.0",
"@git.zone/tsrun": "^1.2.49", "@git.zone/tsrun": "^1.3.3",
"@git.zone/tswatch": "^2.0.23", "@git.zone/tswatch": "^2.0.37",
"@push.rocks/projectinfo": "^5.0.2" "@push.rocks/projectinfo": "^5.0.2"
}, },
"files": [ "files": [

4907
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@uptime.link/webwidget', name: '@uptime.link/webwidget',
version: '1.0.80', version: '1.2.2',
description: 'The web widget for public use of uptimelink, allowing users to monitor uptime status through a user-friendly interface.' description: 'The web widget for public use of uptimelink, allowing users to monitor uptime status through a user-friendly interface.'
} }

View File

@ -15,7 +15,8 @@ export class UptimelinkWebwidget extends DeesElement {
`; `;
@property({ @property({
type: Boolean type: Boolean,
reflect: true
}) })
isOnTop = false; isOnTop = false;
@ -28,9 +29,14 @@ export class UptimelinkWebwidget extends DeesElement {
@property() @property()
public isElevated = false; public isElevated = false;
@property() @property({
type: Boolean,
reflect: true
})
public showExpanded: boolean = false; public showExpanded: boolean = false;
public parentWebwidget: UptimelinkWebwidget;
constructor() { constructor() {
super(); super();
this.setupEventing(); this.setupEventing();
@ -60,13 +66,19 @@ export class UptimelinkWebwidget extends DeesElement {
width: 150px; width: 150px;
border-radius: 15px; border-radius: 15px;
height: 30px; height: 30px;
background: ${this.goBright ? '#fff' : '#222' }; background: ${this.goBright ? '#ffffff00' : '#22222200' };
box-shadow: ${this.goBright ? '0px 0px 5px rgba(0,0,0,0.1)' : ''}; box-shadow: ${this.goBright ? '0px 0px 5px rgba(0,0,0,0.1)' : ''};
padding: 5px; border: 1px solid ${this.goBright ? '#22222220' : '#ffffff20' };
padding: 4px;
color: ${this.goBright ? '#333' : '#CCC' }; color: ${this.goBright ? '#333' : '#CCC' };
cursor: pointer; cursor: pointer;
transition: all 0.2s; transition: all 0.2s, background 0.1s;
overflow: hidden; overflow: hidden;
will-change: transform;
opacity: 1;
}
.mainbox.hidden {
opacity: 0;
} }
.firstLine { .firstLine {
@ -77,11 +89,15 @@ export class UptimelinkWebwidget extends DeesElement {
.mainbox.focused { .mainbox.focused {
width: 182px; width: 182px;
height: 117px; height: 117px;
transform: translateX(-16px);
background: ${this.goBright ? '#ffffff' : '#222222' } !important;
box-shadow: ${this.goBright ? '0px 0px 5px rgba(0,0,0,0.1)' : ''} !important;
} }
.statusindicator { .statusindicator {
height: 20px; transform: translate(4px, 4px);
width: 20px; height: 12px;
width: 12px;
background: #66BB6A; background: #66BB6A;
border-radius: 10px; border-radius: 10px;
} }
@ -91,7 +107,7 @@ export class UptimelinkWebwidget extends DeesElement {
.expanded { .expanded {
opacity: 0; opacity: 0;
transition: opacity 0.2s; transition: opacity 0.1s;
} }
.miniHeading { .miniHeading {
@ -181,17 +197,19 @@ export class UptimelinkWebwidget extends DeesElement {
const mainbox = this.shadowRoot.querySelector('.mainbox') as HTMLElement; const mainbox = this.shadowRoot.querySelector('.mainbox') as HTMLElement;
const rect = mainbox.getBoundingClientRect(); const rect = mainbox.getBoundingClientRect();
const uptimelinkWidget = new UptimelinkWebwidget(); const uptimelinkWidget = new UptimelinkWebwidget();
uptimelinkWidget.parentWebwidget = this;
uptimelinkWidget.isOnTop = true; uptimelinkWidget.isOnTop = true;
uptimelinkWidget.style.position = 'fixed'; uptimelinkWidget.style.position = 'fixed';
uptimelinkWidget.style.top = `${rect.top}px`; uptimelinkWidget.style.top = `${rect.top}px`;
uptimelinkWidget.style.left = `${rect.left}px`; uptimelinkWidget.style.left = `${rect.left}px`;
document.body.append(uptimelinkWidget); document.body.append(uptimelinkWidget);
mainbox.classList.add('hidden');
return; return;
} }
this.isElevated = true; this.isElevated = true;
this.isFocused = true; this.isFocused = true;
this.windowLayer = await DeesWindowLayer.createAndShow({ this.windowLayer = await DeesWindowLayer.createAndShow({
blur: true, blur: false,
}); });
await domtools.convenience.smartdelay.delayFor(200); await domtools.convenience.smartdelay.delayFor(200);
if (!this.isFocused) { if (!this.isFocused) {
@ -199,7 +217,7 @@ export class UptimelinkWebwidget extends DeesElement {
} }
this.showExpanded = true; this.showExpanded = true;
await this.performUpdate(); await this.performUpdate();
await (await this.domtoolsPromise).convenience.smartdelay.delayFor(50); await domtools.convenience.smartdelay.delayFor(0);
const expandedDiv = this.shadowRoot.querySelector('.expanded') as HTMLElement; const expandedDiv = this.shadowRoot.querySelector('.expanded') as HTMLElement;
expandedDiv.style.opacity = '1'; expandedDiv.style.opacity = '1';
}; };
@ -208,9 +226,11 @@ export class UptimelinkWebwidget extends DeesElement {
return; return;
} }
this.windowLayer.destroy(); this.windowLayer.destroy();
domtools.convenience.smartdelay.delayFor(200).then(() => { domtools.convenience.smartdelay.delayFor(200).then(async() => {
if (!this.isFocused) { if (!this.isFocused) {
this.isElevated = false; this.isElevated = false;
this.parentWebwidget.shadowRoot.querySelector('.mainbox').classList.remove('hidden');
await domtools.convenience.smartdelay.delayFor(100);
this.remove(); this.remove();
} }
}); });