81 lines
2.2 KiB
TypeScript
81 lines
2.2 KiB
TypeScript
import { CSSResultGroup, html, LitElement, TemplateResult, unsafeCSS } from 'lit';
|
|
import { customElement, property } from 'lit/decorators.js';
|
|
|
|
import heartStyle from '../../scss/heart.scss';
|
|
|
|
@customElement('advanced-camera-card-heart')
|
|
export class AdvancedCameraCardHeart extends LitElement {
|
|
@property({ type: String })
|
|
public char = '❤️';
|
|
|
|
@property({ type: String })
|
|
public size = '1em';
|
|
|
|
@property({ type: Number })
|
|
public hue = 340;
|
|
|
|
@property({ type: Number })
|
|
public saturation = 80;
|
|
|
|
@property({ type: Number })
|
|
public lightness = 55;
|
|
|
|
@property({ type: Number })
|
|
public maxOpacity = 1;
|
|
|
|
@property({ type: String })
|
|
public pulseDuration = '3s';
|
|
|
|
@property({ type: String })
|
|
public pulseDelay = '0s';
|
|
|
|
@property({ type: String })
|
|
public startX = '0%';
|
|
|
|
@property({ type: String })
|
|
public startY = '0%';
|
|
|
|
public connectedCallback(): void {
|
|
super.connectedCallback();
|
|
this.addEventListener('animationiteration', this._handleAnimationIteration);
|
|
}
|
|
|
|
public disconnectedCallback(): void {
|
|
super.disconnectedCallback();
|
|
this.removeEventListener('animationiteration', this._handleAnimationIteration);
|
|
}
|
|
|
|
private _handleAnimationIteration = (ev: AnimationEvent): void => {
|
|
if (ev.animationName === 'pulse') {
|
|
this.startX = `${Math.random() * 100}%`;
|
|
this.startY = `${Math.random() * 100}%`;
|
|
}
|
|
};
|
|
|
|
protected render(): TemplateResult {
|
|
return html`${this.char}`;
|
|
}
|
|
|
|
protected updated(): void {
|
|
this.style.setProperty('--size', this.size);
|
|
this.style.setProperty('--hue', `${this.hue}`);
|
|
this.style.setProperty('--saturation', `${this.saturation}`);
|
|
this.style.setProperty('--lightness', `${this.lightness}`);
|
|
this.style.setProperty('--max-opacity', `${this.maxOpacity}`);
|
|
this.style.setProperty('--pulse-duration', this.pulseDuration);
|
|
this.style.setProperty('--pulse-delay', this.pulseDelay);
|
|
this.style.setProperty('--start-x', this.startX);
|
|
this.style.setProperty('--start-y', this.startY);
|
|
}
|
|
|
|
static get styles(): CSSResultGroup {
|
|
return unsafeCSS(heartStyle);
|
|
}
|
|
}
|
|
|
|
declare global {
|
|
interface HTMLElementTagNameMap {
|
|
'advanced-camera-card-heart': AdvancedCameraCardHeart;
|
|
}
|
|
}
|