2022-08-26 08:35:55 -07:00
|
|
|
import { IgniteHtml } from '../ignite-html/ignite-html.js';
|
2020-12-01 11:49:01 -08:00
|
|
|
import { IgniteElement } from "../ignite-html/ignite-element.js";
|
|
|
|
import { IgniteTemplate, slot, div, svg, circle } from "../ignite-html/ignite-template.js";
|
|
|
|
|
|
|
|
class LinearProgress extends IgniteElement {
|
|
|
|
constructor() {
|
|
|
|
super();
|
|
|
|
}
|
|
|
|
|
|
|
|
get styles() {
|
2020-12-08 09:19:34 -08:00
|
|
|
return /*css*/`
|
2020-12-01 11:49:01 -08:00
|
|
|
mt-linear-progress {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
mt-linear-progress > div {
|
|
|
|
height: 0.3em;
|
|
|
|
width: 100%;
|
|
|
|
position: relative;
|
|
|
|
overflow: hidden;
|
|
|
|
background-color: #ddd;
|
|
|
|
}
|
|
|
|
|
|
|
|
mt-linear-progress > div > div {
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
content: "";
|
|
|
|
left: -30em;
|
|
|
|
width: 30em;
|
|
|
|
height: 0.3em;
|
|
|
|
animation: loading 2s linear infinite;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes loading {
|
|
|
|
from {
|
|
|
|
left: -30em;
|
|
|
|
width: 0%;
|
|
|
|
}
|
|
|
|
|
|
|
|
50% {
|
|
|
|
width: 30%;
|
|
|
|
}
|
|
|
|
|
|
|
|
70% {
|
|
|
|
width: 70%;
|
|
|
|
}
|
|
|
|
|
|
|
|
80% {
|
|
|
|
left: 50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
95% {
|
|
|
|
left: 120%;
|
|
|
|
}
|
|
|
|
|
|
|
|
to {
|
|
|
|
left: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
}
|
|
|
|
|
|
|
|
get properties() {
|
|
|
|
return {
|
|
|
|
loading: true,
|
2021-02-21 18:13:53 -08:00
|
|
|
color: "#26B3FC"
|
2020-12-01 11:49:01 -08:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
return this.template.child(
|
|
|
|
new div(
|
2021-02-21 18:13:53 -08:00
|
|
|
new div().style("background-color", this.color)
|
2020-12-01 11:49:01 -08:00
|
|
|
)
|
|
|
|
).show(this.loading)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class LinearProgressTemplate extends IgniteTemplate {
|
|
|
|
constructor(...children) {
|
|
|
|
super("mt-linear-progress", children);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-26 08:35:55 -07:00
|
|
|
IgniteHtml.register("mt-linear-progress", LinearProgress);
|
2020-12-01 11:49:01 -08:00
|
|
|
|
|
|
|
export {
|
|
|
|
LinearProgressTemplate as LinearProgress
|
|
|
|
}
|