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>
161 lines
4.7 KiB
JavaScript
Executable File
161 lines
4.7 KiB
JavaScript
Executable File
/*
|
|
MIT License http://www.opensource.org/licenses/mit-license.php
|
|
Author Tobias Koppers @sokra
|
|
*/
|
|
|
|
"use strict";
|
|
|
|
const Template = require("../Template");
|
|
const { equals } = require("../util/ArrayHelpers");
|
|
const { getTrimmedIdsAndRange } = require("../util/chainedImports");
|
|
const makeSerializable = require("../util/makeSerializable");
|
|
const propertyAccess = require("../util/propertyAccess");
|
|
const ModuleDependency = require("./ModuleDependency");
|
|
|
|
/** @typedef {import("webpack-sources").ReplaceSource} ReplaceSource */
|
|
/** @typedef {import("../Dependency")} Dependency */
|
|
/** @typedef {import("../Dependency").ReferencedExports} ReferencedExports */
|
|
/** @typedef {import("../DependencyTemplate").DependencyTemplateContext} DependencyTemplateContext */
|
|
/** @typedef {import("../ModuleGraph")} ModuleGraph */
|
|
/** @typedef {import("../javascript/JavascriptParser").Range} Range */
|
|
/** @typedef {import("../ExportsInfo").ExportInfoName} ExportInfoName */
|
|
/** @typedef {import("../serialization/ObjectMiddleware").ObjectDeserializerContext} ObjectDeserializerContext */
|
|
/** @typedef {import("../serialization/ObjectMiddleware").ObjectSerializerContext} ObjectSerializerContext */
|
|
/** @typedef {import("../util/runtime").RuntimeSpec} RuntimeSpec */
|
|
/** @typedef {import("../util/chainedImports").IdRanges} IdRanges */
|
|
|
|
class CommonJsFullRequireDependency extends ModuleDependency {
|
|
/**
|
|
* @param {string} request the request string
|
|
* @param {Range} range location in source code
|
|
* @param {ExportInfoName[]} names accessed properties on module
|
|
* @param {IdRanges=} idRanges ranges for members of ids; the two arrays are right-aligned
|
|
*/
|
|
constructor(
|
|
request,
|
|
range,
|
|
names,
|
|
idRanges /* TODO webpack 6 make this non-optional. It must always be set to properly trim ids. */
|
|
) {
|
|
super(request);
|
|
this.range = range;
|
|
this.names = names;
|
|
this.idRanges = idRanges;
|
|
this.call = false;
|
|
this.asiSafe = undefined;
|
|
}
|
|
|
|
/**
|
|
* Returns list of exports referenced by this dependency
|
|
* @param {ModuleGraph} moduleGraph module graph
|
|
* @param {RuntimeSpec} runtime the runtime for which the module is analysed
|
|
* @returns {ReferencedExports} referenced exports
|
|
*/
|
|
getReferencedExports(moduleGraph, runtime) {
|
|
if (this.call) {
|
|
const importedModule = moduleGraph.getModule(this);
|
|
if (
|
|
!importedModule ||
|
|
importedModule.getExportsType(moduleGraph, false) !== "namespace"
|
|
) {
|
|
return [this.names.slice(0, -1)];
|
|
}
|
|
}
|
|
return [this.names];
|
|
}
|
|
|
|
/**
|
|
* @param {ObjectSerializerContext} context context
|
|
*/
|
|
serialize(context) {
|
|
const { write } = context;
|
|
write(this.names);
|
|
write(this.idRanges);
|
|
write(this.call);
|
|
write(this.asiSafe);
|
|
super.serialize(context);
|
|
}
|
|
|
|
/**
|
|
* @param {ObjectDeserializerContext} context context
|
|
*/
|
|
deserialize(context) {
|
|
const { read } = context;
|
|
this.names = read();
|
|
this.idRanges = read();
|
|
this.call = read();
|
|
this.asiSafe = read();
|
|
super.deserialize(context);
|
|
}
|
|
|
|
get type() {
|
|
return "cjs full require";
|
|
}
|
|
|
|
get category() {
|
|
return "commonjs";
|
|
}
|
|
}
|
|
|
|
CommonJsFullRequireDependency.Template = class CommonJsFullRequireDependencyTemplate extends (
|
|
ModuleDependency.Template
|
|
) {
|
|
/**
|
|
* @param {Dependency} dependency the dependency for which the template should be applied
|
|
* @param {ReplaceSource} source the current replace source which can be modified
|
|
* @param {DependencyTemplateContext} templateContext the context object
|
|
* @returns {void}
|
|
*/
|
|
apply(
|
|
dependency,
|
|
source,
|
|
{ runtimeTemplate, moduleGraph, chunkGraph, runtimeRequirements, runtime }
|
|
) {
|
|
const dep = /** @type {CommonJsFullRequireDependency} */ (dependency);
|
|
if (!dep.range) return;
|
|
const importedModule = moduleGraph.getModule(dep);
|
|
let requireExpr = runtimeTemplate.moduleExports({
|
|
module: importedModule,
|
|
chunkGraph,
|
|
request: dep.request,
|
|
weak: dep.weak,
|
|
runtimeRequirements
|
|
});
|
|
|
|
const {
|
|
trimmedRange: [trimmedRangeStart, trimmedRangeEnd],
|
|
trimmedIds
|
|
} = getTrimmedIdsAndRange(
|
|
dep.names,
|
|
dep.range,
|
|
dep.idRanges,
|
|
moduleGraph,
|
|
dep
|
|
);
|
|
|
|
if (importedModule) {
|
|
const usedImported = moduleGraph
|
|
.getExportsInfo(importedModule)
|
|
.getUsedName(trimmedIds, runtime);
|
|
if (usedImported) {
|
|
const comment = equals(usedImported, trimmedIds)
|
|
? ""
|
|
: `${Template.toNormalComment(propertyAccess(trimmedIds))} `;
|
|
const access = `${comment}${propertyAccess(usedImported)}`;
|
|
requireExpr =
|
|
dep.asiSafe === true
|
|
? `(${requireExpr}${access})`
|
|
: `${requireExpr}${access}`;
|
|
}
|
|
}
|
|
source.replace(trimmedRangeStart, trimmedRangeEnd - 1, requireExpr);
|
|
}
|
|
};
|
|
|
|
makeSerializable(
|
|
CommonJsFullRequireDependency,
|
|
"webpack/lib/dependencies/CommonJsFullRequireDependency"
|
|
);
|
|
|
|
module.exports = CommonJsFullRequireDependency;
|