Fix code quality violations and enhance ROUTE-EXISTS-01 rule
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>
This commit is contained in:
110
node_modules/webpack/lib/dependencies/ImportMetaPlugin.js
generated
vendored
Executable file → Normal file
110
node_modules/webpack/lib/dependencies/ImportMetaPlugin.js
generated
vendored
Executable file → Normal file
@@ -6,11 +6,14 @@
|
||||
"use strict";
|
||||
|
||||
const { pathToFileURL } = require("url");
|
||||
const { SyncBailHook } = require("tapable");
|
||||
const Compilation = require("../Compilation");
|
||||
const ModuleDependencyWarning = require("../ModuleDependencyWarning");
|
||||
const {
|
||||
JAVASCRIPT_MODULE_TYPE_AUTO,
|
||||
JAVASCRIPT_MODULE_TYPE_ESM
|
||||
} = require("../ModuleTypeConstants");
|
||||
const RuntimeGlobals = require("../RuntimeGlobals");
|
||||
const Template = require("../Template");
|
||||
const BasicEvaluatedExpression = require("../javascript/BasicEvaluatedExpression");
|
||||
const {
|
||||
@@ -31,6 +34,8 @@ const ConstDependency = require("./ConstDependency");
|
||||
/** @typedef {import("../javascript/JavascriptParser")} Parser */
|
||||
/** @typedef {import("../javascript/JavascriptParser").Range} Range */
|
||||
/** @typedef {import("../javascript/JavascriptParser").Members} Members */
|
||||
/** @typedef {import("../javascript/JavascriptParser").DestructuringAssignmentProperty} DestructuringAssignmentProperty */
|
||||
/** @typedef {import("./ConstDependency").RawRuntimeRequirements} RawRuntimeRequirements */
|
||||
|
||||
const getCriticalDependencyWarning = memoize(() =>
|
||||
require("./CriticalDependencyWarning")
|
||||
@@ -38,7 +43,35 @@ const getCriticalDependencyWarning = memoize(() =>
|
||||
|
||||
const PLUGIN_NAME = "ImportMetaPlugin";
|
||||
|
||||
/**
|
||||
* @typedef {object} ImportMetaPluginHooks
|
||||
* @property {SyncBailHook<[DestructuringAssignmentProperty], string | void>} propertyInDestructuring
|
||||
*/
|
||||
|
||||
/** @type {WeakMap<Compilation, ImportMetaPluginHooks>} */
|
||||
const compilationHooksMap = new WeakMap();
|
||||
|
||||
class ImportMetaPlugin {
|
||||
/**
|
||||
* @param {Compilation} compilation the compilation
|
||||
* @returns {ImportMetaPluginHooks} the attached hooks
|
||||
*/
|
||||
static getCompilationHooks(compilation) {
|
||||
if (!(compilation instanceof Compilation)) {
|
||||
throw new TypeError(
|
||||
"The 'compilation' argument must be an instance of Compilation"
|
||||
);
|
||||
}
|
||||
let hooks = compilationHooksMap.get(compilation);
|
||||
if (hooks === undefined) {
|
||||
hooks = {
|
||||
propertyInDestructuring: new SyncBailHook(["property"])
|
||||
};
|
||||
compilationHooksMap.set(compilation, hooks);
|
||||
}
|
||||
return hooks;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {Compiler} compiler compiler
|
||||
*/
|
||||
@@ -46,6 +79,8 @@ class ImportMetaPlugin {
|
||||
compiler.hooks.compilation.tap(
|
||||
PLUGIN_NAME,
|
||||
(compilation, { normalModuleFactory }) => {
|
||||
const hooks = ImportMetaPlugin.getCompilationHooks(compilation);
|
||||
|
||||
/**
|
||||
* @param {NormalModule} module module
|
||||
* @returns {string} file url
|
||||
@@ -135,25 +170,44 @@ class ImportMetaPlugin {
|
||||
return true;
|
||||
}
|
||||
|
||||
/** @type {RawRuntimeRequirements} */
|
||||
const runtimeRequirements = [];
|
||||
|
||||
let str = "";
|
||||
for (const { id: prop } of referencedPropertiesInDestructuring) {
|
||||
switch (prop) {
|
||||
for (const prop of referencedPropertiesInDestructuring) {
|
||||
const value = hooks.propertyInDestructuring.call(prop);
|
||||
|
||||
if (value) {
|
||||
str += value;
|
||||
continue;
|
||||
}
|
||||
|
||||
switch (prop.id) {
|
||||
case "url":
|
||||
str += `url: ${importMetaUrl()},`;
|
||||
break;
|
||||
case "webpack":
|
||||
str += `webpack: ${importMetaWebpackVersion()},`;
|
||||
break;
|
||||
case "main":
|
||||
str += `main: ${RuntimeGlobals.moduleCache}[${RuntimeGlobals.entryModuleId}] === ${RuntimeGlobals.module},`;
|
||||
runtimeRequirements.push(
|
||||
RuntimeGlobals.moduleCache,
|
||||
RuntimeGlobals.entryModuleId,
|
||||
RuntimeGlobals.module
|
||||
);
|
||||
break;
|
||||
default:
|
||||
str += `[${JSON.stringify(
|
||||
prop
|
||||
)}]: ${importMetaUnknownProperty([prop])},`;
|
||||
prop.id
|
||||
)}]: ${importMetaUnknownProperty([prop.id])},`;
|
||||
break;
|
||||
}
|
||||
}
|
||||
const dep = new ConstDependency(
|
||||
`({${str}})`,
|
||||
/** @type {Range} */ (metaProperty.range)
|
||||
/** @type {Range} */ (metaProperty.range),
|
||||
runtimeRequirements
|
||||
);
|
||||
dep.loc = /** @type {DependencyLocation} */ (metaProperty.loc);
|
||||
parser.state.module.addPresentationalDependency(dep);
|
||||
@@ -197,18 +251,18 @@ class ImportMetaPlugin {
|
||||
);
|
||||
|
||||
// import.meta.webpack
|
||||
parser.hooks.typeof
|
||||
.for("import.meta.webpack")
|
||||
.tap(
|
||||
PLUGIN_NAME,
|
||||
toConstantDependency(parser, JSON.stringify("number"))
|
||||
);
|
||||
parser.hooks.expression
|
||||
.for("import.meta.webpack")
|
||||
.tap(
|
||||
PLUGIN_NAME,
|
||||
toConstantDependency(parser, importMetaWebpackVersion())
|
||||
);
|
||||
parser.hooks.typeof
|
||||
.for("import.meta.webpack")
|
||||
.tap(
|
||||
PLUGIN_NAME,
|
||||
toConstantDependency(parser, JSON.stringify("number"))
|
||||
);
|
||||
parser.hooks.evaluateTypeof
|
||||
.for("import.meta.webpack")
|
||||
.tap(PLUGIN_NAME, evaluateToString("number"));
|
||||
@@ -216,10 +270,44 @@ class ImportMetaPlugin {
|
||||
.for("import.meta.webpack")
|
||||
.tap(PLUGIN_NAME, evaluateToNumber(webpackVersion));
|
||||
|
||||
parser.hooks.expression
|
||||
.for("import.meta.main")
|
||||
.tap(
|
||||
PLUGIN_NAME,
|
||||
toConstantDependency(
|
||||
parser,
|
||||
`${RuntimeGlobals.moduleCache}[${RuntimeGlobals.entryModuleId}] === ${RuntimeGlobals.module}`,
|
||||
[
|
||||
RuntimeGlobals.moduleCache,
|
||||
RuntimeGlobals.entryModuleId,
|
||||
RuntimeGlobals.module
|
||||
]
|
||||
)
|
||||
);
|
||||
parser.hooks.typeof
|
||||
.for("import.meta.main")
|
||||
.tap(
|
||||
PLUGIN_NAME,
|
||||
toConstantDependency(parser, JSON.stringify("boolean"))
|
||||
);
|
||||
parser.hooks.evaluateTypeof
|
||||
.for("import.meta.main")
|
||||
.tap(PLUGIN_NAME, evaluateToString("boolean"));
|
||||
|
||||
// Unknown properties
|
||||
parser.hooks.unhandledExpressionMemberChain
|
||||
.for("import.meta")
|
||||
.tap(PLUGIN_NAME, (expr, members) => {
|
||||
// keep import.meta.env unknown property
|
||||
// don't evaluate import.meta.env.UNKNOWN_PROPERTY -> undefined.UNKNOWN_PROPERTY
|
||||
// `dirname` and `filename` logic in NodeStuffPlugin
|
||||
if (
|
||||
members[0] === "env" ||
|
||||
members[0] === "dirname" ||
|
||||
members[0] === "filename"
|
||||
) {
|
||||
return true;
|
||||
}
|
||||
const dep = new ConstDependency(
|
||||
importMetaUnknownProperty(members),
|
||||
/** @type {Range} */ (expr.range)
|
||||
|
||||
Reference in New Issue
Block a user