Newer
Older
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
import { Component, Input, Output, EventEmitter, ChangeDetectionStrategy } from '@angular/core';
import { FormControl, FormGroup } from '@angular/forms';
import { Criterion, DatetimeCriterion } from '../../store/model';
import { MapType } from '@angular/compiler';
@Component({
selector: 'app-datetime',
templateUrl: 'datetime.component.html',
styleUrls: ['time.component.css'],
changeDetection: ChangeDetectionStrategy.OnPush
})
export class DatetimeComponent {
@Input() id: number;
@Input() label: string;
@Input() placeholder: string;
@Input()
set criterion(criterion: Criterion) {
this.getDefault(criterion);
}
@Output() add: EventEmitter<DatetimeCriterion> = new EventEmitter();
date = new FormControl('');
time: Date = null;
isTimeDisabled: boolean;
isValidFields: boolean = false;
datetime: Date = new Date();
addCriterion() {
const fd = new DatetimeCriterion(this.id, this.datetime);
this.add.emit(fd);
}
getDefault(criterion: Criterion): void {
if (!criterion) {
this.date.setValue('');
this.date.enable();
this.time = null;
this.isTimeDisabled = false;
this.isValidFields = false;
} else {
console.log('pas vide');
const c = criterion as DatetimeCriterion;
this.date.setValue(c.value);
this.date.disable();
this.time = c.value;
this.isTimeDisabled = true;
this.isValidFields = true;
}
}
getPlaceholder(): string {
if (!this.placeholder) {
return '';
} else {
return this.placeholder;
}
}
change(): void {
if (!this.time || !this.date.value) {
this.isValidFields = false;
} else {
this.isValidFields = true;
this.datetime.setFullYear(
this.date.value.getFullYear(),
this.date.value.getMonth(),
this.date.value.getDate());
this.datetime.setHours(
this.time.getHours(),
this.time.getMinutes());
}
}
}