Add semantic token highlighting for 'that' variable and comment file references in VS Code extension Add Phone_Text_Input and Currency_Input components with formatting utilities Implement client widgets, form standardization, and soft delete functionality Add modal scroll lock and update documentation Implement comprehensive modal system with form integration and validation Fix modal component instantiation using jQuery plugin API Implement modal system with responsive sizing, queuing, and validation support Implement form submission with validation, error handling, and loading states Implement country/state selectors with dynamic data loading and Bootstrap styling Revert Rsx::Route() highlighting in Blade/PHP files Target specific PHP scopes for Rsx::Route() highlighting in Blade Expand injection selector for Rsx::Route() highlighting Add custom syntax highlighting for Rsx::Route() and Rsx.Route() calls Update jqhtml packages to v2.2.165 Add bundle path validation for common mistakes (development mode only) Create Ajax_Select_Input widget and Rsx_Reference_Data controller Create Country_Select_Input widget with default country support Initialize Tom Select on Select_Input widgets Add Tom Select bundle for enhanced select dropdowns Implement ISO 3166 geographic data system for country/region selection Implement widget-based form system with disabled state support 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
261 lines
8.4 KiB
JavaScript
Executable File
261 lines
8.4 KiB
JavaScript
Executable File
/*
|
|
MIT License http://www.opensource.org/licenses/mit-license.php
|
|
Author Ivan Kopeykin @vankop
|
|
*/
|
|
|
|
"use strict";
|
|
|
|
const { pathToFileURL } = require("url");
|
|
const ModuleDependencyWarning = require("../ModuleDependencyWarning");
|
|
const {
|
|
JAVASCRIPT_MODULE_TYPE_AUTO,
|
|
JAVASCRIPT_MODULE_TYPE_ESM
|
|
} = require("../ModuleTypeConstants");
|
|
const Template = require("../Template");
|
|
const BasicEvaluatedExpression = require("../javascript/BasicEvaluatedExpression");
|
|
const {
|
|
evaluateToIdentifier,
|
|
evaluateToNumber,
|
|
evaluateToString,
|
|
toConstantDependency
|
|
} = require("../javascript/JavascriptParserHelpers");
|
|
const memoize = require("../util/memoize");
|
|
const propertyAccess = require("../util/propertyAccess");
|
|
const ConstDependency = require("./ConstDependency");
|
|
|
|
/** @typedef {import("estree").MemberExpression} MemberExpression */
|
|
/** @typedef {import("../../declarations/WebpackOptions").JavascriptParserOptions} JavascriptParserOptions */
|
|
/** @typedef {import("../Compiler")} Compiler */
|
|
/** @typedef {import("../Dependency").DependencyLocation} DependencyLocation */
|
|
/** @typedef {import("../NormalModule")} NormalModule */
|
|
/** @typedef {import("../javascript/JavascriptParser")} Parser */
|
|
/** @typedef {import("../javascript/JavascriptParser").Range} Range */
|
|
/** @typedef {import("../javascript/JavascriptParser").Members} Members */
|
|
|
|
const getCriticalDependencyWarning = memoize(() =>
|
|
require("./CriticalDependencyWarning")
|
|
);
|
|
|
|
const PLUGIN_NAME = "ImportMetaPlugin";
|
|
|
|
class ImportMetaPlugin {
|
|
/**
|
|
* @param {Compiler} compiler compiler
|
|
*/
|
|
apply(compiler) {
|
|
compiler.hooks.compilation.tap(
|
|
PLUGIN_NAME,
|
|
(compilation, { normalModuleFactory }) => {
|
|
/**
|
|
* @param {NormalModule} module module
|
|
* @returns {string} file url
|
|
*/
|
|
const getUrl = (module) => pathToFileURL(module.resource).toString();
|
|
/**
|
|
* @param {Parser} parser parser parser
|
|
* @param {JavascriptParserOptions} parserOptions parserOptions
|
|
* @returns {void}
|
|
*/
|
|
const parserHandler = (parser, { importMeta }) => {
|
|
if (importMeta === false) {
|
|
const { importMetaName } = compilation.outputOptions;
|
|
if (importMetaName === "import.meta") return;
|
|
|
|
parser.hooks.expression
|
|
.for("import.meta")
|
|
.tap(PLUGIN_NAME, (metaProperty) => {
|
|
const dep = new ConstDependency(
|
|
/** @type {string} */ (importMetaName),
|
|
/** @type {Range} */ (metaProperty.range)
|
|
);
|
|
dep.loc = /** @type {DependencyLocation} */ (metaProperty.loc);
|
|
parser.state.module.addPresentationalDependency(dep);
|
|
return true;
|
|
});
|
|
return;
|
|
}
|
|
|
|
// import.meta direct
|
|
const webpackVersion = Number.parseInt(
|
|
require("../../package.json").version,
|
|
10
|
|
);
|
|
const importMetaUrl = () =>
|
|
JSON.stringify(getUrl(parser.state.module));
|
|
const importMetaWebpackVersion = () => JSON.stringify(webpackVersion);
|
|
/**
|
|
* @param {Members} members members
|
|
* @returns {string} error message
|
|
*/
|
|
const importMetaUnknownProperty = (members) =>
|
|
`${Template.toNormalComment(
|
|
`unsupported import.meta.${members.join(".")}`
|
|
)} undefined${propertyAccess(members, 1)}`;
|
|
parser.hooks.typeof
|
|
.for("import.meta")
|
|
.tap(
|
|
PLUGIN_NAME,
|
|
toConstantDependency(parser, JSON.stringify("object"))
|
|
);
|
|
parser.hooks.collectDestructuringAssignmentProperties.tap(
|
|
PLUGIN_NAME,
|
|
(expr) => {
|
|
if (expr.type === "MetaProperty") return true;
|
|
}
|
|
);
|
|
parser.hooks.expression
|
|
.for("import.meta")
|
|
.tap(PLUGIN_NAME, (metaProperty) => {
|
|
const referencedPropertiesInDestructuring =
|
|
parser.destructuringAssignmentPropertiesFor(metaProperty);
|
|
if (!referencedPropertiesInDestructuring) {
|
|
const CriticalDependencyWarning =
|
|
getCriticalDependencyWarning();
|
|
parser.state.module.addWarning(
|
|
new ModuleDependencyWarning(
|
|
parser.state.module,
|
|
new CriticalDependencyWarning(
|
|
"'import.meta' cannot be used as a standalone expression. For static analysis, its properties must be accessed directly (e.g., 'import.meta.url') or through destructuring."
|
|
),
|
|
/** @type {DependencyLocation} */ (metaProperty.loc)
|
|
)
|
|
);
|
|
const dep = new ConstDependency(
|
|
`${
|
|
parser.isAsiPosition(
|
|
/** @type {Range} */ (metaProperty.range)[0]
|
|
)
|
|
? ";"
|
|
: ""
|
|
}({})`,
|
|
/** @type {Range} */ (metaProperty.range)
|
|
);
|
|
dep.loc = /** @type {DependencyLocation} */ (metaProperty.loc);
|
|
parser.state.module.addPresentationalDependency(dep);
|
|
return true;
|
|
}
|
|
|
|
let str = "";
|
|
for (const { id: prop } of referencedPropertiesInDestructuring) {
|
|
switch (prop) {
|
|
case "url":
|
|
str += `url: ${importMetaUrl()},`;
|
|
break;
|
|
case "webpack":
|
|
str += `webpack: ${importMetaWebpackVersion()},`;
|
|
break;
|
|
default:
|
|
str += `[${JSON.stringify(
|
|
prop
|
|
)}]: ${importMetaUnknownProperty([prop])},`;
|
|
break;
|
|
}
|
|
}
|
|
const dep = new ConstDependency(
|
|
`({${str}})`,
|
|
/** @type {Range} */ (metaProperty.range)
|
|
);
|
|
dep.loc = /** @type {DependencyLocation} */ (metaProperty.loc);
|
|
parser.state.module.addPresentationalDependency(dep);
|
|
return true;
|
|
});
|
|
parser.hooks.evaluateTypeof
|
|
.for("import.meta")
|
|
.tap(PLUGIN_NAME, evaluateToString("object"));
|
|
parser.hooks.evaluateIdentifier.for("import.meta").tap(
|
|
PLUGIN_NAME,
|
|
evaluateToIdentifier("import.meta", "import.meta", () => [], true)
|
|
);
|
|
|
|
// import.meta.url
|
|
parser.hooks.typeof
|
|
.for("import.meta.url")
|
|
.tap(
|
|
PLUGIN_NAME,
|
|
toConstantDependency(parser, JSON.stringify("string"))
|
|
);
|
|
parser.hooks.expression
|
|
.for("import.meta.url")
|
|
.tap(PLUGIN_NAME, (expr) => {
|
|
const dep = new ConstDependency(
|
|
importMetaUrl(),
|
|
/** @type {Range} */ (expr.range)
|
|
);
|
|
dep.loc = /** @type {DependencyLocation} */ (expr.loc);
|
|
parser.state.module.addPresentationalDependency(dep);
|
|
return true;
|
|
});
|
|
parser.hooks.evaluateTypeof
|
|
.for("import.meta.url")
|
|
.tap(PLUGIN_NAME, evaluateToString("string"));
|
|
parser.hooks.evaluateIdentifier
|
|
.for("import.meta.url")
|
|
.tap(PLUGIN_NAME, (expr) =>
|
|
new BasicEvaluatedExpression()
|
|
.setString(getUrl(parser.state.module))
|
|
.setRange(/** @type {Range} */ (expr.range))
|
|
);
|
|
|
|
// 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.evaluateTypeof
|
|
.for("import.meta.webpack")
|
|
.tap(PLUGIN_NAME, evaluateToString("number"));
|
|
parser.hooks.evaluateIdentifier
|
|
.for("import.meta.webpack")
|
|
.tap(PLUGIN_NAME, evaluateToNumber(webpackVersion));
|
|
|
|
// Unknown properties
|
|
parser.hooks.unhandledExpressionMemberChain
|
|
.for("import.meta")
|
|
.tap(PLUGIN_NAME, (expr, members) => {
|
|
const dep = new ConstDependency(
|
|
importMetaUnknownProperty(members),
|
|
/** @type {Range} */ (expr.range)
|
|
);
|
|
dep.loc = /** @type {DependencyLocation} */ (expr.loc);
|
|
parser.state.module.addPresentationalDependency(dep);
|
|
return true;
|
|
});
|
|
parser.hooks.evaluate
|
|
.for("MemberExpression")
|
|
.tap(PLUGIN_NAME, (expression) => {
|
|
const expr = /** @type {MemberExpression} */ (expression);
|
|
if (
|
|
expr.object.type === "MetaProperty" &&
|
|
expr.object.meta.name === "import" &&
|
|
expr.object.property.name === "meta" &&
|
|
expr.property.type ===
|
|
(expr.computed ? "Literal" : "Identifier")
|
|
) {
|
|
return new BasicEvaluatedExpression()
|
|
.setUndefined()
|
|
.setRange(/** @type {Range} */ (expr.range));
|
|
}
|
|
});
|
|
};
|
|
|
|
normalModuleFactory.hooks.parser
|
|
.for(JAVASCRIPT_MODULE_TYPE_AUTO)
|
|
.tap(PLUGIN_NAME, parserHandler);
|
|
normalModuleFactory.hooks.parser
|
|
.for(JAVASCRIPT_MODULE_TYPE_ESM)
|
|
.tap(PLUGIN_NAME, parserHandler);
|
|
}
|
|
);
|
|
}
|
|
}
|
|
|
|
module.exports = ImportMetaPlugin;
|