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>
79 lines
1.7 KiB
JavaScript
79 lines
1.7 KiB
JavaScript
/** @typedef {"info" | "warning" | "error"} LogLevel */
|
|
|
|
/** @type {LogLevel} */
|
|
var logLevel = "info";
|
|
|
|
function dummy() {}
|
|
|
|
/**
|
|
* @param {LogLevel} level log level
|
|
* @returns {boolean} true, if should log
|
|
*/
|
|
function shouldLog(level) {
|
|
var shouldLog =
|
|
(logLevel === "info" && level === "info") ||
|
|
(["info", "warning"].indexOf(logLevel) >= 0 && level === "warning") ||
|
|
(["info", "warning", "error"].indexOf(logLevel) >= 0 && level === "error");
|
|
return shouldLog;
|
|
}
|
|
|
|
/**
|
|
* @param {(msg?: string) => void} logFn log function
|
|
* @returns {(level: LogLevel, msg?: string) => void} function that logs when log level is sufficient
|
|
*/
|
|
function logGroup(logFn) {
|
|
return function (level, msg) {
|
|
if (shouldLog(level)) {
|
|
logFn(msg);
|
|
}
|
|
};
|
|
}
|
|
|
|
/**
|
|
* @param {LogLevel} level log level
|
|
* @param {string|Error} msg message
|
|
*/
|
|
module.exports = function (level, msg) {
|
|
if (shouldLog(level)) {
|
|
if (level === "info") {
|
|
console.log(msg);
|
|
} else if (level === "warning") {
|
|
console.warn(msg);
|
|
} else if (level === "error") {
|
|
console.error(msg);
|
|
}
|
|
}
|
|
};
|
|
|
|
/**
|
|
* @param {Error} err error
|
|
* @returns {string} formatted error
|
|
*/
|
|
module.exports.formatError = function (err) {
|
|
var message = err.message;
|
|
var stack = err.stack;
|
|
if (!stack) {
|
|
return message;
|
|
} else if (stack.indexOf(message) < 0) {
|
|
return message + "\n" + stack;
|
|
}
|
|
return stack;
|
|
};
|
|
|
|
var group = console.group || dummy;
|
|
var groupCollapsed = console.groupCollapsed || dummy;
|
|
var groupEnd = console.groupEnd || dummy;
|
|
|
|
module.exports.group = logGroup(group);
|
|
|
|
module.exports.groupCollapsed = logGroup(groupCollapsed);
|
|
|
|
module.exports.groupEnd = logGroup(groupEnd);
|
|
|
|
/**
|
|
* @param {LogLevel} level log level
|
|
*/
|
|
module.exports.setLogLevel = function (level) {
|
|
logLevel = level;
|
|
};
|