integreat-io/integreat-transporter-mongodb

View on GitHub

Showing 32 of 36 total issues

Function prepareFilter has 5 arguments (exceeds 4 allowed). Consider refactoring.
Open

  queryArray: QueryArray = [],
  params: Params = {},
  pageId?: ParsedPageId,
  useIdAsInternalId = false,
  appendOnly = false,
Severity: Minor
Found in src/utils/prepareFilter.ts - About 35 mins to fix

    Function createResponse has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
    Open

    const createResponse = (
      oneOrMoreResponses: ItemResponse | ItemResponse[],
      action: Action,
    ): Response => {
      const responses = ensureArray(oneOrMoreResponses)
    Severity: Minor
    Found in src/setDocs.ts - About 35 mins to fix

    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

    Avoid too many return statements within this function.
    Open

        return createErrorResponse('error', (error as Error).message, operation.id)
    Severity: Major
    Found in src/setDocs.ts - About 30 mins to fix

      Avoid too many return statements within this function.
      Open

        return createResponse(responses, action)
      Severity: Major
      Found in src/setDocs.ts - About 30 mins to fix

        Function createOperation has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

        const createOperation = (action: Action, useIdAsInternalId: boolean) =>
          function createOperation(item: unknown): Operation | OperationError {
            if (!isObjectWithId(item)) {
              return { error: 'Only object data with an id may be sent to MongoDB' }
            }
        Severity: Minor
        Found in src/setDocs.ts - About 25 mins to fix

        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

        Function createOrReuseClient has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

        async function createOrReuseClient(
          Client: typeof MongoClient,
          mongoUri: string,
          options: MongoClientOptions,
          emit: (eventType: string, ...args: unknown[]) => void,
        Severity: Minor
        Found in src/connect.ts - About 25 mins to fix

        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

        Function generatePageId has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

        function generatePageId(
          lastItem: unknown,
          sort?: Record<string, number>,
          aggregation?: AggregationObject[],
        ) {
        Severity: Minor
        Found in src/utils/pageId.ts - About 25 mins to fix

        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

        Function normalizeIdInItem has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

        const normalizeIdInItem = (lookupPaths: string[]) =>
          function normalizeIdInItem(item: unknown) {
            if (!isObject(item)) {
              return item
            }
        Severity: Minor
        Found in src/getDocs.ts - About 25 mins to fix

        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

        Function setDocs has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

        export default async function setDocs(
          action: Action,
          client: MongoClient,
          useIdAsInternalId = false,
        ): Promise<Response> {
        Severity: Minor
        Found in src/setDocs.ts - About 25 mins to fix

        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

        Function generateSortParts has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

        function generateSortParts(
          lastItem: Record<string, unknown>,
          sort?: Record<string, number>,
        ): string {
          if (sort) {
        Severity: Minor
        Found in src/utils/pageId.ts - About 25 mins to fix

        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

        Function isValidValue has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

        const isValidValue = (value: unknown, op: string): boolean =>
          Array.isArray(value)
            ? value.every((value) => isValidValue(value, op))
            : validValueTypes.includes(typeof value) ||
              value instanceof Date ||
        Severity: Minor
        Found in src/utils/prepareFilter.ts - About 25 mins to fix

        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

        Function dearrayIfPossible has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

        export const dearrayIfPossible = <T>(data: T | T[]): T | T[] | undefined =>
          Array.isArray(data)
            ? data.length === 1
              ? data[0]
              : data.length === 0
        Severity: Minor
        Found in src/utils/array.ts - About 25 mins to fix

        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

        Severity
        Category
        Status
        Source
        Language