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);
}
};
}
|