First implementation

This commit is contained in:
trading_peter 2025-03-11 22:16:01 +01:00
parent a74bbc2c9e
commit 7a2b699cd1
4 changed files with 97 additions and 40 deletions

View File

@ -1 +1,21 @@
# tp-element
# tp-progress-bar
A progress bar element.
## Installation
```bash
npm i @tp/tp-progress-bar
```
## Usage
```html
<tp-progress-bar value="50"></tp-progress-bar>
```
## Properties
| Property | Type | Description |
| -------- | ---- | ----------- |
| `value` | `Number` | The current value of the progress bar.

View File

@ -1,14 +1,14 @@
{
"name": "@tp/tp-element",
"version": "0.0.1",
"name": "@tp/tp-progress-bar",
"version": "1.0.0",
"description": "",
"main": "tp-element.js",
"main": "tp-progress-bar.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://gitea.codeblob.work/tp-elements/tp-element.git"
"url": "https://gitea.codeblob.work/tp-elements/tp-progress-bar.git"
},
"author": "trading_peter",
"license": "Apache-2.0",

View File

@ -1,35 +0,0 @@
/**
@license
Copyright (c) 2024 trading_peter
This program is available under Apache License Version 2.0
*/
import { LitElement, html, css } from 'lit';
class TpElement extends LitElement {
static get styles() {
return [
css`
:host {
display: block;
}
`
];
}
render() {
const { } = this;
return html`
`;
}
static get properties() {
return { };
}
}
window.customElements.define('tp-element', TpElement);

72
tp-progress-bar.js Normal file
View File

@ -0,0 +1,72 @@
/**
@license
Copyright (c) 2025 trading_peter
This program is available under Apache License Version 2.0
*/
import { LitElement, html, css } from 'lit';
export class TpProgressBar extends LitElement {
static get styles() {
return css`
:host {
display: block;
}
.bar {
background: #EEEEEE;
border-radius: 8px;
height: var(--tp-progress-bar-height, 16px);
border-radius: var(--tp-progress-bar-border-radius, 8px);
position: relative;
overflow: hidden;
transform: translate3d(0, 0, 0);
}
#progress {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
border-radius: 8px;
transform: translateX(-100%);
background: var(--tp-progress-bar-color, #039BE5);
transition: transform 200ms linear;
}
`;
}
render() {
return html`
<div class="bar">
<div id="progress"></div>
</div>
`;
}
static get properties() {
return {
progress: { type: Number },
};
}
constructor() {
super();
this.progress = 0;
}
updated(changedProperties) {
if (changedProperties.has('progress')) {
this._progressChanged(this.progress);
}
}
_progressChanged(value) {
value = Math.max(0, Math.min(100, value));
const progress = this.shadowRoot.querySelector('#progress');
progress.style.transform = `translateX(-${100 - value}%)`;
}
}
window.customElements.define('tp-progress-bar', TpProgressBar);