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>
121 lines
3.5 KiB
JavaScript
121 lines
3.5 KiB
JavaScript
/*
|
|
MIT License http://www.opensource.org/licenses/mit-license.php
|
|
Author Tobias Koppers @sokra
|
|
*/
|
|
|
|
"use strict";
|
|
|
|
const ChunkGroup = require("./ChunkGroup");
|
|
const SortableSet = require("./util/SortableSet");
|
|
|
|
/** @typedef {import("../declarations/WebpackOptions").EntryDescriptionNormalized} EntryDescription */
|
|
/** @typedef {import("./Chunk")} Chunk */
|
|
|
|
/** @typedef {{ name?: string } & Omit<EntryDescription, "import">} EntryOptions */
|
|
|
|
/**
|
|
* Entrypoint serves as an encapsulation primitive for chunks that are
|
|
* a part of a single ChunkGroup. They represent all bundles that need to be loaded for a
|
|
* single instance of a page. Multi-page application architectures will typically yield multiple Entrypoint objects
|
|
* inside of the compilation, whereas a Single Page App may only contain one with many lazy-loaded chunks.
|
|
*/
|
|
class Entrypoint extends ChunkGroup {
|
|
/**
|
|
* Creates an instance of Entrypoint.
|
|
* @param {EntryOptions | string} entryOptions the options for the entrypoint (or name)
|
|
* @param {boolean=} initial false, when the entrypoint is not initial loaded
|
|
*/
|
|
constructor(entryOptions, initial = true) {
|
|
if (typeof entryOptions === "string") {
|
|
entryOptions = { name: entryOptions };
|
|
}
|
|
super({
|
|
name: entryOptions.name
|
|
});
|
|
this.options = entryOptions;
|
|
/** @type {Chunk=} */
|
|
this._runtimeChunk = undefined;
|
|
/** @type {Chunk=} */
|
|
this._entrypointChunk = undefined;
|
|
/** @type {boolean} */
|
|
this._initial = initial;
|
|
/** @type {SortableSet<Entrypoint>} */
|
|
this._dependOn = new SortableSet();
|
|
}
|
|
|
|
/**
|
|
* @returns {boolean} true, when this chunk group will be loaded on initial page load
|
|
*/
|
|
isInitial() {
|
|
return this._initial;
|
|
}
|
|
|
|
/**
|
|
* Sets the runtimeChunk for an entrypoint.
|
|
* @param {Chunk} chunk the chunk being set as the runtime chunk.
|
|
* @returns {void}
|
|
*/
|
|
setRuntimeChunk(chunk) {
|
|
this._runtimeChunk = chunk;
|
|
}
|
|
|
|
/**
|
|
* Fetches the chunk reference containing the webpack bootstrap code
|
|
* @returns {Chunk | null} returns the runtime chunk or null if there is none
|
|
*/
|
|
getRuntimeChunk() {
|
|
if (this._runtimeChunk) return this._runtimeChunk;
|
|
for (const parent of this.parentsIterable) {
|
|
if (parent instanceof Entrypoint) return parent.getRuntimeChunk();
|
|
}
|
|
return null;
|
|
}
|
|
|
|
/**
|
|
* Sets the chunk with the entrypoint modules for an entrypoint.
|
|
* @param {Chunk} chunk the chunk being set as the entrypoint chunk.
|
|
* @returns {void}
|
|
*/
|
|
setEntrypointChunk(chunk) {
|
|
this._entrypointChunk = chunk;
|
|
}
|
|
|
|
/**
|
|
* Returns the chunk which contains the entrypoint modules
|
|
* (or at least the execution of them)
|
|
* @returns {Chunk} chunk
|
|
*/
|
|
getEntrypointChunk() {
|
|
return /** @type {Chunk} */ (this._entrypointChunk);
|
|
}
|
|
|
|
/**
|
|
* @param {Chunk} oldChunk chunk to be replaced
|
|
* @param {Chunk} newChunk New chunk that will be replaced with
|
|
* @returns {boolean | undefined} returns true if the replacement was successful
|
|
*/
|
|
replaceChunk(oldChunk, newChunk) {
|
|
if (this._runtimeChunk === oldChunk) this._runtimeChunk = newChunk;
|
|
if (this._entrypointChunk === oldChunk) this._entrypointChunk = newChunk;
|
|
return super.replaceChunk(oldChunk, newChunk);
|
|
}
|
|
|
|
/**
|
|
* @param {Entrypoint} entrypoint the entrypoint
|
|
* @returns {void}
|
|
*/
|
|
addDependOn(entrypoint) {
|
|
this._dependOn.add(entrypoint);
|
|
}
|
|
|
|
/**
|
|
* @param {Entrypoint} entrypoint the entrypoint
|
|
* @returns {boolean} true if the entrypoint is in the dependOn set
|
|
*/
|
|
dependOn(entrypoint) {
|
|
return this._dependOn.has(entrypoint);
|
|
}
|
|
}
|
|
|
|
module.exports = Entrypoint;
|