- ✅ 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
35 lines
984 B
JavaScript
35 lines
984 B
JavaScript
let random = async bytes => crypto.getRandomValues(new Uint8Array(bytes))
|
|
let customAlphabet = (alphabet, defaultSize = 21) => {
|
|
let mask = (2 << (Math.log(alphabet.length - 1) / Math.LN2)) - 1
|
|
let step = -~((1.6 * mask * defaultSize) / alphabet.length)
|
|
return async (size = defaultSize) => {
|
|
let id = ''
|
|
while (true) {
|
|
let bytes = crypto.getRandomValues(new Uint8Array(step))
|
|
let i = step | 0
|
|
while (i--) {
|
|
id += alphabet[bytes[i] & mask] || ''
|
|
if (id.length === size) return id
|
|
}
|
|
}
|
|
}
|
|
}
|
|
let nanoid = async (size = 21) => {
|
|
let id = ''
|
|
let bytes = crypto.getRandomValues(new Uint8Array((size |= 0)))
|
|
while (size--) {
|
|
let byte = bytes[size] & 63
|
|
if (byte < 36) {
|
|
id += byte.toString(36)
|
|
} else if (byte < 62) {
|
|
id += (byte - 26).toString(36).toUpperCase()
|
|
} else if (byte < 63) {
|
|
id += '_'
|
|
} else {
|
|
id += '-'
|
|
}
|
|
}
|
|
return id
|
|
}
|
|
export { nanoid, customAlphabet, random }
|