-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathbasics.component.ts
80 lines (74 loc) · 2.29 KB
/
basics.component.ts
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
78
79
80
import { Component, OnDestroy } from '@angular/core';
import { BehaviorSubject, Subscription } from 'rxjs';
import {
RemoteData,
notAsked,
inProgress,
success,
failure
} from 'ngx-remotedata';
import { FormGroup, FormControl } from '@angular/forms';
@Component({
selector: 'app-basics',
templateUrl: './basics.html'
})
export class BasicsComponent implements OnDestroy {
subscriptions: Subscription[] = [];
testData$: BehaviorSubject<RemoteData<string>>;
radiogroupForm: FormGroup;
inProgress1$: BehaviorSubject<RemoteData<string>>;
inProgress2$: BehaviorSubject<RemoteData<string>>;
inProgress3$: BehaviorSubject<RemoteData<string>>;
checkboxForm: FormGroup;
constructor() {
// Single observable source example
const map: Record<string, RemoteData<string>> = {
notAsked: notAsked(),
inProgress: inProgress(),
success: success('Ok!'),
failure: failure('Ouch!')
};
this.testData$ = new BehaviorSubject(notAsked());
const testDataRadioGroup = new FormControl();
this.radiogroupForm = new FormGroup({
testDataRadioGroup
});
this.subscriptions.push(
testDataRadioGroup.valueChanges.subscribe(data => {
this.testData$.next(map[data]);
})
);
// Multiple observable sources example
this.inProgress1$ = new BehaviorSubject(notAsked());
this.inProgress2$ = new BehaviorSubject(notAsked());
this.inProgress3$ = new BehaviorSubject(notAsked());
const check1 = new FormControl();
const check2 = new FormControl();
const check3 = new FormControl();
this.checkboxForm = new FormGroup({
check1,
check2,
check3
});
this.subscriptions.push(
check1.valueChanges.subscribe((checked: boolean) => {
checked
? this.inProgress1$.next(inProgress())
: this.inProgress1$.next(notAsked());
}),
check2.valueChanges.subscribe((checked: boolean) => {
checked
? this.inProgress2$.next(inProgress())
: this.inProgress2$.next(notAsked());
}),
check3.valueChanges.subscribe((checked: boolean) => {
checked
? this.inProgress3$.next(inProgress())
: this.inProgress3$.next(notAsked());
})
);
}
ngOnDestroy() {
this.subscriptions.forEach(sub => sub.unsubscribe());
}
}