airbnb/superset

View on GitHub
superset-websocket/src/index.ts

Summary

Maintainability
C
7 hrs
Test Coverage

File index.ts has 348 lines of code (exceeds 250 allowed). Consider refactoring.
Open

/**
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
Severity: Minor
Found in superset-websocket/src/index.ts - About 4 hrs to fix

    Function subscribeToGlobalStream has 26 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    export const subscribeToGlobalStream = async (
      stream: string,
      listener: ListenerFunction,
    ) => {
      /*eslint no-constant-condition: ["error", { "checkLoops": false }]*/
    Severity: Minor
    Found in superset-websocket/src/index.ts - About 1 hr to fix

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

      export const subscribeToGlobalStream = async (
        stream: string,
        listener: ListenerFunction,
      ) => {
        /*eslint no-constant-condition: ["error", { "checkLoops": false }]*/
      Severity: Minor
      Found in superset-websocket/src/index.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

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

      export const checkSockets = () => {
        logger.debug(`channel count: ${Object.keys(channels).length}`);
        logger.debug(`socket count: ${Object.keys(sockets).length}`);
        for (const socketId in sockets) {
          const socketInstance = sockets[socketId];
      Severity: Minor
      Found in superset-websocket/src/index.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

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

      export const cleanChannel = (channel: string) => {
        const activeSockets: string[] =
          channels[channel]?.sockets.filter(socketId => {
            const socketInstance = sockets[socketId];
            if (!socketInstance) return false;
      Severity: Minor
      Found in superset-websocket/src/index.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

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

      export const wsConnection = (ws: WebSocket, request: http.IncomingMessage) => {
        const channel: string = readChannelId(request);
        const socketInstance: SocketInstance = { ws, channel, pongTs: Date.now() };
      
        // add this ws instance to the internal registry
      Severity: Minor
      Found in superset-websocket/src/index.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

      There are no issues that match your filters.

      Category
      Status