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>
271 lines
7.9 KiB
JavaScript
271 lines
7.9 KiB
JavaScript
/*
|
|
MIT License http://www.opensource.org/licenses/mit-license.php
|
|
Author Tobias Koppers @sokra
|
|
*/
|
|
|
|
"use strict";
|
|
|
|
const { ConcatSource } = require("webpack-sources");
|
|
const { HotUpdateChunk, RuntimeGlobals } = require("..");
|
|
const Template = require("../Template");
|
|
const {
|
|
createChunkHashHandler,
|
|
getChunkInfo
|
|
} = require("../javascript/ChunkFormatHelpers");
|
|
const { getAllChunks } = require("../javascript/ChunkHelpers");
|
|
const {
|
|
chunkHasJs,
|
|
getChunkFilenameTemplate,
|
|
getCompilationHooks
|
|
} = require("../javascript/JavascriptModulesPlugin");
|
|
const { getUndoPath } = require("../util/identifier");
|
|
|
|
/** @typedef {import("webpack-sources").Source} Source */
|
|
/** @typedef {import("../Chunk")} Chunk */
|
|
/** @typedef {import("../ChunkGraph")} ChunkGraph */
|
|
/** @typedef {import("../Compilation")} Compilation */
|
|
/** @typedef {import("../Compiler")} Compiler */
|
|
/** @typedef {import("../Entrypoint")} Entrypoint */
|
|
|
|
/**
|
|
* @param {Compilation} compilation the compilation instance
|
|
* @param {Chunk} chunk the chunk
|
|
* @param {Chunk} runtimeChunk the runtime chunk
|
|
* @returns {string} the relative path
|
|
*/
|
|
const getRelativePath = (compilation, chunk, runtimeChunk) => {
|
|
const currentOutputName = compilation
|
|
.getPath(
|
|
getChunkFilenameTemplate(runtimeChunk, compilation.outputOptions),
|
|
{
|
|
chunk: runtimeChunk,
|
|
contentHashType: "javascript"
|
|
}
|
|
)
|
|
.replace(/^\/+/g, "")
|
|
.split("/");
|
|
const baseOutputName = [...currentOutputName];
|
|
const chunkOutputName = compilation
|
|
.getPath(getChunkFilenameTemplate(chunk, compilation.outputOptions), {
|
|
chunk,
|
|
contentHashType: "javascript"
|
|
})
|
|
.replace(/^\/+/g, "")
|
|
.split("/");
|
|
|
|
// remove common parts except filename
|
|
while (
|
|
baseOutputName.length > 1 &&
|
|
chunkOutputName.length > 1 &&
|
|
baseOutputName[0] === chunkOutputName[0]
|
|
) {
|
|
baseOutputName.shift();
|
|
chunkOutputName.shift();
|
|
}
|
|
const last = chunkOutputName.join("/");
|
|
// create final path
|
|
return getUndoPath(baseOutputName.join("/"), last, true) + last;
|
|
};
|
|
|
|
/**
|
|
* @param {Compilation} compilation the compilation instance
|
|
* @param {Chunk} chunk the chunk to render the import for
|
|
* @param {string=} namedImport the named import to use for the import
|
|
* @param {Chunk=} runtimeChunk the runtime chunk
|
|
* @returns {string} the import source
|
|
*/
|
|
function renderChunkImport(compilation, chunk, namedImport, runtimeChunk) {
|
|
return `import ${namedImport ? `* as ${namedImport}` : `{ ${RuntimeGlobals.require} }`} from ${JSON.stringify(
|
|
getRelativePath(compilation, chunk, runtimeChunk || chunk)
|
|
)};\n`;
|
|
}
|
|
|
|
/**
|
|
* @param {number} index the index of the chunk
|
|
* @returns {string} the named import to use for the import
|
|
*/
|
|
function getChunkNamedImport(index) {
|
|
return `__webpack_chunk_${index}__`;
|
|
}
|
|
|
|
const PLUGIN_NAME = "ModuleChunkFormatPlugin";
|
|
|
|
class ModuleChunkFormatPlugin {
|
|
/**
|
|
* Apply the plugin
|
|
* @param {Compiler} compiler the compiler instance
|
|
* @returns {void}
|
|
*/
|
|
apply(compiler) {
|
|
compiler.hooks.thisCompilation.tap(PLUGIN_NAME, (compilation) => {
|
|
compilation.hooks.additionalChunkRuntimeRequirements.tap(
|
|
PLUGIN_NAME,
|
|
(chunk, set) => {
|
|
if (chunk.hasRuntime()) return;
|
|
if (compilation.chunkGraph.getNumberOfEntryModules(chunk) > 0) {
|
|
set.add(RuntimeGlobals.require);
|
|
set.add(RuntimeGlobals.externalInstallChunk);
|
|
}
|
|
}
|
|
);
|
|
const hooks = getCompilationHooks(compilation);
|
|
/**
|
|
* @param {Set<Chunk>} chunks the chunks to render
|
|
* @param {ChunkGraph} chunkGraph the chunk graph
|
|
* @param {Chunk=} runtimeChunk the runtime chunk
|
|
* @returns {Source|undefined} the source
|
|
*/
|
|
const withDependentChunks = (chunks, chunkGraph, runtimeChunk) => {
|
|
if (/** @type {Set<Chunk>} */ (chunks).size > 0) {
|
|
const source = new ConcatSource();
|
|
let index = 0;
|
|
|
|
for (const chunk of chunks) {
|
|
index++;
|
|
|
|
if (!chunkHasJs(chunk, chunkGraph)) {
|
|
continue;
|
|
}
|
|
const namedImport = getChunkNamedImport(index);
|
|
source.add(
|
|
renderChunkImport(
|
|
compilation,
|
|
chunk,
|
|
namedImport,
|
|
runtimeChunk || chunk
|
|
)
|
|
);
|
|
source.add(
|
|
`${RuntimeGlobals.externalInstallChunk}(${namedImport});\n`
|
|
);
|
|
}
|
|
return source;
|
|
}
|
|
};
|
|
hooks.renderStartup.tap(
|
|
PLUGIN_NAME,
|
|
(modules, _lastModule, renderContext) => {
|
|
const { chunk, chunkGraph } = renderContext;
|
|
if (
|
|
chunkGraph.getNumberOfEntryModules(chunk) > 0 &&
|
|
chunk.hasRuntime()
|
|
) {
|
|
const entryDependentChunks =
|
|
chunkGraph.getChunkEntryDependentChunksIterable(chunk);
|
|
const sourceWithDependentChunks = withDependentChunks(
|
|
/** @type {Set<Chunk>} */ (entryDependentChunks),
|
|
chunkGraph,
|
|
chunk
|
|
);
|
|
if (!sourceWithDependentChunks) {
|
|
return modules;
|
|
}
|
|
if (modules.size() === 0) {
|
|
return sourceWithDependentChunks;
|
|
}
|
|
const source = new ConcatSource();
|
|
source.add(sourceWithDependentChunks);
|
|
source.add("\n");
|
|
source.add(modules);
|
|
return source;
|
|
}
|
|
return modules;
|
|
}
|
|
);
|
|
hooks.renderChunk.tap(PLUGIN_NAME, (modules, renderContext) => {
|
|
const { chunk, chunkGraph, runtimeTemplate } = renderContext;
|
|
const hotUpdateChunk = chunk instanceof HotUpdateChunk ? chunk : null;
|
|
const source = new ConcatSource();
|
|
source.add(
|
|
`export const ${RuntimeGlobals.esmId} = ${JSON.stringify(chunk.id)};\n`
|
|
);
|
|
source.add(
|
|
`export const ${RuntimeGlobals.esmIds} = ${JSON.stringify(chunk.ids)};\n`
|
|
);
|
|
source.add(`export const ${RuntimeGlobals.esmModules} = `);
|
|
source.add(modules);
|
|
source.add(";\n");
|
|
const runtimeModules = chunkGraph.getChunkRuntimeModulesInOrder(chunk);
|
|
if (runtimeModules.length > 0) {
|
|
source.add(`export const ${RuntimeGlobals.esmRuntime} =\n`);
|
|
source.add(
|
|
Template.renderChunkRuntimeModules(runtimeModules, renderContext)
|
|
);
|
|
}
|
|
if (hotUpdateChunk) {
|
|
return source;
|
|
}
|
|
const { entries, runtimeChunk } = getChunkInfo(chunk, chunkGraph);
|
|
if (runtimeChunk) {
|
|
const entrySource = new ConcatSource();
|
|
entrySource.add(source);
|
|
entrySource.add(";\n\n// load runtime\n");
|
|
entrySource.add(
|
|
renderChunkImport(compilation, runtimeChunk, "", chunk)
|
|
);
|
|
const startupSource = new ConcatSource();
|
|
startupSource.add(
|
|
`var __webpack_exec__ = ${runtimeTemplate.returningFunction(
|
|
`${RuntimeGlobals.require}(${RuntimeGlobals.entryModuleId} = moduleId)`,
|
|
"moduleId"
|
|
)}\n`
|
|
);
|
|
|
|
const loadedChunks = new Set();
|
|
for (let i = 0; i < entries.length; i++) {
|
|
const [module, entrypoint] = entries[i];
|
|
if (!chunkGraph.getModuleSourceTypes(module).has("javascript")) {
|
|
continue;
|
|
}
|
|
const final = i + 1 === entries.length;
|
|
const moduleId = chunkGraph.getModuleId(module);
|
|
const chunks = getAllChunks(
|
|
/** @type {Entrypoint} */ (entrypoint),
|
|
/** @type {Chunk} */ (runtimeChunk),
|
|
undefined
|
|
);
|
|
const processChunks = new Set();
|
|
for (const _chunk of chunks) {
|
|
if (loadedChunks.has(_chunk)) {
|
|
continue;
|
|
}
|
|
loadedChunks.add(_chunk);
|
|
processChunks.add(_chunk);
|
|
}
|
|
const sourceWithDependentChunks = withDependentChunks(
|
|
processChunks,
|
|
chunkGraph,
|
|
chunk
|
|
);
|
|
if (sourceWithDependentChunks) {
|
|
startupSource.add("\n");
|
|
startupSource.add(sourceWithDependentChunks);
|
|
}
|
|
startupSource.add(
|
|
`${
|
|
final ? `var ${RuntimeGlobals.exports} = ` : ""
|
|
}__webpack_exec__(${JSON.stringify(moduleId)});\n`
|
|
);
|
|
}
|
|
|
|
entrySource.add(
|
|
hooks.renderStartup.call(
|
|
startupSource,
|
|
entries[entries.length - 1][0],
|
|
{
|
|
...renderContext,
|
|
inlined: false
|
|
}
|
|
)
|
|
);
|
|
return entrySource;
|
|
}
|
|
return source;
|
|
});
|
|
hooks.chunkHash.tap(PLUGIN_NAME, createChunkHashHandler(PLUGIN_NAME));
|
|
});
|
|
}
|
|
}
|
|
|
|
module.exports = ModuleChunkFormatPlugin;
|