- ✅ 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
50 lines
1.1 KiB
JavaScript
50 lines
1.1 KiB
JavaScript
/**
|
|
* @fileoverview Helpers for severity values (e.g. normalizing different types).
|
|
* @author Bryan Mishkin
|
|
*/
|
|
|
|
"use strict";
|
|
|
|
/**
|
|
* Convert severity value of different types to a string.
|
|
* @param {string|number} severity severity value
|
|
* @throws error if severity is invalid
|
|
* @returns {string} severity string
|
|
*/
|
|
function normalizeSeverityToString(severity) {
|
|
if ([2, "2", "error"].includes(severity)) {
|
|
return "error";
|
|
}
|
|
if ([1, "1", "warn"].includes(severity)) {
|
|
return "warn";
|
|
}
|
|
if ([0, "0", "off"].includes(severity)) {
|
|
return "off";
|
|
}
|
|
throw new Error(`Invalid severity value: ${severity}`);
|
|
}
|
|
|
|
/**
|
|
* Convert severity value of different types to a number.
|
|
* @param {string|number} severity severity value
|
|
* @throws error if severity is invalid
|
|
* @returns {number} severity number
|
|
*/
|
|
function normalizeSeverityToNumber(severity) {
|
|
if ([2, "2", "error"].includes(severity)) {
|
|
return 2;
|
|
}
|
|
if ([1, "1", "warn"].includes(severity)) {
|
|
return 1;
|
|
}
|
|
if ([0, "0", "off"].includes(severity)) {
|
|
return 0;
|
|
}
|
|
throw new Error(`Invalid severity value: ${severity}`);
|
|
}
|
|
|
|
module.exports = {
|
|
normalizeSeverityToString,
|
|
normalizeSeverityToNumber,
|
|
};
|