Rocky_Mountain_Vending/.pnpm-store/v10/files/1d/a5764039f8d4332fd50f4a5b0f695dc8eefb8f8e37d8cb1d894f2576a214ae24aa6ca987161167e578186170f8420a05ffde8ba1a3831a05f138e440210e63
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

88 lines
1.9 KiB
Text

import { isSameWeek } from "../../../isSameWeek.js";
const accusativeWeekdays = [
"воскресенье",
"понедельник",
"вторник",
"среду",
"четверг",
"пятницу",
"субботу",
];
function lastWeek(day) {
const weekday = accusativeWeekdays[day];
switch (day) {
case 0:
return "'в прошлое " + weekday + " в' p";
case 1:
case 2:
case 4:
return "'в прошлый " + weekday + " в' p";
case 3:
case 5:
case 6:
return "'в прошлую " + weekday + " в' p";
}
}
function thisWeek(day) {
const weekday = accusativeWeekdays[day];
if (day === 2 /* Tue */) {
return "'во " + weekday + " в' p";
} else {
return "'в " + weekday + " в' p";
}
}
function nextWeek(day) {
const weekday = accusativeWeekdays[day];
switch (day) {
case 0:
return "'в следующее " + weekday + " в' p";
case 1:
case 2:
case 4:
return "'в следующий " + weekday + " в' p";
case 3:
case 5:
case 6:
return "'в следующую " + weekday + " в' p";
}
}
const formatRelativeLocale = {
lastWeek: (date, baseDate, options) => {
const day = date.getDay();
if (isSameWeek(date, baseDate, options)) {
return thisWeek(day);
} else {
return lastWeek(day);
}
},
yesterday: "'вчера в' p",
today: "'сегодня в' p",
tomorrow: "'завтра в' p",
nextWeek: (date, baseDate, options) => {
const day = date.getDay();
if (isSameWeek(date, baseDate, options)) {
return thisWeek(day);
} else {
return nextWeek(day);
}
},
other: "P",
};
export const formatRelative = (token, date, baseDate, options) => {
const format = formatRelativeLocale[token];
if (typeof format === "function") {
return format(date, baseDate, options);
}
return format;
};