-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimmich-slideshow.js
185 lines (154 loc) · 4.23 KB
/
immich-slideshow.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
var ImmichSlideshowVersion = "1.2.2";
var PlaceholderSrc = "/local/immich-slideshow/placeholder.png";
import {
LitElement,
html,
css,
} from "https://unpkg.com/[email protected]/lit-element.js?module";
class ImmichSlideshow extends LitElement {
static get properties() {
return {
hass: {},
config: {}
};
}
render() {
return html`
<ha-card style="overflow:hidden;">
<div class="wrapper" style="height:${this.config.height}">
<img class="bottom" @load="${this._onBottomLoad}" src="${PlaceholderSrc}" alt="immich-slideshow">
<img class="top hidden" @error="${this._onTopError}" @load="${this._onTopLoad}" @transitionend="${this._onTopTransitionEnd}" src="${PlaceholderSrc}" alt="immich-slideshow">
</div>
</ha-card>
`;
}
firstUpdated() {
this._doSlideshow();
}
_getImg(className) {
return this.renderRoot.querySelector(".wrapper img." + className);
}
_onBottomLoad(e) {
var bottom = this._getImg("bottom");
if (!bottom.src.endsWith(PlaceholderSrc)) {
URL.revokeObjectURL(bottom.src);
}
}
_imgErrorCount = 0;
_onTopError(e) {
this._imgErrorCount++;
if (this._imgErrorCount <= 3) {
console.log("Immich-Slideshow -> Image load error, loading new image.");
var top = this._getImg("top");
URL.revokeObjectURL(top.src);
top.classList.replace("visible", "hidden");
this._nextImage();
}
else {
console.log("Immich-Slideshow -> Image load error #" + this._imgErrorCount);
}
}
_onTopLoad(e) {
this._imgErrorCount = 0;
}
_onTopTransitionEnd(e) {
var top = this._getImg("top");
var bottom = this._getImg("bottom");
bottom.src = top.src;
top.classList.replace("visible", "hidden");
}
_slideshow = null;
_doSlideshow() {
if (this._slideshow != null) {
clearTimeout(this._slideshow);
this._slideshow = null;
}
this._nextImage();
this._slideshow = setTimeout(() => {
this._slideshow = null;
this._doSlideshow();
}, this.config.slideshow_interval * 1000);
}
async _nextImage() {
var top = this._getImg("top");
top.src = await this._getNextImageURL();
top.classList.replace("hidden", "visible");
}
setConfig(config) {
if (!config.apikey)
throw new Error("You need to define an apikey");
if (!config.host)
throw new Error("You need to define an host");
//Robimy kopię obiektu, inaczej nie można dodawać do niego wlasciwosci
var isconfig = Object.create(config);
if (!isconfig.height)
isconfig.height = "100%";
if (!isconfig.slideshow_interval || isconfig.slideshow_interval < 6)
isconfig.slideshow_interval = 6;
this.config = isconfig;
}
getCardSize() {
return 1;
}
async _apiGet(url) {
let call_url = new URL("api/" + url, this.config.host);
//console.log("apiCall => "+call_url);
let requestOptions =
{
method: 'GET',
credentials: 'include',
headers:
{
'X-Api-Key': `${this.config.apikey}`
}
};
return fetch(call_url, requestOptions);
}
async _getRandomID() {
return this._apiGet("assets/random")
.then(response => response.json())
.then(json => json[0].id);
}
async _getNextImageURL() {
var id = await this._getRandomID();
return this._apiGet("assets/" + id + "/thumbnail?size=preview").
then(response => response.blob()).
then(blob => URL.createObjectURL(blob));
}
static get styles() {
return css`
.wrapper {
position: relative;
width: 100%;
overflow: hidden;
}
img {
width: 100%;
height: 100%;
object-fit: cover;
}
img.bottom {
position: relative;
}
img.top {
position: absolute;
top: 0;
left: 0;
}
img.visible {
transition: all 5s ease-in;
opacity: 1;
}
img.hidden {
transition: none;
opacity: 0;
}`;
}
}
customElements.define("immich-slideshow", ImmichSlideshow);
//INFO----------------------------------------------------------------------------------------------------------------
let infoStyles = [
"color: #fff",
"background-color: #444"
].join(";");
console.info("%cImmichSlideshow Version:" + ImmichSlideshowVersion, infoStyles);