one
Version:
One is a new React Framework that makes Vite serve both native and web.
139 lines • 5.15 kB
JavaScript
var __create = Object.create;
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __getProtoOf = Object.getPrototypeOf;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __export = (target, all) => {
for (var name in all) __defProp(target, name, {
get: all[name],
enumerable: true
});
};
var __copyProps = (to, from, except, desc) => {
if (from && typeof from === "object" || typeof from === "function") {
for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
get: () => from[key],
enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
});
}
return to;
};
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
// If the importer is in node compatibility mode or this is not an ESM
// file that has been converted to a CommonJS file using a Babel-
// compatible transform (i.e. "__esModule" has not been set), then set
// "default" to the CommonJS "module.exports" for node compatibility.
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", {
value: mod,
enumerable: true
}) : target, mod));
var __toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
value: true
}), mod);
var bundledDevPlugin_exports = {};
__export(bundledDevPlugin_exports, {
bundledDevPlugin: () => bundledDevPlugin
});
module.exports = __toCommonJS(bundledDevPlugin_exports);
var import_node_fs = __toESM(require("node:fs"), 1);
var import_node_path = __toESM(require("node:path"), 1);
var import_virtualEntryConstants = require("./virtualEntryConstants.cjs");
const MIME = {
png: "image/png",
jpg: "image/jpeg",
jpeg: "image/jpeg",
gif: "image/gif",
webp: "image/webp",
avif: "image/avif",
bmp: "image/bmp",
ico: "image/x-icon"
};
const ASSET_EXT_RE = /\.(png|jpe?g|gif|webp|avif|bmp|ico)/;
function inlineAssetImports(code, id) {
if (!ASSET_EXT_RE.test(code)) return null;
const importRe = /import\s+(\w+)\s+from\s*['"]([^'"?]+\.(?:png|jpe?g|gif|webp|avif|bmp|ico))['"]\s*;?/g;
const base = id.split("?")[0];
let result = code;
let changed = false;
let m;
const edits = [];
while (m = importRe.exec(code)) {
const [full, name, spec] = m;
const abs = spec.startsWith(".") ? import_node_path.default.resolve(import_node_path.default.dirname(base), spec) : null;
if (!abs || !import_node_fs.default.existsSync(abs)) continue;
const ext = import_node_path.default.extname(abs).slice(1).toLowerCase();
const uri = `data:${MIME[ext] || "application/octet-stream"};base64,${import_node_fs.default.readFileSync(abs).toString("base64")}`;
edits.push({
full,
name,
uri
});
}
for (const e of edits) {
result = result.replace(e.full, `const ${e.name} = ${JSON.stringify(e.uri)};`);
changed = true;
}
return changed ? {
code: result,
map: null
} : null;
}
function webBundledAssetPlugin() {
return {
name: "one:web-bundled-asset",
transform: (code, id) => inlineAssetImports(code, id)
};
}
function bundledDevPlugin(enabled) {
return {
name: "one:bundled-dev",
// mirror the client's asset inlining on the server env so SSR emits the same
// data-uris (the rolldown client plugin above can't reach the ssr pipeline).
// bundledDev is off by default, so only register the hook when it's on, and
// let rust pre-filter on the asset extensions inlineAssetImports looks for.
...(enabled ? {
transform: {
filter: {
code: ASSET_EXT_RE
},
handler(code, id) {
const env = this.environment;
if (!env || env.name !== "ssr" || env.mode !== "dev") return;
return inlineAssetImports(code, id);
}
}
} : {}),
config(_userConfig, env) {
if (!enabled || env.command !== "serve") return;
return {
experimental: {
bundledDev: true
},
environments: {
client: {
build: {
rolldownOptions: {
// bundle the virtual entry so FullBundleDev serves it at
// /assets/_virtual_one-entry.js
input: [import_virtualEntryConstants.virtualEntryId],
plugins: [webBundledAssetPlugin()],
experimental: {
// rolldown 1.1.0 defaulted lazyBarrel ON, which breaks One's
// index.mjs barrel re-exports under FullBundleDev (e.g. `Slot`
// resolves to undefined). pin it off.
lazyBarrel: false
},
// react-native packages import native-only exports
// (codegenNativeComponent, TurboModuleRegistry, …) from react-native
// → aliased to react-native-web, which doesn't export them. shim as
// undefined instead of failing the build (matches the dep optimizer).
shimMissingExports: true
}
}
}
}
};
}
};
}