Всем привет!
Вообщем есть проект, суть такова, когда в левой колонки я выбираю человека то в правой должна появится полная информация о нем!
Реализовал, но чет не пойму чего не работает!
Подскажите может чет не правильно, или как правильно его реализовать!
мой проект на github:
https://github.com/Felino7727/incode7727
частично где вижу проблему!
<div class="wrapper">
<div class="middle">
<div class="container">
<main class="content">
<input id="first_name" class="validate" [(ngModel)]="Search">
<app-people-info
[member_info]="y" *ngFor="let y of fulls "></app-people-info>
</main>
</div>
<aside class="left-sidebar">
<app-list-people
onclick="OnClick(x)"
[member]="x" *ngFor="let x of fulls"
></app-list-people>
</aside>
</div>
</div>
export class AppComponent{
@Input()
public fulls: FullModels[]=[];
public data1: any;
public full:FullModel[]=[];
Search = '';
constructor(private peopleService: PeopleService) {
}
OnClick(a:FullModel){
this.full[0].lastName=a.lastName;
this.full[0].avatar=a.avatar;
this.full[0].company=a.company;
this.full[0].title=a.title;
this.full[0].email=a.email;
this.full[0].phone=a.phone;
this.full[0].street=a.street;
this.full[0].city=a.city;
this.full[0].zipCode=a.zipCode;
this.full[0].country=a.country;
}
ngOnInit() {
this.peopleService.getPeople().subscribe(data => {
this.data1 = data;
for (let i in this.data1) {
this.fulls[i] =
new FullModel(
this.data1[i].general.firstName,
this.data1[i].general.lastName,
this.data1[i].general.avatar,
this.data1[i].job.company,
this.data1[i].job.title,
this.data1[i].contact.email,
this.data1[i].contact.phone,
this.data1[i].address.street,
this.data1[i].address.city,
this.data1[i].address.zipCode,
this.data1[i].address.country
)
;
}
});
}
}