- ✅ 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
64 lines
1.6 KiB
JavaScript
64 lines
1.6 KiB
JavaScript
/**
|
||
* @import {Info, State} from 'mdast-util-to-markdown'
|
||
* @import {ImageReference, Parents} from 'mdast'
|
||
*/
|
||
|
||
imageReference.peek = imageReferencePeek
|
||
|
||
/**
|
||
* @param {ImageReference} node
|
||
* @param {Parents | undefined} _
|
||
* @param {State} state
|
||
* @param {Info} info
|
||
* @returns {string}
|
||
*/
|
||
export function imageReference(node, _, state, info) {
|
||
const type = node.referenceType
|
||
const exit = state.enter('imageReference')
|
||
let subexit = state.enter('label')
|
||
const tracker = state.createTracker(info)
|
||
let value = tracker.move('![')
|
||
const alt = state.safe(node.alt, {
|
||
before: value,
|
||
after: ']',
|
||
...tracker.current()
|
||
})
|
||
value += tracker.move(alt + '][')
|
||
|
||
subexit()
|
||
// Hide the fact that we’re in phrasing, because escapes don’t work.
|
||
const stack = state.stack
|
||
state.stack = []
|
||
subexit = state.enter('reference')
|
||
// Note: for proper tracking, we should reset the output positions when we end
|
||
// up making a `shortcut` reference, because then there is no brace output.
|
||
// Practically, in that case, there is no content, so it doesn’t matter that
|
||
// we’ve tracked one too many characters.
|
||
const reference = state.safe(state.associationId(node), {
|
||
before: value,
|
||
after: ']',
|
||
...tracker.current()
|
||
})
|
||
subexit()
|
||
state.stack = stack
|
||
exit()
|
||
|
||
if (type === 'full' || !alt || alt !== reference) {
|
||
value += tracker.move(reference + ']')
|
||
} else if (type === 'shortcut') {
|
||
// Remove the unwanted `[`.
|
||
value = value.slice(0, -1)
|
||
} else {
|
||
value += tracker.move(']')
|
||
}
|
||
|
||
return value
|
||
}
|
||
|
||
/**
|
||
* @returns {string}
|
||
*/
|
||
function imageReferencePeek() {
|
||
return '!'
|
||
}
|