File size: 6,835 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 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 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 |
// NOTE: We should only import the types from ".." to avoid the circular dependency of implementations,
// which causes repeated executions of the ".." module in †he dev mode and can lead to multiple instances of the dev app.
import type {
create as createLiteAppFunc,
Options,
GradioAppController
} from "..";
import { clean_indent } from "./indent";
interface GradioComponentOptions {
info: Options["info"];
container: Options["container"];
isEmbed: Options["isEmbed"];
initialHeight?: Options["initialHeight"];
eager: Options["eager"];
themeMode: Options["themeMode"];
autoScroll: Options["autoScroll"];
controlPageTitle: Options["controlPageTitle"];
appMode: Options["appMode"];
sharedWorkerMode?: Options["sharedWorkerMode"];
}
interface GradioLiteAppOptions {
files?: Options["files"];
requirements?: Options["requirements"];
code?: Options["code"];
entrypoint?: Options["entrypoint"];
}
function parseRequirementsTxt(content: string): string[] {
return content
.split("\n")
.filter((r) => !r.startsWith("#"))
.map((r) => r.trim())
.filter((r) => r !== "");
}
export function bootstrap_custom_element(
create: typeof createLiteAppFunc
): void {
const CUSTOM_ELEMENT_NAME = "gradio-lite";
if (customElements.get(CUSTOM_ELEMENT_NAME)) {
return;
}
class GradioLiteAppElement extends HTMLElement {
controller: GradioAppController | null = null;
connectedCallback(): void {
// At the time of connectedCallback, the child elements of the custom element are not yet parsed,
// so we need to defer the initialization to the next frame.
// Ref: https://stackoverflow.com/q/70949141/13103190
window.requestAnimationFrame(() => {
const gradioComponentOptions = this.parseGradioComponentOptions();
const gradioLiteAppOptions = this.parseGradioLiteAppOptions();
this.innerHTML = "";
this.controller = create({
target: this, // Same as `js/spa/src/main.ts`
code: gradioLiteAppOptions.code,
requirements: gradioLiteAppOptions.requirements,
files: gradioLiteAppOptions.files,
entrypoint: gradioLiteAppOptions.entrypoint,
playground: this.hasAttribute("playground"),
layout: this.getAttribute("layout"),
...gradioComponentOptions
});
});
}
disconnectedCallback(): void {
this.controller?.unmount();
}
parseGradioComponentOptions(): GradioComponentOptions {
// Parse the options from the attributes of the <gradio-lite> element.
// The following attributes are supported:
// * info: boolean
// * container: boolean
// * embed: boolean
// * initial-height: string
// * eager: boolean
// * theme: "light" | "dark" | null
// * auto-scroll: boolean
// * control-page-title: boolean
// * app-mode: boolean
const info = this.hasAttribute("info");
const container = this.hasAttribute("container");
const isEmbed = this.hasAttribute("embed");
const initialHeight = this.getAttribute("initial-height");
const eager = this.hasAttribute("eager");
const themeMode = this.getAttribute("theme");
const autoScroll = this.hasAttribute("auto-scroll");
const controlPageTitle = this.hasAttribute("control-page-title");
const appMode = this.hasAttribute("app-mode");
const sharedWorkerMode = this.hasAttribute("shared-worker");
return {
info,
container,
isEmbed,
initialHeight: initialHeight ?? undefined,
eager,
themeMode:
themeMode != null && ["light", "dark"].includes(themeMode)
? (themeMode as GradioComponentOptions["themeMode"])
: null,
autoScroll,
controlPageTitle,
appMode,
sharedWorkerMode
};
}
parseGradioLiteAppOptions(): GradioLiteAppOptions {
// When it contains child elements, parse them as options. Available child elements are:
// * <gradio-file />
// Represents a file to be mounted in the virtual file system of the Wasm worker.
// At least 1 <gradio-file> element must have the `entrypoint` attribute.
// The following 2 forms are supported:
// * <gradio-file name="{file name}" >{file content}</gradio-file>
// * <gradio-file name="{file name}" url="{remote URL}" />
// * <gradio-requirements>{requirements.txt}</gradio-requirements>
// * <gradio-code>{Python code}</gradio-code>
const options: GradioLiteAppOptions = {};
const fileElements = this.getElementsByTagName("gradio-file");
for (const fileElement of fileElements) {
const name = fileElement.getAttribute("name");
if (name == null) {
throw new Error("<gradio-file> must have the name attribute.");
}
const entrypoint = fileElement.hasAttribute("entrypoint");
const url = fileElement.getAttribute("url");
options.files ??= {};
if (url != null) {
options.files[name] = { url };
} else {
let data = fileElement.textContent ?? "";
if (name.endsWith(".py")) {
// Dedent the Python code.
data = clean_indent(data);
}
options.files[name] = { data };
}
if (entrypoint) {
if (options.entrypoint != null) {
throw new Error("Multiple entrypoints are not allowed.");
}
options.entrypoint = name;
}
}
if (options.entrypoint == null) {
// If no entrypoint file is specified,
// try to find the source code to be passed to the .code option instead.
const codeElements = this.getElementsByTagName("gradio-code");
if (codeElements.length === 0) {
// If there is no <gradio-code> element, try to parse the content of the custom element as code.
let code = "";
this.childNodes.forEach((node) => {
if (node.nodeType === Node.TEXT_NODE) {
code += node.textContent;
}
});
options.code = code || undefined;
} else {
if (codeElements.length > 1) {
console.warn(
"Multiple <gradio-code> elements are found. Only the first one will be used."
);
}
const firstCodeElement = codeElements[0];
options.code = firstCodeElement?.textContent ?? undefined;
}
options.code = options.code && clean_indent(options.code);
}
const requirementsElements = this.getElementsByTagName(
"gradio-requirements"
);
if (requirementsElements.length > 1) {
console.warn(
"Multiple <gradio-requirements> elements are found. Only the first one will be used."
);
}
const firstRequirementsElement = requirementsElements[0];
const requirementsTxt = firstRequirementsElement?.textContent ?? "";
options.requirements = parseRequirementsTxt(requirementsTxt);
return options;
}
}
customElements.define(CUSTOM_ELEMENT_NAME, GradioLiteAppElement);
}
|