Rocky_Mountain_Vending/.pnpm-store/v10/files/b0/e6a8301b36ce97234f3155f5ecd13ae3deaca89c8628edfdf96c9ebb390135ea73b4d81cc3d41bc25ca6ed6c05cce1c798632e771327b90ca14b19ce8223ab
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

92 lines
1.8 KiB
Text

import { isSameWeek } from "../../../isSameWeek.js";
const weekdays = [
"недела",
"понеделник",
"вторник",
"среда",
"четврток",
"петок",
"сабота",
];
function lastWeek(day) {
const weekday = weekdays[day];
switch (day) {
case 0:
case 3:
case 6:
return "'минатата " + weekday + " во' p";
case 1:
case 2:
case 4:
case 5:
return "'минатиот " + weekday + " во' p";
}
}
function thisWeek(day) {
const weekday = weekdays[day];
switch (day) {
case 0:
case 3:
case 6:
return "'ова " + weekday + " вo' p";
case 1:
case 2:
case 4:
case 5:
return "'овој " + weekday + " вo' p";
}
}
function nextWeek(day) {
const weekday = weekdays[day];
switch (day) {
case 0:
case 3:
case 6:
return "'следната " + weekday + " вo' p";
case 1:
case 2:
case 4:
case 5:
return "'следниот " + weekday + " вo' 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;
};