apps/nestjs-backend/src/features/import/open-api/import.class.ts
Function genColumns
has a Cognitive Complexity of 24 (exceeds 5 allowed). Consider refactoring. Open
Open
async genColumns() {
const supportTypes = Importer.SUPPORTEDTYPE;
const parseResult = await this.parse();
const { fileName, type } = this.config;
const result: IAnalyzeVo['worksheets'] = {};
- 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"
Further reading
File import.class.ts
has 340 lines of code (exceeds 300 allowed). Consider refactoring. Open
Open
import { existsSync } from 'fs';
import { join } from 'path';
import { BadRequestException } from '@nestjs/common';
import { getUniqName, FieldType } from '@teable/core';
import type { IValidateTypes, IAnalyzeVo } from '@teable/openapi';
Function parse
has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring. Open
Open
async parse(
options?: { skipFirstNLines: number; key: string },
chunk?: (chunk: Record<string, unknown[][]>) => Promise<void>,
onFinished?: () => void,
onError?: (errorMsg: string) => void
- 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"
Further reading
Consider simplifying this complex logical expression. Open
Open
if (options && chunkCb) {
return new Promise((resolve, reject) => {
let isFirst = true;
let recordBuffer: unknown[][] = [];
let isAbort = false;