- ✅ 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
90 lines
1.8 KiB
JavaScript
90 lines
1.8 KiB
JavaScript
import { isSameWeek } from "../../../isSameWeek.mjs";
|
||
import { toDate } from "../../../toDate.mjs";
|
||
|
||
const accusativeWeekdays = [
|
||
"нядзелю",
|
||
"панядзелак",
|
||
"аўторак",
|
||
"сераду",
|
||
"чацвер",
|
||
"пятніцу",
|
||
"суботу",
|
||
];
|
||
|
||
function lastWeek(day) {
|
||
const weekday = accusativeWeekdays[day];
|
||
|
||
switch (day) {
|
||
case 0:
|
||
case 3:
|
||
case 5:
|
||
case 6:
|
||
return "'у мінулую " + weekday + " а' p";
|
||
case 1:
|
||
case 2:
|
||
case 4:
|
||
return "'у мінулы " + weekday + " а' p";
|
||
}
|
||
}
|
||
|
||
function thisWeek(day) {
|
||
const weekday = accusativeWeekdays[day];
|
||
|
||
return "'у " + weekday + " а' p";
|
||
}
|
||
|
||
function nextWeek(day) {
|
||
const weekday = accusativeWeekdays[day];
|
||
|
||
switch (day) {
|
||
case 0:
|
||
case 3:
|
||
case 5:
|
||
case 6:
|
||
return "'у наступную " + weekday + " а' p";
|
||
case 1:
|
||
case 2:
|
||
case 4:
|
||
return "'у наступны " + weekday + " а' p";
|
||
}
|
||
}
|
||
|
||
const lastWeekFormat = (dirtyDate, baseDate, options) => {
|
||
const date = toDate(dirtyDate);
|
||
const day = date.getDay();
|
||
if (isSameWeek(date, baseDate, options)) {
|
||
return thisWeek(day);
|
||
} else {
|
||
return lastWeek(day);
|
||
}
|
||
};
|
||
|
||
const nextWeekFormat = (dirtyDate, baseDate, options) => {
|
||
const date = toDate(dirtyDate);
|
||
const day = date.getDay();
|
||
if (isSameWeek(date, baseDate, options)) {
|
||
return thisWeek(day);
|
||
} else {
|
||
return nextWeek(day);
|
||
}
|
||
};
|
||
|
||
const formatRelativeLocale = {
|
||
lastWeek: lastWeekFormat,
|
||
yesterday: "'учора а' p",
|
||
today: "'сёння а' p",
|
||
tomorrow: "'заўтра а' p",
|
||
nextWeek: nextWeekFormat,
|
||
other: "P",
|
||
};
|
||
|
||
export const formatRelative = (token, date, baseDate, options) => {
|
||
const format = formatRelativeLocale[token];
|
||
|
||
if (typeof format === "function") {
|
||
return format(date, baseDate, options);
|
||
}
|
||
|
||
return format;
|
||
};
|