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>
27 lines
697 B
Text
27 lines
697 B
Text
"use strict";
|
|
exports.formatRelative = void 0;
|
|
|
|
const formatRelativeLocale = {
|
|
lastWeek: (date) => {
|
|
switch (date.getDay()) {
|
|
case 6: //Σάββατο
|
|
return "'το προηγούμενο' eeee 'στις' p";
|
|
default:
|
|
return "'την προηγούμενη' eeee 'στις' p";
|
|
}
|
|
},
|
|
yesterday: "'χθες στις' p",
|
|
today: "'σήμερα στις' p",
|
|
tomorrow: "'αύριο στις' p",
|
|
nextWeek: "eeee 'στις' p",
|
|
other: "P",
|
|
};
|
|
|
|
const formatRelative = (token, date) => {
|
|
const format = formatRelativeLocale[token];
|
|
|
|
if (typeof format === "function") return format(date);
|
|
|
|
return format;
|
|
};
|
|
exports.formatRelative = formatRelative;
|