-
-
Notifications
You must be signed in to change notification settings - Fork 241
Expand file tree
/
Copy pathsecond.component.ts
More file actions
42 lines (38 loc) · 1.52 KB
/
second.component.ts
File metadata and controls
42 lines (38 loc) · 1.52 KB
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
import { Router, ActivatedRoute } from "@angular/router";
import { Component, Inject, OnInit } from "@angular/core";
import { Location } from "@angular/common";
import { RouterExtensions } from "@nativescript/angular/router";
import { HOOKS_LOG, BaseComponent } from "./base.component";
import { BehaviorSubject } from "rxjs";
@Component({
selector: "second-comp",
template: `
<StackLayout>
<Label [automationText]="'second-' + id" [text]="'Second: ' + id"></Label>
<Button [automationText]="'second-navigate-back-' + id" text="Go to first" (tap)="goBack()"></Button>
<Label [automationText]="'hooks-log-' + id" [text]="hooksLog | async"></Label>
<Label [text]="'hooks-log-' + id"></Label>
<Label [automationText]="'router-location-strategy-states-' + id" [text]="routerLocationStrategystates"></Label>
</StackLayout>
`
})
export class SecondComponent extends BaseComponent implements OnInit {
protected name = "second";
public id: string = "";
protected routerLocationStrategystates = "";
constructor(private routerExtensions: RouterExtensions,
private location: Location,
private routeData: ActivatedRoute,
@Inject(HOOKS_LOG) hooksLog: BehaviorSubject<Array<string>>
) {
super(hooksLog);
this.id = routeData.snapshot.params["id"];
}
ngOnInit() {
super.ngOnInit();
this.routerLocationStrategystates = this.routerExtensions.locationStrategy.toString();
}
goBack() {
this.location.back();
}
}