aullman/opentok-editor

View on GitHub

Showing 59 of 59 total issues

Similar blocks of code found in 2 locations. Consider refactoring.
Open

(function () {
  // Turns the Array of operation Objects into an Array of JSON stringifyable objects
  var serialiseOps = function (operations) {
    return operations.map(function (op) {
      return {
Severity: Major
Found in opentok-editor.js and 1 other location - About 1 wk to fix
src/opentok-editor.js on lines 23..177

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 1189.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 2 locations. Consider refactoring.
Open

(function () {
  // Turns the Array of operation Objects into an Array of JSON stringifyable objects
  var serialiseOps = function (operations) {
    return operations.map(function (op) {
      return {
Severity: Major
Found in src/opentok-editor.js and 1 other location - About 1 wk to fix
opentok-editor.js on lines 2048..2202

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 1189.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

File opentok-editor.js has 1662 lines of code (exceeds 250 allowed). Consider refactoring.
Open

/*
 *    /\
 *   /  \ ot 0.0.15
 *  /    \ http://operational-transformation.github.com
 *  \    /
Severity: Major
Found in opentok-editor.js - About 4 days to fix

    Similar blocks of code found in 2 locations. Consider refactoring.
    Open

    var OpenTokAdapter = (function () {
      'use strict';
    
      function OpenTokAdapter (session, revision, doc, operations) {
        OT.$.eventing(this);
    Severity: Major
    Found in opentok-editor.js and 1 other location - About 4 days to fix
    src/opentok-adapter.js on lines 8..84

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 734.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Similar blocks of code found in 2 locations. Consider refactoring.
    Open

    var OpenTokAdapter = (function () {
      'use strict';
    
      function OpenTokAdapter (session, revision, doc, operations) {
        OT.$.eventing(this);
    Severity: Major
    Found in src/opentok-adapter.js and 1 other location - About 4 days to fix
    opentok-editor.js on lines 1944..2020

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 734.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Function TextOperation has a Cognitive Complexity of 207 (exceeds 5 allowed). Consider refactoring.
    Open

    ot.TextOperation = (function () {
      'use strict';
    
      // Constructor for new operations.
      function TextOperation () {
    Severity: Minor
    Found in opentok-editor.js - About 4 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

    Function TextOperation has 393 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    ot.TextOperation = (function () {
      'use strict';
    
      // Constructor for new operations.
      function TextOperation () {
    Severity: Major
    Found in opentok-editor.js - About 1 day to fix

      Function EditorClient has a Cognitive Complexity of 94 (exceeds 5 allowed). Consider refactoring.
      Open

      ot.EditorClient = (function () {
        'use strict';
      
        var Client = ot.Client;
        var Selection = ot.Selection;
      Severity: Minor
      Found in opentok-editor.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

      Function EditorClient has 273 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      ot.EditorClient = (function () {
        'use strict';
      
        var Client = ot.Client;
        var Selection = ot.Selection;
      Severity: Major
      Found in opentok-editor.js - About 1 day to fix

        Function CodeMirrorAdapter has 257 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        ot.CodeMirrorAdapter = (function (global) {
          'use strict';
        
          var TextOperation = ot.TextOperation;
          var Selection = ot.Selection;
        Severity: Major
        Found in opentok-editor.js - About 1 day to fix

          Function CodeMirrorAdapter has a Cognitive Complexity of 61 (exceeds 5 allowed). Consider refactoring.
          Open

          ot.CodeMirrorAdapter = (function (global) {
            'use strict';
          
            var TextOperation = ot.TextOperation;
            var Selection = ot.Selection;
          Severity: Minor
          Found in opentok-editor.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

          Function Selection has a Cognitive Complexity of 35 (exceeds 5 allowed). Consider refactoring.
          Open

          ot.Selection = (function (global) {
            'use strict';
          
            var TextOperation = global.ot ? global.ot.TextOperation : require('./text-operation');
          
          
          Severity: Minor
          Found in opentok-editor.js - About 5 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 AjaxAdapter has a Cognitive Complexity of 33 (exceeds 5 allowed). Consider refactoring.
          Open

          ot.AjaxAdapter = (function () {
            'use strict';
          
            function AjaxAdapter (path, ownUserName, revision) {
              if (path[path.length - 1] !== '/') { path += '/'; }
          Severity: Minor
          Found in opentok-editor.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 link has 103 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

                link: function (scope, element, attrs) {
                  var opentokEditor = element.context.querySelector('div.opentok-editor'),
                      modeSelect = element.context.querySelector('select'),
                      myCodeMirror,
                      cmClient,
          Severity: Major
          Found in opentok-editor.js - About 4 hrs to fix

            Function link has 103 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                  link: function (scope, element, attrs) {
                    var opentokEditor = element.context.querySelector('div.opentok-editor'),
                        modeSelect = element.context.querySelector('select'),
                        myCodeMirror,
                        cmClient,
            Severity: Major
            Found in src/opentok-editor.js - About 4 hrs to fix

              Function AjaxAdapter has 98 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

              ot.AjaxAdapter = (function () {
                'use strict';
              
                function AjaxAdapter (path, ownUserName, revision) {
                  if (path[path.length - 1] !== '/') { path += '/'; }
              Severity: Major
              Found in opentok-editor.js - About 3 hrs to fix

                Function transform has 93 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                  TextOperation.transform = function (operation1, operation2) {
                    if (operation1.baseLength !== operation2.baseLength) {
                      throw new Error("Both operations have to have the same base length");
                    }
                
                
                Severity: Major
                Found in opentok-editor.js - About 3 hrs to fix

                  Function Client has 93 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                  ot.Client = (function (global) {
                    'use strict';
                  
                    // Client constructor
                    function Client (revision) {
                  Severity: Major
                  Found in opentok-editor.js - About 3 hrs to fix

                    Function compose has 90 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                      TextOperation.prototype.compose = function (operation2) {
                        var operation1 = this;
                        if (operation1.targetLength !== operation2.baseLength) {
                          throw new Error("The base length of the second operation has to be the target length of the first operation");
                        }
                    Severity: Major
                    Found in opentok-editor.js - About 3 hrs to fix

                      Function UndoManager has a Cognitive Complexity of 24 (exceeds 5 allowed). Consider refactoring.
                      Open

                      ot.UndoManager = (function () {
                        'use strict';
                      
                        var NORMAL_STATE = 'normal';
                        var UNDOING_STATE = 'undoing';
                      Severity: Minor
                      Found in opentok-editor.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

                      Severity
                      Category
                      Status
                      Source
                      Language