- ✅ 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
58 lines
1.3 KiB
JavaScript
58 lines
1.3 KiB
JavaScript
import {characterEntitiesLegacy} from 'character-entities-legacy'
|
|
import {characterEntitiesHtml4} from 'character-entities-html4'
|
|
import {dangerous} from '../constant/dangerous.js'
|
|
|
|
const own = {}.hasOwnProperty
|
|
|
|
/**
|
|
* `characterEntitiesHtml4` but inverted.
|
|
*
|
|
* @type {Record<string, string>}
|
|
*/
|
|
const characters = {}
|
|
|
|
/** @type {string} */
|
|
let key
|
|
|
|
for (key in characterEntitiesHtml4) {
|
|
if (own.call(characterEntitiesHtml4, key)) {
|
|
characters[characterEntitiesHtml4[key]] = key
|
|
}
|
|
}
|
|
|
|
const notAlphanumericRegex = /[^\dA-Za-z]/
|
|
|
|
/**
|
|
* Configurable ways to encode characters as named references.
|
|
*
|
|
* @param {number} code
|
|
* @param {number} next
|
|
* @param {boolean|undefined} omit
|
|
* @param {boolean|undefined} attribute
|
|
* @returns {string}
|
|
*/
|
|
export function toNamed(code, next, omit, attribute) {
|
|
const character = String.fromCharCode(code)
|
|
|
|
if (own.call(characters, character)) {
|
|
const name = characters[character]
|
|
const value = '&' + name
|
|
|
|
if (
|
|
omit &&
|
|
characterEntitiesLegacy.includes(name) &&
|
|
!dangerous.includes(name) &&
|
|
(!attribute ||
|
|
(next &&
|
|
next !== 61 /* `=` */ &&
|
|
notAlphanumericRegex.test(String.fromCharCode(next))))
|
|
) {
|
|
return value
|
|
}
|
|
|
|
return value + ';'
|
|
}
|
|
|
|
return ''
|
|
}
|