-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.component.ts
65 lines (51 loc) · 1.14 KB
/
app.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
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
title = 'weather';
showtabs:boolean;
ischecked:boolean;
jsonformdata:any;
searchclick:boolean;
cleardata:boolean;
resultpressed:boolean;
favtab:boolean;
constructor() {
this.jsonformdata={};
this.showtabs=false;
this.favtab=false;
this.ischecked=false;
this.searchclick=false;
this.cleardata=false;
this.resultpressed=false;
}
clearformemit(){
this.showtabs=false;
this.searchclick=false;
this.jsonformdata={};
this.ischecked=false;
this.cleardata=true;
this.favtab=false;
}
displayformdataemit(event){
console.log("form submit emit app root: ",event);
this.jsonformdata=event;
this.favtab=false;
if(event.currLoc==true){
this.ischecked=true;
}
else{
this.ischecked=false;
}
this.showtabs=true;
this.cleardata=false;
this.searchclick=true;
}
resultemit(){
console.log("result emit in app root");
this.resultpressed=true;
}
}