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>
167 lines
4.4 KiB
JavaScript
Executable File
167 lines
4.4 KiB
JavaScript
Executable File
/*
|
|
MIT License http://www.opensource.org/licenses/mit-license.php
|
|
Author Sergey Melyukov @smelukov
|
|
*/
|
|
|
|
"use strict";
|
|
|
|
const { RawSource } = require("webpack-sources");
|
|
const ConcatenationScope = require("../ConcatenationScope");
|
|
const Generator = require("../Generator");
|
|
const {
|
|
CSS_URL_TYPES,
|
|
JS_AND_CSS_URL_TYPES,
|
|
JS_TYPES,
|
|
NO_TYPES
|
|
} = require("../ModuleSourceTypesConstants");
|
|
const RuntimeGlobals = require("../RuntimeGlobals");
|
|
|
|
/** @typedef {import("webpack-sources").Source} Source */
|
|
/** @typedef {import("../Generator").GenerateContext} GenerateContext */
|
|
/** @typedef {import("../Module").ConcatenationBailoutReasonContext} ConcatenationBailoutReasonContext */
|
|
/** @typedef {import("../Module").SourceTypes} SourceTypes */
|
|
/** @typedef {import("../ModuleGraph")} ModuleGraph */
|
|
/** @typedef {import("../NormalModule")} NormalModule */
|
|
|
|
class AssetSourceGenerator extends Generator {
|
|
/**
|
|
* @param {ModuleGraph} moduleGraph the module graph
|
|
*/
|
|
constructor(moduleGraph) {
|
|
super();
|
|
|
|
this._moduleGraph = moduleGraph;
|
|
}
|
|
|
|
/**
|
|
* @param {NormalModule} module module for which the code should be generated
|
|
* @param {GenerateContext} generateContext context for generate
|
|
* @returns {Source | null} generated code
|
|
*/
|
|
generate(
|
|
module,
|
|
{ type, concatenationScope, getData, runtimeTemplate, runtimeRequirements }
|
|
) {
|
|
const originalSource = module.originalSource();
|
|
const data = getData ? getData() : undefined;
|
|
|
|
switch (type) {
|
|
case "javascript": {
|
|
if (!originalSource) {
|
|
return new RawSource("");
|
|
}
|
|
|
|
const content = originalSource.source();
|
|
const encodedSource =
|
|
typeof content === "string" ? content : content.toString("utf8");
|
|
|
|
let sourceContent;
|
|
if (concatenationScope) {
|
|
concatenationScope.registerNamespaceExport(
|
|
ConcatenationScope.NAMESPACE_OBJECT_EXPORT
|
|
);
|
|
sourceContent = `${runtimeTemplate.renderConst()} ${
|
|
ConcatenationScope.NAMESPACE_OBJECT_EXPORT
|
|
} = ${JSON.stringify(encodedSource)};`;
|
|
} else {
|
|
runtimeRequirements.add(RuntimeGlobals.module);
|
|
sourceContent = `${RuntimeGlobals.module}.exports = ${JSON.stringify(
|
|
encodedSource
|
|
)};`;
|
|
}
|
|
return new RawSource(sourceContent);
|
|
}
|
|
case "css-url": {
|
|
if (!originalSource) {
|
|
return null;
|
|
}
|
|
|
|
const content = originalSource.source();
|
|
const encodedSource =
|
|
typeof content === "string" ? content : content.toString("utf8");
|
|
|
|
if (data) {
|
|
data.set("url", { [type]: encodedSource });
|
|
}
|
|
return null;
|
|
}
|
|
default:
|
|
return null;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param {Error} error the error
|
|
* @param {NormalModule} module module for which the code should be generated
|
|
* @param {GenerateContext} generateContext context for generate
|
|
* @returns {Source | null} generated code
|
|
*/
|
|
generateError(error, module, generateContext) {
|
|
switch (generateContext.type) {
|
|
case "javascript": {
|
|
return new RawSource(
|
|
`throw new Error(${JSON.stringify(error.message)});`
|
|
);
|
|
}
|
|
default:
|
|
return null;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param {NormalModule} module module for which the bailout reason should be determined
|
|
* @param {ConcatenationBailoutReasonContext} context context
|
|
* @returns {string | undefined} reason why this module can't be concatenated, undefined when it can be concatenated
|
|
*/
|
|
getConcatenationBailoutReason(module, context) {
|
|
return undefined;
|
|
}
|
|
|
|
/**
|
|
* @param {NormalModule} module fresh module
|
|
* @returns {SourceTypes} available types (do not mutate)
|
|
*/
|
|
getTypes(module) {
|
|
/** @type {Set<string>} */
|
|
const sourceTypes = new Set();
|
|
const connections = this._moduleGraph.getIncomingConnections(module);
|
|
|
|
for (const connection of connections) {
|
|
if (!connection.originModule) {
|
|
continue;
|
|
}
|
|
|
|
sourceTypes.add(connection.originModule.type.split("/")[0]);
|
|
}
|
|
|
|
if (sourceTypes.size > 0) {
|
|
if (sourceTypes.has("javascript") && sourceTypes.has("css")) {
|
|
return JS_AND_CSS_URL_TYPES;
|
|
} else if (sourceTypes.has("css")) {
|
|
return CSS_URL_TYPES;
|
|
}
|
|
return JS_TYPES;
|
|
}
|
|
|
|
return NO_TYPES;
|
|
}
|
|
|
|
/**
|
|
* @param {NormalModule} module the module
|
|
* @param {string=} type source type
|
|
* @returns {number} estimate size of the module
|
|
*/
|
|
getSize(module, type) {
|
|
const originalSource = module.originalSource();
|
|
|
|
if (!originalSource) {
|
|
return 0;
|
|
}
|
|
|
|
// Example: m.exports="abcd"
|
|
return originalSource.size() + 12;
|
|
}
|
|
}
|
|
|
|
module.exports = AssetSourceGenerator;
|