40 lines
765 B
JavaScript
40 lines
765 B
JavaScript
|
import { buildFormatLongFn } from "../../_lib/buildFormatLongFn.mjs";
|
||
|
|
||
|
const dateFormats = {
|
||
|
full: "EEEE 'den' d. MMMM y",
|
||
|
long: "d. MMMM y",
|
||
|
medium: "d. MMM y",
|
||
|
short: "dd/MM/y",
|
||
|
};
|
||
|
|
||
|
const timeFormats = {
|
||
|
full: "HH:mm:ss zzzz",
|
||
|
long: "HH:mm:ss z",
|
||
|
medium: "HH:mm:ss",
|
||
|
short: "HH:mm",
|
||
|
};
|
||
|
|
||
|
const dateTimeFormats = {
|
||
|
full: "{{date}} 'kl'. {{time}}",
|
||
|
long: "{{date}} 'kl'. {{time}}",
|
||
|
medium: "{{date}} {{time}}",
|
||
|
short: "{{date}} {{time}}",
|
||
|
};
|
||
|
|
||
|
export const formatLong = {
|
||
|
date: buildFormatLongFn({
|
||
|
formats: dateFormats,
|
||
|
defaultWidth: "full",
|
||
|
}),
|
||
|
|
||
|
time: buildFormatLongFn({
|
||
|
formats: timeFormats,
|
||
|
defaultWidth: "full",
|
||
|
}),
|
||
|
|
||
|
dateTime: buildFormatLongFn({
|
||
|
formats: dateTimeFormats,
|
||
|
defaultWidth: "full",
|
||
|
}),
|
||
|
};
|