snowplow/snowplow-javascript-tracker

View on GitHub
libraries/tracker-core/src/emitter/emitter_event.ts

Summary

Maintainability
B
4 hrs
Test Coverage

Function newEmitterEvent has 50 lines of code (exceeds 25 allowed). Consider refactoring.
Open

export function newEmitterEvent(eventStorePayload: EventStorePayload): EmitterEvent {
  let querystring: string | null = null;
  let postBody: Record<string, unknown> | null = null;
  let byteCountGET: number | null = null;
  let byteCountPOST: number | null = null;
Severity: Minor
Found in libraries/tracker-core/src/emitter/emitter_event.ts - About 2 hrs to fix

    Function newEmitterEvent has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
    Open

    export function newEmitterEvent(eventStorePayload: EventStorePayload): EmitterEvent {
      let querystring: string | null = null;
      let postBody: Record<string, unknown> | null = null;
      let byteCountGET: number | null = null;
      let byteCountPOST: number | null = null;
    Severity: Minor
    Found in libraries/tracker-core/src/emitter/emitter_event.ts - About 1 hr 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 getUTF8Length has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
    Open

    function getUTF8Length(s: string) {
      let len = 0;
      for (let i = 0; i < s.length; i++) {
        const code = s.charCodeAt(i);
        if (code <= 0x7f) {
    Severity: Minor
    Found in libraries/tracker-core/src/emitter/emitter_event.ts - About 45 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 getQuerystring has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
    Open

    function getQuerystring(request: Payload) {
      let lowPriorityKeys: { [key: string]: boolean } = { co: true, cx: true };
    
      let args: string[] = [];
    
    
    Severity: Minor
    Found in libraries/tracker-core/src/emitter/emitter_event.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

    There are no issues that match your filters.

    Category
    Status