File size: 3,599 Bytes
f8919ec |
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 |
import type { Plugin, PluginOption } from "vite";
import { svelte } from "@sveltejs/vite-plugin-svelte";
import preprocess from "svelte-preprocess";
import { join } from "path";
import { type ComponentConfig } from "./dev";
import type { Preprocessor, PreprocessorGroup } from "svelte/compiler";
import { deepmerge } from "./_deepmerge_internal";
const svelte_codes_to_ignore: Record<string, string> = {
"reactive-component": "Icon"
};
const RE_SVELTE_IMPORT =
/import\s+(?:([ -~]*)\s+from\s+){0,1}['"](svelte(?:\/[ -~]+){0,3})['"]/g;
// const RE_BARE_SVELTE_IMPORT = /import ("|')svelte(\/\w+)*("|')(;)*/g;
export function plugins(config: ComponentConfig): PluginOption[] {
const _additional_plugins = config.plugins || [];
const _additional_svelte_preprocess = config.svelte?.preprocess || [];
const _svelte_extensions = (config.svelte?.extensions || [".svelte"]).map(
(ext) => {
if (ext.trim().startsWith(".")) {
return ext;
}
return `.${ext.trim()}`;
}
);
if (!_svelte_extensions.includes(".svelte")) {
_svelte_extensions.push(".svelte");
}
return [
svelte({
inspector: false,
onwarn(warning, handler) {
if (
svelte_codes_to_ignore.hasOwnProperty(warning.code) &&
svelte_codes_to_ignore[warning.code] &&
warning.message.includes(svelte_codes_to_ignore[warning.code])
) {
return;
}
handler!(warning);
},
prebundleSvelteLibraries: false,
compilerOptions: {
discloseVersion: false,
hmr: true
},
extensions: _svelte_extensions,
preprocess: [
preprocess({
typescript: {
compilerOptions: {
declaration: false,
declarationMap: false
}
}
}),
...(_additional_svelte_preprocess as PreprocessorGroup[])
]
}),
..._additional_plugins
];
}
interface GradioPluginOptions {
mode: "dev" | "build";
svelte_dir: string;
backend_port?: number;
imports?: string;
}
export function make_gradio_plugin({
mode,
svelte_dir,
backend_port,
imports
}: GradioPluginOptions): Plugin {
const v_id = "virtual:component-loader";
const resolved_v_id = "\0" + v_id;
return {
name: "gradio",
enforce: "pre",
resolveId(id) {
if (id === v_id) {
return resolved_v_id;
}
if (id === "svelte") {
return {
id: `../../../../../assets/svelte/svelte_svelte.js`,
external: true
};
}
if (id.startsWith("svelte/")) {
const subpath = id.slice("svelte/".length);
return {
id: `../../../../../assets/svelte/svelte_${subpath.replace(/\//g, "_")}.js`,
external: true
};
}
},
load(id) {
if (id === resolved_v_id) {
return `export default {};`;
}
},
transformIndexHtml(html) {
return mode === "dev"
? [
{
tag: "script",
children: `window.__GRADIO_DEV__ = "dev";
window.__GRADIO__SERVER_PORT__ = ${backend_port};
window.__GRADIO__CC__ = ${imports};`
}
]
: undefined;
}
};
}
export const deepmerge_plugin: Plugin = {
name: "deepmerge",
enforce: "pre",
resolveId(id) {
if (id === "deepmerge") {
return "deepmerge_internal";
}
},
load(id) {
if (id === "deepmerge_internal") {
return deepmerge;
}
}
};
function extract_types(str: string): string[] {
const regex = /type (\w+\b)/g;
let m;
const out = [];
while ((m = regex.exec(str))) out.push(m[1]);
return out;
}
function remove_types(input: string): string {
const inner = input.slice(1, -1); // remove { }
const parts = inner
.split(",")
.map((s) => s.trim())
.filter((s) => s && !/^type\s+\w+\b$/.test(s));
return `{ ${parts.join(", ")} }`;
}
|