ckeditor/ckeditor5-utils

View on GitHub

Showing 43 of 49 total issues

Function _setUpBindToBinding has a Cognitive Complexity of 29 (exceeds 5 allowed). Consider refactoring.
Open

    _setUpBindToBinding( factory ) {
        const externalCollection = this._bindToCollection;

        // Adds the item to the collection once a change has been done to the external collection.
        //
Severity: Minor
Found in src/collection.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

Function diff has a Cognitive Complexity of 25 (exceeds 5 allowed). Consider refactoring.
Open

export default function diff( a, b, cmp ) {
    // Set the comparator function.
    cmp = cmp || function( a, b ) {
        return a === b;
    };
Severity: Minor
Found in src/diff.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 stopListening has a Cognitive Complexity of 19 (exceeds 5 allowed). Consider refactoring.
Open

    stopListening( emitter, event, callback ) {
        const emitters = this[ _listeningTo ];
        let emitterId = emitter && _getEmitterId( emitter );
        const emitterInfo = emitters && emitterId && emitters[ emitterId ];
        const eventCallbacks = emitterInfo && event && emitterInfo.callbacks[ event ];
Severity: Minor
Found in src/emittermixin.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

File emittermixin.js has 266 lines of code (exceeds 250 allowed). Consider refactoring.
Open

/**
 * @license Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
 * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */

Severity: Minor
Found in src/emittermixin.js - About 2 hrs to fix

    File observablemixin.js has 266 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    /**
     * @license Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
     * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
     */
    
    
    Severity: Minor
    Found in src/observablemixin.js - About 2 hrs to fix

      Function diff has 57 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      export default function diff( a, b, cmp ) {
          // Set the comparator function.
          cmp = cmp || function( a, b ) {
              return a === b;
          };
      Severity: Major
      Found in src/diff.js - About 2 hrs to fix

        Function _setUpBindToBinding has 53 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            _setUpBindToBinding( factory ) {
                const externalCollection = this._bindToCollection;
        
                // Adds the item to the collection once a change has been done to the external collection.
                //
        Severity: Major
        Found in src/collection.js - About 2 hrs to fix

          Function fire has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
          Open

              fire( eventOrInfo, ...args ) {
                  try {
                      const eventInfo = eventOrInfo instanceof EventInfo ? eventOrInfo : new EventInfo( this, eventOrInfo );
                      const event = eventInfo.name;
                      let callbacks = getCallbacksForEvent( this, event );
          Severity: Minor
          Found in src/emittermixin.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

          Function processPositionsToAreas has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
          Open

          function processPositionsToAreas( positions, { targetRect, elementRect, limiterRect, viewportRect } ) {
              const processedPositions = [];
          
              // This is when element is fully visible.
              const elementRectArea = elementRect.getArea();
          Severity: Minor
          Found in src/dom/position.js - 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 _createObserver has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
          Open

              static _createObserver() {
                  let ObserverConstructor;
          
                  // TODO: One day, the `ResizeObserver` API will be supported in all modern web browsers.
                  // When it happens, this module will no longer make sense and should be removed and
          Severity: Minor
          Found in src/dom/resizeobserver.js - 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 diffToChanges has 42 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

          export default function diffToChanges( diff, output ) {
              const changes = [];
              let index = 0;
              let lastOperation;
          
          
          Severity: Minor
          Found in src/difftochanges.js - About 1 hr to fix

            Function listenTo has 39 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                listenTo( emitter, event, callback, options = {} ) {
                    let emitterInfo, eventCallbacks;
            
                    // _listeningTo contains a list of emitters that this object is listening to.
                    // This list has the following format:
            Severity: Minor
            Found in src/emittermixin.js - About 1 hr to fix

              Function unbind has 38 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                  unbind( ...unbindProperties ) {
                      // Nothing to do here if not inited yet.
                      if ( !( this[ observablePropertiesSymbol ] ) ) {
                          return;
                      }
              Severity: Minor
              Found in src/observablemixin.js - About 1 hr to fix

                Function listenTo has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
                Open

                    listenTo( emitter, event, callback, options = {} ) {
                        let emitterInfo, eventCallbacks;
                
                        // _listeningTo contains a list of emitters that this object is listening to.
                        // This list has the following format:
                Severity: Minor
                Found in src/emittermixin.js - 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 getVisible has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
                Open

                    getVisible() {
                        const source = this._source;
                        let visibleRect = this.clone();
                
                        // There's no ancestor to crop <body> with the overflow.
                Severity: Minor
                Found in src/dom/rect.js - 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 fire has 33 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                    fire( eventOrInfo, ...args ) {
                        try {
                            const eventInfo = eventOrInfo instanceof EventInfo ? eventOrInfo : new EventInfo( this, eventOrInfo );
                            const event = eventInfo.name;
                            let callbacks = getCallbacksForEvent( this, event );
                Severity: Minor
                Found in src/emittermixin.js - About 1 hr to fix

                  Function remove has 33 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                      remove( subject ) {
                          let index, id, item;
                          let itemDoesNotExist = false;
                          const idProperty = this._idProperty;
                  
                  
                  Severity: Minor
                  Found in src/collection.js - About 1 hr to fix

                    Function bindTo has 32 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                    function bindTo( ...args ) {
                        const parsedArgs = parseBindToArgs( ...args );
                        const bindingsKeys = Array.from( this._bindings.keys() );
                        const numberOfBindings = bindingsKeys.length;
                    
                    
                    Severity: Minor
                    Found in src/observablemixin.js - About 1 hr to fix

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

                      function scrollAncestorsToShowRect( parent, getRect ) {
                          const parentWindow = getWindow( parent );
                          let parentRect, targetRect;
                      
                          while ( parent != parentWindow.document.body ) {
                      Severity: Minor
                      Found in src/dom/scroll.js - 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 addItem has 31 lines of code (exceeds 25 allowed). Consider refactoring.
                      Open

                              const addItem = ( evt, externalItem, index ) => {
                                  const isExternalBoundToThis = externalCollection._bindToCollection == this;
                                  const externalItemBound = externalCollection._bindToInternalToExternalMap.get( externalItem );
                      
                                  // If an external collection is bound to this collection, which makes it a 2–way binding,
                      Severity: Minor
                      Found in src/collection.js - About 1 hr to fix
                        Severity
                        Category
                        Status
                        Source
                        Language