hakimel/reveal.js

View on GitHub
plugin/zoom/plugin.js

Summary

Maintainability
D
2 days
Test Coverage

Function zoom has a Cognitive Complexity of 46 (exceeds 5 allowed). Consider refactoring.
Open

var zoom = (function(){

    // The current zoom level (scale)
    var level = 1;

Severity: Minor
Found in plugin/zoom/plugin.js - About 7 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 zoom has 132 lines of code (exceeds 25 allowed). Consider refactoring.
Open

var zoom = (function(){

    // The current zoom level (scale)
    var level = 1;

Severity: Major
Found in plugin/zoom/plugin.js - About 5 hrs to fix

    Function magnify has 43 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        function magnify( rect, scale ) {
    
            var scrollOffset = getScrollOffset();
    
            // Ensure a width/height is set
    Severity: Minor
    Found in plugin/zoom/plugin.js - About 1 hr to fix

      Function to has 28 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

              to: function( options ) {
      
                  // Due to an implementation limitation we can't zoom in
                  // to another element without zooming out first
                  if( level !== 1 ) {
      Severity: Minor
      Found in plugin/zoom/plugin.js - About 1 hr to fix

        Function init has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
        Open

            init: function( reveal ) {
        
                reveal.getRevealElement().addEventListener( 'mousedown', function( event ) {
                    var defaultModifier = /Linux/.test( window.navigator.platform ) ? 'ctrl' : 'alt';
        
        
        Severity: Minor
        Found in plugin/zoom/plugin.js - About 55 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