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>
130 lines
3.8 KiB
JavaScript
130 lines
3.8 KiB
JavaScript
/*
|
|
MIT License http://www.opensource.org/licenses/mit-license.php
|
|
Author Tobias Koppers @sokra
|
|
*/
|
|
|
|
"use strict";
|
|
|
|
const UnsupportedFeatureWarning = require("../UnsupportedFeatureWarning");
|
|
const ConstDependency = require("../dependencies/ConstDependency");
|
|
const BasicEvaluatedExpression = require("./BasicEvaluatedExpression");
|
|
|
|
/** @typedef {import("estree").Expression} Expression */
|
|
/** @typedef {import("estree").SourceLocation} SourceLocation */
|
|
/** @typedef {import("./JavascriptParser")} JavascriptParser */
|
|
/** @typedef {import("./JavascriptParser").Range} Range */
|
|
/** @typedef {import("./BasicEvaluatedExpression").GetMembers} GetMembers */
|
|
|
|
module.exports.approve = () => true;
|
|
|
|
/**
|
|
* @param {boolean} value the boolean value
|
|
* @returns {(expression: Expression) => BasicEvaluatedExpression} plugin function
|
|
*/
|
|
module.exports.evaluateToBoolean = (value) =>
|
|
function booleanExpression(expr) {
|
|
return new BasicEvaluatedExpression()
|
|
.setBoolean(value)
|
|
.setRange(/** @type {Range} */ (expr.range));
|
|
};
|
|
|
|
/**
|
|
* @param {string} identifier identifier
|
|
* @param {string} rootInfo rootInfo
|
|
* @param {GetMembers} getMembers getMembers
|
|
* @param {boolean | null=} truthy is truthy, null if nullish
|
|
* @returns {(expression: Expression) => BasicEvaluatedExpression} callback
|
|
*/
|
|
module.exports.evaluateToIdentifier = (
|
|
identifier,
|
|
rootInfo,
|
|
getMembers,
|
|
truthy
|
|
) =>
|
|
function identifierExpression(expr) {
|
|
const evaluatedExpression = new BasicEvaluatedExpression()
|
|
.setIdentifier(identifier, rootInfo, getMembers)
|
|
.setSideEffects(false)
|
|
.setRange(/** @type {Range} */ (expr.range));
|
|
switch (truthy) {
|
|
case true:
|
|
evaluatedExpression.setTruthy();
|
|
break;
|
|
case null:
|
|
evaluatedExpression.setNullish(true);
|
|
break;
|
|
case false:
|
|
evaluatedExpression.setFalsy();
|
|
break;
|
|
}
|
|
|
|
return evaluatedExpression;
|
|
};
|
|
|
|
/**
|
|
* @param {number} value the number value
|
|
* @returns {(expression: Expression) => BasicEvaluatedExpression} plugin function
|
|
*/
|
|
module.exports.evaluateToNumber = (value) =>
|
|
function stringExpression(expr) {
|
|
return new BasicEvaluatedExpression()
|
|
.setNumber(value)
|
|
.setRange(/** @type {Range} */ (expr.range));
|
|
};
|
|
|
|
/**
|
|
* @param {string} value the string value
|
|
* @returns {(expression: Expression) => BasicEvaluatedExpression} plugin function
|
|
*/
|
|
module.exports.evaluateToString = (value) =>
|
|
function stringExpression(expr) {
|
|
return new BasicEvaluatedExpression()
|
|
.setString(value)
|
|
.setRange(/** @type {Range} */ (expr.range));
|
|
};
|
|
|
|
/**
|
|
* @param {JavascriptParser} parser the parser
|
|
* @param {string} message the message
|
|
* @returns {(expression: Expression) => boolean | undefined} callback to handle unsupported expression
|
|
*/
|
|
module.exports.expressionIsUnsupported = (parser, message) =>
|
|
function unsupportedExpression(expr) {
|
|
const dep = new ConstDependency(
|
|
"(void 0)",
|
|
/** @type {Range} */ (expr.range),
|
|
null
|
|
);
|
|
dep.loc = /** @type {SourceLocation} */ (expr.loc);
|
|
parser.state.module.addPresentationalDependency(dep);
|
|
if (!parser.state.module) return;
|
|
parser.state.module.addWarning(
|
|
new UnsupportedFeatureWarning(
|
|
message,
|
|
/** @type {SourceLocation} */ (expr.loc)
|
|
)
|
|
);
|
|
return true;
|
|
};
|
|
|
|
module.exports.skipTraversal = () => true;
|
|
|
|
/**
|
|
* @param {JavascriptParser} parser the parser
|
|
* @param {string} value the const value
|
|
* @param {(string[] | null)=} runtimeRequirements runtime requirements
|
|
* @returns {(expression: Expression) => true} plugin function
|
|
*/
|
|
module.exports.toConstantDependency = (parser, value, runtimeRequirements) =>
|
|
function constDependency(expr) {
|
|
const dep = new ConstDependency(
|
|
value,
|
|
/** @type {Range} */
|
|
(expr.range),
|
|
runtimeRequirements
|
|
);
|
|
dep.loc = /** @type {SourceLocation} */ (expr.loc);
|
|
parser.state.module.addPresentationalDependency(dep);
|
|
return true;
|
|
};
|