File size: 1,263 Bytes
0bd62e5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
export type ComponentData = {
	id: string;
	name: string;
	template: string;
	author: string;
	description: string;
	tags: string;
	version: string;
	subdomain: string;
	background_color: string;
	likes: number;
};

export const classToEmojiMapping: { [key: string]: string } = {
	AnnotatedImage: "πŸ–ΌοΈ",
	Audio: "πŸ”Š",
	Plot: "πŸ“ˆ",
	Button: "πŸ”˜",
	Chatbot: "πŸ€–",
	Code: "πŸ’»",
	ColorPicker: "🎨",
	Dataframe: "πŸ“Š",
	Dataset: "πŸ“š",
	Fallback: "πŸ”„",
	File: "πŸ“„",
	FileExplorer: "πŸ“‚",
	Gallery: "🎨",
	HighlightedText: "✨",
	HTML: "πŸ”—",
	Image: "πŸ–ΌοΈ",
	JSON: "πŸ“",
	Label: "🏷️",
	Markdown: "πŸ“",
	Model3D: "πŸ—Ώ",
	State: "πŸ”’",
	UploadButton: "πŸ“€",
	Video: "πŸŽ₯"
};

export function clickOutside(element: HTMLDivElement, callbackFunction: any) {
	function onClick(event: any) {
		if (
			!element.contains(event.target) &&
			!(event.target.textContent && event.target.textContent === "Share")
		) {
			callbackFunction();
		}
	}

	document.body.addEventListener("click", onClick);

	return {
		update(newCallbackFunction: any) {
			callbackFunction = newCallbackFunction;
		},
		destroy() {
			document.body.removeEventListener("click", onClick);
		}
	};
}