2022-08-26 08:35:55 -07:00
|
|
|
import { IgniteHtml } from '../ignite-html/ignite-html.js';
|
2020-12-01 00:16:40 -08:00
|
|
|
import { IgniteElement } from "../ignite-html/ignite-element.js";
|
|
|
|
import { IgniteTemplate, slot, div, svg, circle } from "../ignite-html/ignite-template.js";
|
|
|
|
|
|
|
|
class CircularProgress extends IgniteElement {
|
|
|
|
constructor() {
|
|
|
|
super();
|
|
|
|
}
|
|
|
|
|
|
|
|
get styles() {
|
2020-12-08 09:19:34 -08:00
|
|
|
return /*css*/`
|
2021-06-09 18:57:40 -07:00
|
|
|
mt-circular-progress {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
2022-04-04 22:55:19 -07:00
|
|
|
|
|
|
|
mt-circular-progress > div:not(.center) {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
2021-06-09 18:57:40 -07:00
|
|
|
|
|
|
|
mt-circular-progress > div {
|
|
|
|
position: relative;
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
|
2020-12-01 00:16:40 -08:00
|
|
|
mt-circular-progress > div > svg {
|
2021-01-25 00:37:11 -08:00
|
|
|
z-index: 1;
|
2020-12-01 00:16:40 -08:00
|
|
|
animation: rotator 2s linear infinite;
|
|
|
|
}
|
|
|
|
|
|
|
|
mt-circular-progress > div > svg > circle {
|
|
|
|
stroke-dasharray: 80px, 200px;
|
|
|
|
stroke-dashoffset: 0px;
|
2021-03-10 08:57:10 -08:00
|
|
|
animation: dash 2s ease-in-out infinite;
|
2020-12-01 00:16:40 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes rotator {
|
|
|
|
0% {
|
|
|
|
transform: rotate(0deg);
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
transform: rotate(360deg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes dash {
|
|
|
|
0% {
|
|
|
|
stroke-dasharray: 1px, 200px;
|
|
|
|
stroke-dashoffset: 0px;
|
|
|
|
}
|
|
|
|
50% {
|
|
|
|
stroke-dasharray: 100px, 200px;
|
|
|
|
stroke-dashoffset: -15px;
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
stroke-dasharray: 100px, 200px;
|
|
|
|
stroke-dashoffset: -125px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
}
|
|
|
|
|
|
|
|
get properties() {
|
|
|
|
return {
|
|
|
|
loading: true,
|
|
|
|
size: "4em",
|
2021-03-10 08:57:10 -08:00
|
|
|
strokeWidth: "3.6",
|
2021-10-20 10:06:53 -07:00
|
|
|
stroke: "#4285F4",
|
|
|
|
center: true
|
2020-12-01 00:16:40 -08:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
return this.template.child(
|
2022-04-04 22:55:19 -07:00
|
|
|
new div().class(this.center, value => value ? "center" : null).child(
|
2020-12-01 00:16:40 -08:00
|
|
|
new svg()
|
|
|
|
.attribute("viewBox", "22 22 44 44")
|
|
|
|
.style("width", this.size)
|
|
|
|
.style("height", this.size)
|
2021-10-20 10:06:53 -07:00
|
|
|
.style("left", [this.size, this.center], null, (size, center) => center ? `calc(50% - (${size} / 2))` : null)
|
|
|
|
.style("top", [this.size, this.center], null, (size, center) => center ? `calc(50% - (${size} / 2))` : null)
|
|
|
|
.style("position", this.center, true, center => center ? "absolute" : "relative")
|
2020-12-01 00:16:40 -08:00
|
|
|
.show(this.loading)
|
|
|
|
.child(
|
|
|
|
new circle()
|
2020-12-01 11:49:01 -08:00
|
|
|
.attribute("cx", "44")
|
|
|
|
.attribute("cy", "44")
|
|
|
|
.attribute("r", "20.2")
|
|
|
|
.attribute("fill", "none")
|
2021-03-10 08:57:10 -08:00
|
|
|
.attribute("stroke-width", this.strokeWidth)
|
|
|
|
.attribute("stroke", this.stroke)
|
2020-12-01 00:16:40 -08:00
|
|
|
),
|
|
|
|
new slot(this)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class CircularProgressTemplate extends IgniteTemplate {
|
|
|
|
constructor(...children) {
|
|
|
|
super("mt-circular-progress", children);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-26 08:35:55 -07:00
|
|
|
IgniteHtml.register("mt-circular-progress", CircularProgress);
|
2020-12-01 00:16:40 -08:00
|
|
|
|
|
|
|
export {
|
|
|
|
CircularProgressTemplate as CircularProgress
|
|
|
|
}
|