- ✅ 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
54 lines
1.1 KiB
JavaScript
54 lines
1.1 KiB
JavaScript
var reFirstKey = /^[^\[]*/
|
|
var reDigitPath = /^\[(\d+)\]/
|
|
var reNormalPath = /^\[([^\]]+)\]/
|
|
|
|
function parsePath (key) {
|
|
function failure () {
|
|
return [{ type: 'object', key: key, last: true }]
|
|
}
|
|
|
|
var firstKey = reFirstKey.exec(key)[0]
|
|
if (!firstKey) return failure()
|
|
|
|
var len = key.length
|
|
var pos = firstKey.length
|
|
var tail = { type: 'object', key: firstKey }
|
|
var steps = [tail]
|
|
|
|
while (pos < len) {
|
|
var m
|
|
|
|
if (key[pos] === '[' && key[pos + 1] === ']') {
|
|
pos += 2
|
|
tail.append = true
|
|
if (pos !== len) return failure()
|
|
continue
|
|
}
|
|
|
|
m = reDigitPath.exec(key.substring(pos))
|
|
if (m !== null) {
|
|
pos += m[0].length
|
|
tail.nextType = 'array'
|
|
tail = { type: 'array', key: parseInt(m[1], 10) }
|
|
steps.push(tail)
|
|
continue
|
|
}
|
|
|
|
m = reNormalPath.exec(key.substring(pos))
|
|
if (m !== null) {
|
|
pos += m[0].length
|
|
tail.nextType = 'object'
|
|
tail = { type: 'object', key: m[1] }
|
|
steps.push(tail)
|
|
continue
|
|
}
|
|
|
|
return failure()
|
|
}
|
|
|
|
tail.last = true
|
|
return steps
|
|
}
|
|
|
|
module.exports = parsePath
|