mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-18 20:47:54 +00:00
17 lines
564 B
TypeScript
17 lines
564 B
TypeScript
|
|
import { CalendarDateFormatter, DateFormatterParams } from 'angular-calendar';
|
||
|
|
import { formatDate } from '@angular/common';
|
||
|
|
import { Injectable } from '@angular/core';
|
||
|
|
|
||
|
|
@Injectable()
|
||
|
|
export class CustomDateFormatter extends CalendarDateFormatter {
|
||
|
|
// you can override any of the methods defined in the parent class
|
||
|
|
|
||
|
|
public dayViewHour({ date, locale }: DateFormatterParams): string {
|
||
|
|
return formatDate(date, 'HH:mm', locale);
|
||
|
|
}
|
||
|
|
|
||
|
|
public weekViewHour({ date, locale }: DateFormatterParams): string {
|
||
|
|
return this.dayViewHour({ date, locale });
|
||
|
|
}
|
||
|
|
}
|