spritejs/sprite-core

View on GitHub

Showing 86 of 120 total issues

Function attr has a Cognitive Complexity of 169 (exceeds 25 allowed). Consider refactoring.
Open

export function attr(options) {
  let cache = false,
    reflow = false,
    relayout = false,
    quiet = false,
Severity: Minor
Found in src/utils/decorators.js - About 3 days 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

File basesprite.js has 735 lines of code (exceeds 350 allowed). Consider refactoring.
Open

import {Matrix, Vector} from 'sprite-math';
import {Timeline} from 'sprite-animator';
import {flow, absolute, rectVertices, deprecate, drawRadiusBox, findColor, cacheContextPool} from '../utils';
import BaseAttr from './baseattr';
import BaseNode from './basenode';
Severity: Major
Found in src/core/basesprite.js - About 1 day to fix

    Function dispatchEvent has a Cognitive Complexity of 81 (exceeds 25 allowed). Consider refactoring.
    Open

      dispatchEvent(type, evt, collisionState = false, swallow = false, useCapturePhase = null) { // eslint-disable-line complexity
        const handlers = this.getEventHandlers(type);
        if(swallow && handlers.length === 0) {
          return;
        }
    Severity: Minor
    Found in src/core/layer.js - 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

    File stylesheet.js has 612 lines of code (exceeds 350 allowed). Consider refactoring.
    Open

    import {isMatched, compile} from '../dom/selector';
    import {parseFont, sizeToPixel, relatedAttributes} from '../../utils';
    
    const cssWhat = require('css-what');
    
    
    Severity: Major
    Found in src/modules/css/stylesheet.js - About 1 day to fix

      Function parseRuleAttrs has 198 lines of code (exceeds 50 allowed). Consider refactoring.
      Open

      function parseRuleAttrs(rule) { // eslint-disable-line complexity
        let styleAttrs;
        const isStyleMap = !!rule.styleMap;
        if(!isStyleMap) {
          if(!rule.style) return;
      Severity: Major
      Found in src/modules/css/stylesheet.js - About 6 hrs to fix

        Function attr has 181 lines of code (exceeds 50 allowed). Consider refactoring.
        Open

        export function attr(options) {
          let cache = false,
            reflow = false,
            relayout = false,
            quiet = false,
        Severity: Major
        Found in src/utils/decorators.js - About 6 hrs to fix

          Function decorator has 160 lines of code (exceeds 50 allowed). Consider refactoring.
          Open

            const decorator = function (elementDescriptor) {
              if(arguments.length === 3) {
                elementDescriptor = polyfillLegacy.apply(this, arguments);
              }
              const {key, kind} = elementDescriptor;
          Severity: Major
          Found in src/utils/decorators.js - About 5 hrs to fix

            File decorators.js has 459 lines of code (exceeds 350 allowed). Consider refactoring.
            Open

            import {notice} from './utils';
            import {attributeNames, relatedAttributes} from './store';
            
            const _attrAbsolute = Symbol('attrAbsolute');
            
            
            Severity: Minor
            Found in src/utils/decorators.js - About 4 hrs to fix

              File basenode.js has 447 lines of code (exceeds 350 allowed). Consider refactoring.
              Open

              // import stylesheet from './stylesheet';
              import NodeAttr from './attr';
              import {inheritAttributes, parseFont} from '../utils';
              
              function createAttribute(attr, key) {
              Severity: Minor
              Found in src/core/basenode.js - About 4 hrs to fix

                Function dispatchEvent has a Cognitive Complexity of 49 (exceeds 25 allowed). Consider refactoring.
                Open

                  dispatchEvent(type, evt, collisionState = false, swallow = false, useCapturePhase = null) {
                    const handlers = this.getEventHandlers(type);
                    if(swallow && handlers.length === 0) {
                      return;
                    }
                Severity: Minor
                Found in src/core/group.js - About 4 hrs 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

                File node.js has 431 lines of code (exceeds 350 allowed). Consider refactoring.
                Open

                import BaseSprite from '../../core/basesprite';
                
                function doActions(ret, target, act) {
                  const actions = target.children.map(c => c[act]()).filter(d => d.promise);
                  if(ret.promise) {
                Severity: Minor
                Found in src/modules/actions/node.js - About 3 hrs to fix

                  Function exit has 111 lines of code (exceeds 50 allowed). Consider refactoring.
                  Open

                    exit(toState, onbyone = false) {
                      const _exit = () => {
                        const states = this.attr('states');
                        let ret;
                        const afterEnter = states.afterEnter || {};
                  Severity: Major
                  Found in src/modules/actions/node.js - About 3 hrs to fix

                    Function resolveToken has a Cognitive Complexity of 43 (exceeds 25 allowed). Consider refactoring.
                    Open

                    function resolveToken(token) { // eslint-disable-line complexity
                      let ret = '',
                        priority = 0,
                        valid = true;
                    
                    
                    Severity: Minor
                    Found in src/modules/css/stylesheet.js - About 3 hrs 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 _exit has 91 lines of code (exceeds 50 allowed). Consider refactoring.
                    Open

                        const _exit = () => {
                          const states = this.attr('states');
                          let ret;
                          const afterEnter = states.afterEnter || {};
                          if(states && (states.beforeExit || states.afterExit)) {
                    Severity: Major
                    Found in src/modules/actions/node.js - About 2 hrs to fix

                      Function resolveToken has 86 lines of code (exceeds 50 allowed). Consider refactoring.
                      Open

                      function resolveToken(token) { // eslint-disable-line complexity
                        let ret = '',
                          priority = 0,
                          valid = true;
                      
                      
                      Severity: Major
                      Found in src/modules/css/stylesheet.js - About 2 hrs to fix

                        Function exit has a Cognitive Complexity of 38 (exceeds 25 allowed). Consider refactoring.
                        Open

                          exit(toState, onbyone = false) {
                            const _exit = () => {
                              const states = this.attr('states');
                              let ret;
                              const afterEnter = states.afterEnter || {};
                        Severity: Minor
                        Found in src/modules/actions/node.js - About 2 hrs 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

                        Consider simplifying this complex logical expression.
                        Open

                          if('fontSize' in attrs
                            || 'fontFamily' in attrs
                            || 'fontStyle' in attrs
                            || 'fontVariant' in attrs
                            || 'fontWeight' in attrs) {
                        Severity: Critical
                        Found in src/modules/css/stylesheet.js - About 2 hrs to fix

                          Function dispatchEvent has 83 lines of code (exceeds 50 allowed). Consider refactoring.
                          Open

                            dispatchEvent(type, evt, collisionState = false, swallow = false, useCapturePhase = null) { // eslint-disable-line complexity
                              const handlers = this.getEventHandlers(type);
                              if(swallow && handlers.length === 0) {
                                return;
                              }
                          Severity: Major
                          Found in src/core/layer.js - About 2 hrs to fix

                            Function dispatchEvent has 82 lines of code (exceeds 50 allowed). Consider refactoring.
                            Open

                              dispatchEvent(type, evt, collisionState = false, swallow = false, useCapturePhase = null) { // eslint-disable-line complexity
                                let handlers = this.getEventHandlers(type);
                                if(this.children && useCapturePhase === true) handlers = handlers.filter(handler => handler.useCapture);
                                if(this.children && useCapturePhase === false) handlers = handlers.filter(handler => !handler.useCapture);
                                evt.returnValue = true;
                            Severity: Major
                            Found in src/core/basenode.js - About 2 hrs to fix

                              Function computeStyle has 81 lines of code (exceeds 50 allowed). Consider refactoring.
                              Open

                                computeStyle(el) {
                                  if(!el.attributes) return {};
                                  el.__styleNeedUpdate = false;
                                  if(cssRules.length <= 0) return {};
                                  const attrs = {};
                              Severity: Major
                              Found in src/modules/css/stylesheet.js - About 2 hrs to fix
                                Severity
                                Category
                                Status
                                Source
                                Language