src/providers/calendarNativeDateFormatter.provider.ts
This will use Intl API to do all date formatting. It is the default date formatter used by the calendar.
You will need to include a polyfill for older browsers.
Public monthViewColumnHeader |
monthViewColumnHeader(undefined: DateFormatterParams)
|
The month view header week day labels
Returns:
string
|
Public monthViewDayNumber |
monthViewDayNumber(undefined: DateFormatterParams)
|
The month view cell day number
Returns:
string
|
Public monthViewTitle |
monthViewTitle(undefined: DateFormatterParams)
|
The month view title
Returns:
string
|
Public weekViewColumnHeader |
weekViewColumnHeader(undefined: DateFormatterParams)
|
The week view header week day labels
Returns:
string
|
Public weekViewColumnSubHeader |
weekViewColumnSubHeader(undefined: DateFormatterParams)
|
The week view sub header day and month labels
Returns:
string
|
Public weekViewTitle |
weekViewTitle(undefined: DateFormatterParams)
|
The week view title
Returns:
string
|
Public dayViewHour |
dayViewHour(undefined: DateFormatterParams)
|
The time formatting down the left hand side of the day view
Returns:
string
|
Public dayViewTitle |
dayViewTitle(undefined: DateFormatterParams)
|
The day view title
Returns:
string
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
import { CalendarDateFormatterInterface, DateFormatterParams } from './../interfaces/calendarDateFormatter.interface';
import getISOWeek from 'date-fns/get_iso_week';
/**
* This will use <a href="https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Intl" target="_blank">Intl</a> API to do all date formatting. It is the default date formatter used by the calendar.
*
* You will need to include a <a href="https://github.com/andyearnshaw/Intl.js/">polyfill</a> for older browsers.
*/
export class CalendarNativeDateFormatter implements CalendarDateFormatterInterface {
/**
* The month view header week day labels
*/
public monthViewColumnHeader({date, locale}: DateFormatterParams): string {
return new Intl.DateTimeFormat(locale, {weekday: 'long'}).format(date);
}
/**
* The month view cell day number
*/
public monthViewDayNumber({date, locale}: DateFormatterParams): string {
return new Intl.DateTimeFormat(locale, {day: 'numeric'}).format(date);
}
/**
* The month view title
*/
public monthViewTitle({date, locale}: DateFormatterParams): string {
return new Intl.DateTimeFormat(locale, {year: 'numeric', month: 'long'}).format(date);
}
/**
* The week view header week day labels
*/
public weekViewColumnHeader({date, locale}: DateFormatterParams): string {
return new Intl.DateTimeFormat(locale, {weekday: 'long'}).format(date);
}
/**
* The week view sub header day and month labels
*/
public weekViewColumnSubHeader({date, locale}: DateFormatterParams): string {
return new Intl.DateTimeFormat(locale, {
day: 'numeric',
month: 'short'
}).format(date);
}
/**
* The week view title
*/
public weekViewTitle({date, locale}: DateFormatterParams): string {
const year: string = new Intl.DateTimeFormat(locale, {year: 'numeric'}).format(date);
const weekNumber: number = getISOWeek(date);
return `Week ${weekNumber} of ${year}`;
}
/**
* The time formatting down the left hand side of the day view
*/
public dayViewHour({date, locale}: DateFormatterParams): string {
return new Intl.DateTimeFormat(locale, {hour: 'numeric'}).format(date);
}
/**
* The day view title
*/
public dayViewTitle({date, locale}: DateFormatterParams): string {
return new Intl.DateTimeFormat(locale, {
day: 'numeric',
month: 'long',
year: 'numeric',
weekday: 'long'
}).format(date);
}
}