- ✅ Ticket 1.1: Estructura Clean Architecture en backend - ✅ Ticket 1.2: Schemas Zod compartidos - ✅ Ticket 1.3: Refactorización drugs.ts (1362 → 8 archivos modulares) - ✅ Ticket 1.4: Refactorización procedures.ts (3583 → 6 archivos modulares) - ✅ Ticket 1.5: Eliminación de duplicidades (~50 líneas) Cambios principales: - Creada estructura Clean Architecture en backend/src/ - Schemas Zod compartidos en backend/src/shared/schemas/ - Refactorización modular de drugs y procedures - Utilidades genéricas en src/utils/ (filter, validation) - Eliminados scripts obsoletos y documentación antigua - Corregidos errores: QueryClient, import test-error-handling - Build verificado y funcionando correctamente
72 lines
1.6 KiB
JavaScript
72 lines
1.6 KiB
JavaScript
/**
|
|
* @fileoverview Defines a storage for rules.
|
|
* @author Nicholas C. Zakas
|
|
* @author aladdin-add
|
|
*/
|
|
|
|
"use strict";
|
|
|
|
//------------------------------------------------------------------------------
|
|
// Requirements
|
|
//------------------------------------------------------------------------------
|
|
|
|
const builtInRules = require("../rules");
|
|
|
|
//------------------------------------------------------------------------------
|
|
// Typedefs
|
|
//------------------------------------------------------------------------------
|
|
|
|
/** @typedef {import("../types").Rule.RuleModule} Rule */
|
|
|
|
//------------------------------------------------------------------------------
|
|
// Public Interface
|
|
//------------------------------------------------------------------------------
|
|
|
|
/**
|
|
* A storage for rules.
|
|
*/
|
|
class Rules {
|
|
constructor() {
|
|
this._rules = Object.create(null);
|
|
}
|
|
|
|
/**
|
|
* Registers a rule module for rule id in storage.
|
|
* @param {string} ruleId Rule id (file name).
|
|
* @param {Rule} rule Rule object.
|
|
* @returns {void}
|
|
*/
|
|
define(ruleId, rule) {
|
|
this._rules[ruleId] = rule;
|
|
}
|
|
|
|
/**
|
|
* Access rule handler by id (file name).
|
|
* @param {string} ruleId Rule id (file name).
|
|
* @returns {Rule} Rule object.
|
|
*/
|
|
get(ruleId) {
|
|
if (typeof this._rules[ruleId] === "string") {
|
|
this.define(ruleId, require(this._rules[ruleId]));
|
|
}
|
|
if (this._rules[ruleId]) {
|
|
return this._rules[ruleId];
|
|
}
|
|
if (builtInRules.has(ruleId)) {
|
|
return builtInRules.get(ruleId);
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
*[Symbol.iterator]() {
|
|
yield* builtInRules;
|
|
|
|
for (const ruleId of Object.keys(this._rules)) {
|
|
yield [ruleId, this.get(ruleId)];
|
|
}
|
|
}
|
|
}
|
|
|
|
module.exports = Rules;
|