- ✅ 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
117 lines
2.5 KiB
JavaScript
117 lines
2.5 KiB
JavaScript
import { setISODay } from "../../../setISODay.mjs";
|
|
import { Parser } from "../Parser.mjs";
|
|
import { mapValue, parseNDigits } from "../utils.mjs";
|
|
|
|
// ISO day of week
|
|
export class ISODayParser extends Parser {
|
|
priority = 90;
|
|
|
|
parse(dateString, token, match) {
|
|
const valueCallback = (value) => {
|
|
if (value === 0) {
|
|
return 7;
|
|
}
|
|
return value;
|
|
};
|
|
|
|
switch (token) {
|
|
// 2
|
|
case "i":
|
|
case "ii": // 02
|
|
return parseNDigits(token.length, dateString);
|
|
// 2nd
|
|
case "io":
|
|
return match.ordinalNumber(dateString, { unit: "day" });
|
|
// Tue
|
|
case "iii":
|
|
return mapValue(
|
|
match.day(dateString, {
|
|
width: "abbreviated",
|
|
context: "formatting",
|
|
}) ||
|
|
match.day(dateString, {
|
|
width: "short",
|
|
context: "formatting",
|
|
}) ||
|
|
match.day(dateString, {
|
|
width: "narrow",
|
|
context: "formatting",
|
|
}),
|
|
valueCallback,
|
|
);
|
|
// T
|
|
case "iiiii":
|
|
return mapValue(
|
|
match.day(dateString, {
|
|
width: "narrow",
|
|
context: "formatting",
|
|
}),
|
|
valueCallback,
|
|
);
|
|
// Tu
|
|
case "iiiiii":
|
|
return mapValue(
|
|
match.day(dateString, {
|
|
width: "short",
|
|
context: "formatting",
|
|
}) ||
|
|
match.day(dateString, {
|
|
width: "narrow",
|
|
context: "formatting",
|
|
}),
|
|
valueCallback,
|
|
);
|
|
// Tuesday
|
|
case "iiii":
|
|
default:
|
|
return mapValue(
|
|
match.day(dateString, {
|
|
width: "wide",
|
|
context: "formatting",
|
|
}) ||
|
|
match.day(dateString, {
|
|
width: "abbreviated",
|
|
context: "formatting",
|
|
}) ||
|
|
match.day(dateString, {
|
|
width: "short",
|
|
context: "formatting",
|
|
}) ||
|
|
match.day(dateString, {
|
|
width: "narrow",
|
|
context: "formatting",
|
|
}),
|
|
valueCallback,
|
|
);
|
|
}
|
|
}
|
|
|
|
validate(_date, value) {
|
|
return value >= 1 && value <= 7;
|
|
}
|
|
|
|
set(date, _flags, value) {
|
|
date = setISODay(date, value);
|
|
date.setHours(0, 0, 0, 0);
|
|
return date;
|
|
}
|
|
|
|
incompatibleTokens = [
|
|
"y",
|
|
"Y",
|
|
"u",
|
|
"q",
|
|
"Q",
|
|
"M",
|
|
"L",
|
|
"w",
|
|
"d",
|
|
"D",
|
|
"E",
|
|
"e",
|
|
"c",
|
|
"t",
|
|
"T",
|
|
];
|
|
}
|