File size: 1,951 Bytes
3d5837a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import { app } from "../../../scripts/app.js";
import { api } from "../../../scripts/api.js";
import { $el } from "../../../scripts/ui.js";

const id = "pysssss.ShowImageOnMenu";
const ext = {
	name: id,
	async setup(app) {
		let enabled = true;
		let nodeId = null;
		const img = $el("img", {
			style: {
				width: "100%",
				height: "150px",
				objectFit: "contain",
			},
		});
		const link = $el(
			"a",
			{
				style: {
					width: "100%",
					height: "150px",
					marginTop: "10px",
					order: 100, // Place this item last (until someone else has a higher order)
					display: "none",
				},
				href: "#",
				onclick: (e) => {
					e.stopPropagation();
					e.preventDefault();
					const node = app.graph.getNodeById(nodeId);
					if (!node) return;
					app.canvas.centerOnNode(node);
					app.canvas.setZoom(1);
				},
			},
			[img]
		);

		app.ui.menuContainer.append(link);

		const show = (src, node) => {
			img.src = src;
			nodeId = Number(node);
			link.style.display = "unset";
		};

		api.addEventListener("executed", ({ detail }) => {
			if (!enabled) return;
			const images = detail?.output?.images;
			if (!images || !images.length) return;
			const format = app.getPreviewFormatParam();
			const src = [
				`./view?filename=${encodeURIComponent(images[0].filename)}`,
				`type=${images[0].type}`,
				`subfolder=${encodeURIComponent(images[0].subfolder)}`,
				`t=${+new Date()}${format}`,].join('&');
			show(src, detail.node);
		});

		api.addEventListener("b_preview", ({ detail }) => {
			if (!enabled) return;
			show(URL.createObjectURL(detail), app.runningNodeId);
		});

		app.ui.settings.addSetting({
			id,
			name: "🐍 Show Image On Menu",
			defaultValue: true,
			type: "boolean",
			onChange(value) {
				enabled = value;

				if (!enabled) link.style.display = "none";
			},
		});
	},
};

app.registerExtension(ext);