mirror of
https://github.com/gradio-app/gradio.git
synced 2025-01-12 10:34:32 +08:00
d00fcf89d1
* WIP * fix * WIP * Remove console log * add changeset * add changeset * use strict --------- Co-authored-by: pngwn <hello@pngwn.io> Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
54 lines
1.2 KiB
JavaScript
54 lines
1.2 KiB
JavaScript
// @ts-nocheck
|
|
|
|
export async function load_component({ api_url, name, id, variant }) {
|
|
const comps = window.__GRADIO__CC__;
|
|
|
|
const _component_map = {
|
|
// eslint-disable-next-line no-undef
|
|
...component_map,
|
|
...(!comps ? {} : comps)
|
|
};
|
|
try {
|
|
const c = await (
|
|
_component_map?.[id]?.[variant] || // for dev mode custom components
|
|
_component_map?.[name]?.[variant]
|
|
)();
|
|
return {
|
|
name,
|
|
component: c
|
|
};
|
|
} catch (e) {
|
|
try {
|
|
await load_css(`${api_url}/custom_component/${id}/${variant}/style.css`);
|
|
const c = await import(
|
|
/* @vite-ignore */ `${api_url}/custom_component/${id}/${variant}/index.js`
|
|
);
|
|
return {
|
|
name,
|
|
component: c
|
|
};
|
|
} catch (e) {
|
|
if (variant === "example") {
|
|
return {
|
|
name,
|
|
component: await import("@gradio/fallback/example")
|
|
};
|
|
}
|
|
console.error(`failed to load: ${name}`);
|
|
console.error(e);
|
|
throw e;
|
|
}
|
|
}
|
|
}
|
|
|
|
function load_css(url) {
|
|
return new Promise((resolve, reject) => {
|
|
const link = document.createElement("link");
|
|
link.rel = "stylesheet";
|
|
link.href = url;
|
|
document.head.appendChild(link);
|
|
link.onload = () => resolve();
|
|
link.onerror = () => reject();
|
|
});
|
|
}
|