Created
January 17, 2017 13:36
-
-
Save nrobinaubertin/61ff1c3db355c74f4e56f485b566ab22 to your computer and use it in GitHub Desktop.
Exemple of ngb-date-parser-formatter implementation (ng-bootstrap)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { NgbDatepickerConfig, NgbDateParserFormatter } from '@ng-bootstrap/ng-bootstrap'; | |
import { NgbDateFRParserFormatter } from "./ngb-date-fr-parser-formatter" | |
@Component({ | |
providers: [{provide: NgbDateParserFormatter, useClass: NgbDateFRParserFormatter}] | |
}) | |
export class AppComponent {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Injectable } from "@angular/core"; | |
import { NgbDateParserFormatter, NgbDateStruct } from "@ng-bootstrap/ng-bootstrap"; | |
function padNumber(value: number) { | |
if (isNumber(value)) { | |
return `0${value}`.slice(-2); | |
} else { | |
return ""; | |
} | |
} | |
function isNumber(value: any): boolean { | |
return !isNaN(toInteger(value)); | |
} | |
function toInteger(value: any): number { | |
return parseInt(`${value}`, 10); | |
} | |
@Injectable() | |
export class NgbDateFRParserFormatter extends NgbDateParserFormatter { | |
parse(value: string): NgbDateStruct { | |
if (value) { | |
const dateParts = value.trim().split('/'); | |
if (dateParts.length === 1 && isNumber(dateParts[0])) { | |
return {year: toInteger(dateParts[0]), month: null, day: null}; | |
} else if (dateParts.length === 2 && isNumber(dateParts[0]) && isNumber(dateParts[1])) { | |
return {year: toInteger(dateParts[1]), month: toInteger(dateParts[0]), day: null}; | |
} else if (dateParts.length === 3 && isNumber(dateParts[0]) && isNumber(dateParts[1]) && isNumber(dateParts[2])) { | |
return {year: toInteger(dateParts[2]), month: toInteger(dateParts[1]), day: toInteger(dateParts[0])}; | |
} | |
} | |
return null; | |
} | |
format(date: NgbDateStruct): string { | |
let stringDate: string = ""; | |
if(date) { | |
stringDate += isNumber(date.day) ? padNumber(date.day) + "/" : ""; | |
stringDate += isNumber(date.month) ? padNumber(date.month) + "/" : ""; | |
stringDate += date.year; | |
} | |
return stringDate; | |
} | |
} |
waoo!!! its great. thanks a lot.....
Thanks a lot
Thank you so much!!!
Thank you so much. It worked like a charm
Thank you so much..
I'm getting this error: Uncaught TypeError: Class constructor NgbDateParserFormatter cannot be invoked without 'new'. Anyone here with the same problem ?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Great Its works.. Thanks