- ✅ 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
29 lines
620 B
JavaScript
29 lines
620 B
JavaScript
"use strict";
|
|
exports.formatRelative = void 0;
|
|
|
|
const formatRelativeLocale = {
|
|
lastWeek: "'joan den' eeee, LT",
|
|
yesterday: "'atzo,' p",
|
|
today: "'gaur,' p",
|
|
tomorrow: "'bihar,' p",
|
|
nextWeek: "eeee, p",
|
|
other: "P",
|
|
};
|
|
|
|
const formatRelativeLocalePlural = {
|
|
lastWeek: "'joan den' eeee, p",
|
|
yesterday: "'atzo,' p",
|
|
today: "'gaur,' p",
|
|
tomorrow: "'bihar,' p",
|
|
nextWeek: "eeee, p",
|
|
other: "P",
|
|
};
|
|
|
|
const formatRelative = (token, date) => {
|
|
if (date.getHours() !== 1) {
|
|
return formatRelativeLocalePlural[token];
|
|
}
|
|
return formatRelativeLocale[token];
|
|
};
|
|
exports.formatRelative = formatRelative;
|