40 lines
763 B
JavaScript
40 lines
763 B
JavaScript
|
import { buildFormatLongFn } from "../../_lib/buildFormatLongFn.mjs";
|
||
|
|
||
|
const dateFormats = {
|
||
|
full: "EEEE, d MMMM yyyy",
|
||
|
long: "d MMMM yyyy",
|
||
|
medium: "d MMM yyyy",
|
||
|
short: "d/M/yyyy",
|
||
|
};
|
||
|
|
||
|
const timeFormats = {
|
||
|
full: "HH.mm.ss",
|
||
|
long: "HH.mm.ss",
|
||
|
medium: "HH.mm",
|
||
|
short: "HH.mm",
|
||
|
};
|
||
|
|
||
|
const dateTimeFormats = {
|
||
|
full: "{{date}} 'pukul' {{time}}",
|
||
|
long: "{{date}} 'pukul' {{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",
|
||
|
}),
|
||
|
};
|