snowplow/snowplow-javascript-tracker

View on GitHub
trackers/javascript-tracker/src/in_queue.ts

Summary

Maintainability
D
3 days
Test Coverage

Function InQueueManager has a Cognitive Complexity of 72 (exceeds 5 allowed). Consider refactoring.
Open

export function InQueueManager(functionName: string, asyncQueue: Array<unknown>): Queue {
  const windowAlias = window,
    documentAlias = document,
    sharedState: SharedState = createSharedState(),
    availableTrackerIds: Array<string> = [],
Severity: Minor
Found in trackers/javascript-tracker/src/in_queue.ts - About 1 day 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 InQueueManager has 200 lines of code (exceeds 25 allowed). Consider refactoring.
Open

export function InQueueManager(functionName: string, asyncQueue: Array<unknown>): Queue {
  const windowAlias = window,
    documentAlias = document,
    sharedState: SharedState = createSharedState(),
    availableTrackerIds: Array<string> = [],
Severity: Major
Found in trackers/javascript-tracker/src/in_queue.ts - About 1 day to fix

    Function addPlugin has 76 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

      function addPlugin(parameterArray: Array<unknown>, trackerIdentifiers: Array<string>) {
        function postScriptHandler(scriptSrc: string) {
          if (Object.prototype.hasOwnProperty.call(pendingPlugins, scriptSrc)) {
            windowAlias.clearTimeout(pendingPlugins[scriptSrc].timeout);
            delete pendingPlugins[scriptSrc];
    Severity: Major
    Found in trackers/javascript-tracker/src/in_queue.ts - About 3 hrs to fix

      Function applyAsyncFunction has 42 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

        function applyAsyncFunction(...args: any[]) {
          // Outer loop in case someone push'es in zarg of arrays
          for (let i = 0; i < args.length; i += 1) {
            let parameterArray = args[i],
              input = Array.prototype.shift.call(parameterArray);
      Severity: Minor
      Found in trackers/javascript-tracker/src/in_queue.ts - About 1 hr to fix

        There are no issues that match your filters.

        Category
        Status