File size: 2,407 Bytes
e26a977
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import { $el } from "../ui.js";

export function calculateImageGrid(imgs, dw, dh) {
	let best = 0;
	let w = imgs[0].naturalWidth;
	let h = imgs[0].naturalHeight;
	const numImages = imgs.length;

	let cellWidth, cellHeight, cols, rows, shiftX;
	// compact style
	for (let c = 1; c <= numImages; c++) {
		const r = Math.ceil(numImages / c);
		const cW = dw / c;
		const cH = dh / r;
		const scaleX = cW / w;
		const scaleY = cH / h;

		const scale = Math.min(scaleX, scaleY, 1);
		const imageW = w * scale;
		const imageH = h * scale;
		const area = imageW * imageH * numImages;

		if (area > best) {
			best = area;
			cellWidth = imageW;
			cellHeight = imageH;
			cols = c;
			rows = r;
			shiftX = c * ((cW - imageW) / 2);
		}
	}

	return { cellWidth, cellHeight, cols, rows, shiftX };
}

export function createImageHost(node) {
	const el = $el("div.comfy-img-preview");
	let currentImgs;
	let first = true;

	function updateSize() {
		let w = null;
		let h = null;

		if (currentImgs) {
			let elH = el.clientHeight;
			if (first) {
				first = false;
				// On first run, if we are small then grow a bit
				if (elH < 190) {
					elH = 190;
				}
				el.style.setProperty("--comfy-widget-min-height", elH);
			} else {
				el.style.setProperty("--comfy-widget-min-height", null);
			}

			const nw = node.size[0];
			({ cellWidth: w, cellHeight: h } = calculateImageGrid(currentImgs, nw - 20, elH));
			w += "px";
			h += "px";

			el.style.setProperty("--comfy-img-preview-width", w);
			el.style.setProperty("--comfy-img-preview-height", h);
		}
	}
	return {
		el,
		updateImages(imgs) {
			if (imgs !== currentImgs) {
				if (currentImgs == null) {
					requestAnimationFrame(() => {
						updateSize();
					});
				}
				el.replaceChildren(...imgs);
				currentImgs = imgs;
				node.onResize(node.size);
				node.graph.setDirtyCanvas(true, true);
			}
		},
		getHeight() {
			updateSize();
		},
		onDraw() {
			// Element from point uses a hittest find elements so we need to toggle pointer events
			el.style.pointerEvents = "all";
			const over = document.elementFromPoint(app.canvas.mouse[0], app.canvas.mouse[1]);
			el.style.pointerEvents = "none";

			if(!over) return;
			// Set the overIndex so Open Image etc work
			const idx = currentImgs.indexOf(over);
			node.overIndex = idx;
		},
	};
}