mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-15 02:11:15 +08:00
efdc3231a7
* changes * asd * fix tests * fix lint * fix ts * fix ts * cleanup * cleanup * fix * Apply suggestions from code review Co-authored-by: Yuichiro Tachibana (Tsuchiya) <t.yic.yt@gmail.com> * fix * add changeset * fix gitignore * fix changeset * fix lockfile * format * fix * add changeset * githunore * kit bopilerplate * add changeset * fix website * add changeset --------- Co-authored-by: Yuichiro Tachibana (Tsuchiya) <t.yic.yt@gmail.com> Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
82 lines
1.8 KiB
JavaScript
82 lines
1.8 KiB
JavaScript
// @ts-nocheck
|
|
|
|
const request_map = {};
|
|
|
|
export 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)
|
|
};
|
|
|
|
let _id = id || name;
|
|
|
|
if (request_map[`${_id}-${variant}`]) {
|
|
return { component: request_map[`${_id}-${variant}`], name };
|
|
}
|
|
try {
|
|
if (!_component_map?.[_id]?.[variant] && !_component_map?.[name]?.[variant])
|
|
throw new Error();
|
|
|
|
request_map[`${_id}-${variant}`] = (
|
|
_component_map?.[_id]?.[variant] || // for dev mode custom components
|
|
_component_map?.[name]?.[variant]
|
|
)();
|
|
|
|
return {
|
|
name,
|
|
component: request_map[`${_id}-${variant}`]
|
|
};
|
|
} catch (e) {
|
|
if (!_id) throw new Error(`Component not found: ${name}`);
|
|
try {
|
|
request_map[`${_id}-${variant}`] = get_component_with_css(
|
|
api_url,
|
|
_id,
|
|
variant
|
|
);
|
|
|
|
return {
|
|
name,
|
|
component: request_map[`${_id}-${variant}`]
|
|
};
|
|
} catch (e) {
|
|
if (variant === "example") {
|
|
request_map[`${_id}-${variant}`] = import("@gradio/fallback/example");
|
|
|
|
return {
|
|
name,
|
|
component: request_map[`${_id}-${variant}`]
|
|
};
|
|
}
|
|
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();
|
|
});
|
|
}
|
|
|
|
function get_component_with_css(api_url, id, variant) {
|
|
return Promise.all([
|
|
load_css(`${api_url}/custom_component/${id}/${variant}/style.css`),
|
|
import(
|
|
/* @vite-ignore */ `${api_url}/custom_component/${id}/${variant}/index.js`
|
|
)
|
|
]).then(([_, module]) => {
|
|
return module;
|
|
});
|
|
}
|