Implement JQHTML function cache ID system and fix bundle compilation Implement underscore prefix for system tables Fix JS syntax linter to support decorators and grant exception to Task system SPA: Update planning docs and wishlists with remaining features SPA: Document Navigation API abandonment and future enhancements Implement SPA browser integration with History API (Phase 1) Convert contacts view page to SPA action Convert clients pages to SPA actions and document conversion procedure SPA: Merge GET parameters and update documentation Implement SPA route URL generation in JavaScript and PHP Implement SPA bootstrap controller architecture Add SPA routing manual page (rsx:man spa) Add SPA routing documentation to CLAUDE.md Phase 4 Complete: Client-side SPA routing implementation Update get_routes() consumers for unified route structure Complete SPA Phase 3: PHP-side route type detection and is_spa flag Restore unified routes structure and Manifest_Query class Refactor route indexing and add SPA infrastructure Phase 3 Complete: SPA route registration in manifest Implement SPA Phase 2: Extract router code and test decorators Rename Jqhtml_Component to Component and complete SPA foundation setup 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
91 lines
3.1 KiB
JavaScript
91 lines
3.1 KiB
JavaScript
/*
|
|
MIT License http://www.opensource.org/licenses/mit-license.php
|
|
*/
|
|
|
|
"use strict";
|
|
|
|
const RuntimeGlobals = require("../RuntimeGlobals");
|
|
const RuntimeModule = require("../RuntimeModule");
|
|
const Template = require("../Template");
|
|
const JavascriptModulesPlugin = require("../javascript/JavascriptModulesPlugin");
|
|
const { getUndoPath } = require("../util/identifier");
|
|
|
|
/** @typedef {import("../Chunk")} Chunk */
|
|
/** @typedef {import("../Compilation")} Compilation */
|
|
|
|
class AutoPublicPathRuntimeModule extends RuntimeModule {
|
|
constructor() {
|
|
super("publicPath", RuntimeModule.STAGE_BASIC);
|
|
}
|
|
|
|
/**
|
|
* @returns {string | null} runtime code
|
|
*/
|
|
generate() {
|
|
const compilation = /** @type {Compilation} */ (this.compilation);
|
|
const { scriptType, importMetaName, path, environment } =
|
|
compilation.outputOptions;
|
|
const chunkName = compilation.getPath(
|
|
JavascriptModulesPlugin.getChunkFilenameTemplate(
|
|
/** @type {Chunk} */
|
|
(this.chunk),
|
|
compilation.outputOptions
|
|
),
|
|
{
|
|
chunk: this.chunk,
|
|
contentHashType: "javascript"
|
|
}
|
|
);
|
|
const undoPath = getUndoPath(
|
|
chunkName,
|
|
/** @type {string} */ (path),
|
|
false
|
|
);
|
|
|
|
const global = environment.globalThis
|
|
? "globalThis"
|
|
: RuntimeGlobals.global;
|
|
|
|
return Template.asString([
|
|
"var scriptUrl;",
|
|
scriptType === "module"
|
|
? `if (typeof ${importMetaName}.url === "string") scriptUrl = ${importMetaName}.url`
|
|
: Template.asString([
|
|
`if (${global}.importScripts) scriptUrl = ${global}.location + "";`,
|
|
`var document = ${global}.document;`,
|
|
"if (!scriptUrl && document) {",
|
|
Template.indent([
|
|
// Technically we could use `document.currentScript instanceof window.HTMLScriptElement`,
|
|
// but an attacker could try to inject `<script>HTMLScriptElement = HTMLImageElement</script>`
|
|
// and use `<img name="currentScript" src="https://attacker.controlled.server/"></img>`
|
|
"if (document.currentScript && document.currentScript.tagName.toUpperCase() === 'SCRIPT')",
|
|
Template.indent("scriptUrl = document.currentScript.src;"),
|
|
"if (!scriptUrl) {",
|
|
Template.indent([
|
|
'var scripts = document.getElementsByTagName("script");',
|
|
"if(scripts.length) {",
|
|
Template.indent([
|
|
"var i = scripts.length - 1;",
|
|
"while (i > -1 && (!scriptUrl || !/^http(s?):/.test(scriptUrl))) scriptUrl = scripts[i--].src;"
|
|
]),
|
|
"}"
|
|
]),
|
|
"}"
|
|
]),
|
|
"}"
|
|
]),
|
|
"// When supporting browsers where an automatic publicPath is not supported you must specify an output.publicPath manually via configuration",
|
|
'// or pass an empty string ("") and set the __webpack_public_path__ variable from your code to use your own logic.',
|
|
'if (!scriptUrl) throw new Error("Automatic publicPath is not supported in this browser");',
|
|
'scriptUrl = scriptUrl.replace(/^blob:/, "").replace(/#.*$/, "").replace(/\\?.*$/, "").replace(/\\/[^\\/]+$/, "/");',
|
|
!undoPath
|
|
? `${RuntimeGlobals.publicPath} = scriptUrl;`
|
|
: `${RuntimeGlobals.publicPath} = scriptUrl + ${JSON.stringify(
|
|
undoPath
|
|
)};`
|
|
]);
|
|
}
|
|
}
|
|
|
|
module.exports = AutoPublicPathRuntimeModule;
|