2022-03-11 00:28:06 -08:00
|
|
|
import { Component, forwardRef, OnInit } from '@angular/core';
|
|
|
|
|
import { NG_VALUE_ACCESSOR } from '@angular/forms';
|
2021-02-24 18:00:26 +01:00
|
|
|
import { SettingsService } from 'src/app/services/settings.service';
|
|
|
|
|
import { AbstractInputComponent } from '../abstract-input';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
|
providers: [{
|
|
|
|
|
provide: NG_VALUE_ACCESSOR,
|
|
|
|
|
useExisting: forwardRef(() => DateComponent),
|
|
|
|
|
multi: true
|
|
|
|
|
}],
|
|
|
|
|
selector: 'app-input-date',
|
|
|
|
|
templateUrl: './date.component.html',
|
|
|
|
|
styleUrls: ['./date.component.scss']
|
|
|
|
|
})
|
|
|
|
|
export class DateComponent extends AbstractInputComponent<string> implements OnInit {
|
|
|
|
|
|
|
|
|
|
constructor(private settings: SettingsService) {
|
|
|
|
|
super()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ngOnInit(): void {
|
|
|
|
|
super.ngOnInit()
|
|
|
|
|
this.placeholder = this.settings.getLocalizedDateInputFormat()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
placeholder: string
|
|
|
|
|
|
2022-03-11 00:11:59 -08:00
|
|
|
// prevent chars other than numbers and separators
|
|
|
|
|
onKeyPress(event: KeyboardEvent) {
|
|
|
|
|
if (!/[0-9,\.\/-]+/.test(event.key)) {
|
2022-03-11 01:03:43 -08:00
|
|
|
event.preventDefault()
|
2022-03-11 00:11:59 -08:00
|
|
|
}
|
|
|
|
|
}
|
2021-02-24 18:00:26 +01:00
|
|
|
}
|