нужно найти проекты в лругом Observable
this.chatService.getProfileTasks(this.dateFrom, this.dateTo, this.authService.currentUserId()).pipe(
switchMap((tasks: Task[]) => {
this.tasks = tasks;
for (const task in this.tasks) {
this.projectService.getProject(this.tasks[task].projectId);
}
})
).subscribe(result => {
console.log({result});
});
this.tasks = tasks; const tasks$ = tasks.map((task) => this.projectService.getProject(this.tasks[task].projectId)); return forkJoin(tasks$);
Обсуждают сегодня