aboutsummaryrefslogtreecommitdiff
path: root/static/pages/image-viewer/index.js
blob: 72af6719268357abf8341986ce8ea0aa12f2ff3b (plain)
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
import * as sfw from 'sfw';
const { Div, Img } = sfw.element.native;

import Image from '../../widgets/image/index.js';

const css = await sfw.css(import.meta.url, './index.css')

export default class ImageViewer extends sfw.element.Container {
	#container
	#subtitle
	#images

	constructor() {
		super({ css });

		this.#images = [];

		this.onnewer = () => {}
		this.onolder = () => {}

		this.body.append(
			this.#container = Div.new({
				id: 'container',
				onscroll: () => this.#images.forEach(image => this.#preload(image)),
				children: [
					this.#subtitle = Div.new({
						id: 'subtitle',
						innerHTML: 'Powered by <i>Memora<i>'
					})
				],
			})
		);
	}

	add(id) {
		const image = Image.new({ id });
		this.#images.push(image);
		this.#container.insertBefore(image, this.#subtitle);

		this.#preload(image);
	}

	clear() {
		this.#container.innerHTML = '';
		this.#container.append(this.#subtitle);
	}

	#preload(image) {
		const loading_zone = (this.#container.scrollTop + this.#container.offsetHeight) * 2;

		if (image.offsetTop < loading_zone) {
			image.load();
		}
	}
}