85 lines
1.7 KiB
JavaScript
85 lines
1.7 KiB
JavaScript
"use strict";
|
|
exports.formatRelative = void 0;
|
|
var _index = require("../../../isSameWeek.js");
|
|
|
|
// https://www.unicode.org/cldr/charts/32/summary/sk.html?hide#1308
|
|
const accusativeWeekdays = [
|
|
"nedeľu",
|
|
"pondelok",
|
|
"utorok",
|
|
"stredu",
|
|
"štvrtok",
|
|
"piatok",
|
|
"sobotu",
|
|
];
|
|
|
|
function lastWeek(day) {
|
|
const weekday = accusativeWeekdays[day];
|
|
|
|
switch (day) {
|
|
case 0: /* Sun */
|
|
case 3: /* Wed */
|
|
case 6 /* Sat */:
|
|
return "'minulú " + weekday + " o' p";
|
|
default:
|
|
return "'minulý' eeee 'o' p";
|
|
}
|
|
}
|
|
|
|
function thisWeek(day) {
|
|
const weekday = accusativeWeekdays[day];
|
|
|
|
if (day === 4 /* Thu */) {
|
|
return "'vo' eeee 'o' p";
|
|
} else {
|
|
return "'v " + weekday + " o' p";
|
|
}
|
|
}
|
|
|
|
function nextWeek(day) {
|
|
const weekday = accusativeWeekdays[day];
|
|
|
|
switch (day) {
|
|
case 0: /* Sun */
|
|
case 4: /* Wed */
|
|
case 6 /* Sat */:
|
|
return "'budúcu " + weekday + " o' p";
|
|
default:
|
|
return "'budúci' eeee 'o' p";
|
|
}
|
|
}
|
|
|
|
const formatRelativeLocale = {
|
|
lastWeek: (date, baseDate, options) => {
|
|
const day = date.getDay();
|
|
if ((0, _index.isSameWeek)(date, baseDate, options)) {
|
|
return thisWeek(day);
|
|
} else {
|
|
return lastWeek(day);
|
|
}
|
|
},
|
|
yesterday: "'včera o' p",
|
|
today: "'dnes o' p",
|
|
tomorrow: "'zajtra o' p",
|
|
nextWeek: (date, baseDate, options) => {
|
|
const day = date.getDay();
|
|
if ((0, _index.isSameWeek)(date, baseDate, options)) {
|
|
return thisWeek(day);
|
|
} else {
|
|
return nextWeek(day);
|
|
}
|
|
},
|
|
other: "P",
|
|
};
|
|
|
|
const formatRelative = (token, date, baseDate, options) => {
|
|
const format = formatRelativeLocale[token];
|
|
|
|
if (typeof format === "function") {
|
|
return format(date, baseDate, options);
|
|
}
|
|
|
|
return format;
|
|
};
|
|
exports.formatRelative = formatRelative;
|