src/app/core/export/query.service.ts
File query.service.ts
has 320 lines of code (exceeds 250 allowed). Consider refactoring. Open
Open
import { Injectable } from "@angular/core";
import { Entity, EntityConstructor } from "../entity/model/entity";
import { Note } from "../../child-dev-project/notes/model/note";
import { EventNote } from "../../child-dev-project/attendance/model/event-note";
import { EntityMapperService } from "../entity/entity-mapper/entity-mapper.service";
QueryService
has 21 functions (exceeds 20 allowed). Consider refactoring. Open
Open
@Injectable({
providedIn: "root",
})
export class QueryService {
private entities: { [type: string]: { [id: string]: Entity } } = {};
Function getAttendanceReport
has 27 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
private getAttendanceReport(
attendances: AttendanceInfo[],
): AttendanceReport[] {
const participantMap: { [key in string]: AttendanceReport } = {};
attendances.forEach((attendance) => {
Function getAttendanceArray
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
Open
private getAttendanceArray(
events: Note[],
includeSchool = false,
): AttendanceInfo[] {
const attendances: AttendanceInfo[] = [];
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"