Archived
Template
1
Fork 0
This repository has been archived on 2024-09-04. You can view files and clone it, but cannot push or open issues or pull requests.
Contour/public/@shoelace-style/shoelace/cdn/chunks/chunk.NOB47K5B.js
2024-01-30 10:59:28 -05:00

117 lines
3 KiB
JavaScript

import {
SlIcon
} from "./chunk.UZYAV5H6.js";
import {
watch
} from "./chunk.FA5RT4K4.js";
import {
ShoelaceElement,
e,
n,
r
} from "./chunk.SEXBCYCU.js";
import {
animated_image_styles_default
} from "./chunk.RHRCOKU6.js";
import {
x
} from "./chunk.CXZZ2LVK.js";
import {
__decorateClass
} from "./chunk.KIILAQWQ.js";
// src/components/animated-image/animated-image.component.ts
var SlAnimatedImage = class extends ShoelaceElement {
constructor() {
super(...arguments);
this.isLoaded = false;
}
handleClick() {
this.play = !this.play;
}
handleLoad() {
const canvas = document.createElement("canvas");
const { width, height } = this.animatedImage;
canvas.width = width;
canvas.height = height;
canvas.getContext("2d").drawImage(this.animatedImage, 0, 0, width, height);
this.frozenFrame = canvas.toDataURL("image/gif");
if (!this.isLoaded) {
this.emit("sl-load");
this.isLoaded = true;
}
}
handleError() {
this.emit("sl-error");
}
handlePlayChange() {
if (this.play) {
this.animatedImage.src = "";
this.animatedImage.src = this.src;
}
}
handleSrcChange() {
this.isLoaded = false;
}
render() {
return x`
<div class="animated-image">
<img
class="animated-image__animated"
src=${this.src}
alt=${this.alt}
crossorigin="anonymous"
aria-hidden=${this.play ? "false" : "true"}
@click=${this.handleClick}
@load=${this.handleLoad}
@error=${this.handleError}
/>
${this.isLoaded ? x`
<img
class="animated-image__frozen"
src=${this.frozenFrame}
alt=${this.alt}
aria-hidden=${this.play ? "true" : "false"}
@click=${this.handleClick}
/>
<div part="control-box" class="animated-image__control-box">
<slot name="play-icon"><sl-icon name="play-fill" library="system"></sl-icon></slot>
<slot name="pause-icon"><sl-icon name="pause-fill" library="system"></sl-icon></slot>
</div>
` : ""}
</div>
`;
}
};
SlAnimatedImage.styles = animated_image_styles_default;
SlAnimatedImage.dependencies = { "sl-icon": SlIcon };
__decorateClass([
e(".animated-image__animated")
], SlAnimatedImage.prototype, "animatedImage", 2);
__decorateClass([
r()
], SlAnimatedImage.prototype, "frozenFrame", 2);
__decorateClass([
r()
], SlAnimatedImage.prototype, "isLoaded", 2);
__decorateClass([
n()
], SlAnimatedImage.prototype, "src", 2);
__decorateClass([
n()
], SlAnimatedImage.prototype, "alt", 2);
__decorateClass([
n({ type: Boolean, reflect: true })
], SlAnimatedImage.prototype, "play", 2);
__decorateClass([
watch("play", { waitUntilFirstUpdate: true })
], SlAnimatedImage.prototype, "handlePlayChange", 1);
__decorateClass([
watch("src")
], SlAnimatedImage.prototype, "handleSrcChange", 1);
export {
SlAnimatedImage
};