Passed
Pull Request — master (#188)
by Mathieu
02:03
created

GetTasksQueryHandler.execute   A

Complexity

Conditions 2

Size

Total Lines 10
Code Lines 9

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 2
eloc 9
dl 0
loc 10
rs 9.95
c 0
b 0
f 0
1
import {Inject} from '@nestjs/common';
2
import {QueryHandler} from '@nestjs/cqrs';
3
import {GetTasksQuery} from './GetTasksQuery';
4
import {ITaskRepository} from 'src/Domain/Task/Repository/ITaskRepository';
5
import {TaskView} from '../View/TaskView';
6
import {Pagination} from 'src/Application/Common/Pagination';
7
8
@QueryHandler(GetTasksQuery)
9
export class GetTasksQueryHandler {
10
  constructor(
11
    @Inject('ITaskRepository')
12
    private readonly taskRepository: ITaskRepository
13
  ) {}
14
15
  public async execute(query: GetTasksQuery): Promise<Pagination<TaskView>> {
16
    const taskViews: TaskView[] = [];
17
    const [tasks, total] = await this.taskRepository.findTasks(query.page);
18
19
    for (const task of tasks) {
20
      taskViews.push(new TaskView(task.getId(), task.getName()));
21
    }
22
23
    return new Pagination<TaskView>(taskViews, total);
24
  }
25
}
26