mirror of
https://github.com/mosip/inji-wallet.git
synced 2026-01-09 13:38:01 -05:00
43 lines
853 B
TypeScript
43 lines
853 B
TypeScript
import buildFormatLongFn from '../../../_lib/buildFormatLongFn/index';
|
|
import type { FormatLong } from '../../../types';
|
|
|
|
const dateFormats = {
|
|
full: 'EEEE, MMMM do, y',
|
|
long: 'MMMM do, y',
|
|
medium: 'MMM d, y',
|
|
short: 'MM/dd/yyyy',
|
|
};
|
|
|
|
const timeFormats = {
|
|
full: 'h:mm:ss a zzzz',
|
|
long: 'h:mm:ss a z',
|
|
medium: 'h:mm:ss a',
|
|
short: 'h:mm a',
|
|
};
|
|
|
|
const dateTimeFormats = {
|
|
full: "{{date}} 'at' {{time}}",
|
|
long: "{{date}} 'at' {{time}}",
|
|
medium: '{{date}}, {{time}}',
|
|
short: '{{date}}, {{time}}',
|
|
};
|
|
|
|
const formatLong: FormatLong = {
|
|
date: buildFormatLongFn({
|
|
formats: dateFormats,
|
|
defaultWidth: 'full',
|
|
}),
|
|
|
|
time: buildFormatLongFn({
|
|
formats: timeFormats,
|
|
defaultWidth: 'full',
|
|
}),
|
|
|
|
dateTime: buildFormatLongFn({
|
|
formats: dateTimeFormats,
|
|
defaultWidth: 'full',
|
|
}),
|
|
};
|
|
|
|
export default formatLong;
|