wikimedia/mediawiki-extensions-WikiLove

View on GitHub
resources/ext.wikiLove.startup/wikiLove.js

Summary

Maintainability
F
1 wk
Test Coverage

File wikiLove.js has 565 lines of code (exceeds 250 allowed). Consider refactoring.
Open

/* eslint-disable no-jquery/no-global-selector */
const overlayContainer = document.createElement( 'div' );
const WikiLoveDialog = require( './WikiLoveDialog.vue' );
const Vue = require( 'vue' );
let options = {}, // options modifiable by the user
Severity: Major
Found in resources/ext.wikiLove.startup/wikiLove.js - About 1 day to fix

    Function showGallery has 73 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        showGallery: function () {
            let i, id, index, loadingIndex, galleryNumber, $img;
            const titles = [];
            const imageList = currentTypeOrSubtype.gallery.imageList.slice();
    
    
    Severity: Major
    Found in resources/ext.wikiLove.startup/wikiLove.js - About 2 hrs to fix

      Function openDialog has 68 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          openDialog: function ( recipients, extraTags ) {
              let type, typeId, $button;
              // If a list of recipients are specified, this will override the normal
              // behavior of WikiLove, which is to post on the Talk page of the
              // current page. It will also disable redirecting the user after submitting.
      Severity: Major
      Found in resources/ext.wikiLove.startup/wikiLove.js - About 2 hrs to fix

        Function doSend has 66 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            doSend: function ( subject, wikitext, message, type, email, extraTags ) {
                let targetBaseUrl, currentBaseUrl,
                    wikiLoveNumberAttempted = 0,
                    wikiLoveNumberPosted = 0;
        
        
        Severity: Major
        Found in resources/ext.wikiLove.startup/wikiLove.js - About 2 hrs to fix

          Function validatePreviewForm has a Cognitive Complexity of 19 (exceeds 5 allowed). Consider refactoring.
          Open

              validatePreviewForm: function ( e ) {
                  let imageTitle;
          
                  e.preventDefault();
                  $( '#mw-wikilove-success' ).hide();
          Severity: Minor
          Found in resources/ext.wikiLove.startup/wikiLove.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 validatePreviewForm has 62 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              validatePreviewForm: function ( e ) {
                  let imageTitle;
          
                  e.preventDefault();
                  $( '#mw-wikilove-success' ).hide();
          Severity: Major
          Found in resources/ext.wikiLove.startup/wikiLove.js - About 2 hrs to fix

            Function rememberInputData has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
            Open

                rememberInputData: function () {
                    if ( rememberData === null ) {
                        rememberData = {
                            header: '',
                            title: '',
            Severity: Minor
            Found in resources/ext.wikiLove.startup/wikiLove.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 openDialog has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
            Open

                openDialog: function ( recipients, extraTags ) {
                    let type, typeId, $button;
                    // If a list of recipients are specified, this will override the normal
                    // behavior of WikiLove, which is to post on the Talk page of the
                    // current page. It will also disable redirecting the user after submitting.
            Severity: Minor
            Found in resources/ext.wikiLove.startup/wikiLove.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 updateAllDetails has 40 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                updateAllDetails: function () {
                    // use remembered data for fields that can be set by the user
                    const currentRememberData = {
                        header: ( currentTypeOrSubtype.fields.indexOf( 'header' ) !== -1 ? rememberData.header : '' ),
                        title: ( currentTypeOrSubtype.fields.indexOf( 'title' ) !== -1 ? rememberData.title : '' ),
            Severity: Minor
            Found in resources/ext.wikiLove.startup/wikiLove.js - About 1 hr to fix

              Function updateAllDetails has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
              Open

                  updateAllDetails: function () {
                      // use remembered data for fields that can be set by the user
                      const currentRememberData = {
                          header: ( currentTypeOrSubtype.fields.indexOf( 'header' ) !== -1 ? rememberData.header : '' ),
                          title: ( currentTypeOrSubtype.fields.indexOf( 'title' ) !== -1 ? rememberData.title : '' ),
              Severity: Minor
              Found in resources/ext.wikiLove.startup/wikiLove.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 showImagePreview has 39 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                  showImagePreview: function () {
                      let $img;
                      const title = $.wikiLove.normalizeFilename( currentTypeOrSubtype.image );
                      const loadingType = currentTypeOrSubtype;
                      $( '#mw-wikilove-image-preview' ).show();
              Severity: Minor
              Found in resources/ext.wikiLove.startup/wikiLove.js - About 1 hr to fix

                Function clickType has 37 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                    clickType: function ( e ) {
                        let subtypeId, subtype;
                        const newTypeId = $( this ).data( 'typeId' );
                
                        e.preventDefault();
                Severity: Minor
                Found in resources/ext.wikiLove.startup/wikiLove.js - About 1 hr to fix

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

                      clickType: function ( e ) {
                          let subtypeId, subtype;
                          const newTypeId = $( this ).data( 'typeId' );
                  
                          e.preventDefault();
                  Severity: Minor
                  Found in resources/ext.wikiLove.startup/wikiLove.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 rememberInputData has 30 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                      rememberInputData: function () {
                          if ( rememberData === null ) {
                              rememberData = {
                                  header: '',
                                  title: '',
                  Severity: Minor
                  Found in resources/ext.wikiLove.startup/wikiLove.js - About 1 hr to fix

                    Function submitSend has 29 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                        submitSend: function ( e ) {
                            e.preventDefault();
                            $( '#mw-wikilove-success' ).hide();
                            $( '#mw-wikilove-dialog' ).find( '.mw-wikilove-error' ).remove();
                    
                    
                    Severity: Minor
                    Found in resources/ext.wikiLove.startup/wikiLove.js - About 1 hr to fix

                      Function submitSend has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
                      Open

                          submitSend: function ( e ) {
                              e.preventDefault();
                              $( '#mw-wikilove-success' ).hide();
                              $( '#mw-wikilove-dialog' ).find( '.mw-wikilove-error' ).remove();
                      
                      
                      Severity: Minor
                      Found in resources/ext.wikiLove.startup/wikiLove.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 doSend has 6 arguments (exceeds 4 allowed). Consider refactoring.
                      Open

                          doSend: function ( subject, wikitext, message, type, email, extraTags ) {
                      Severity: Minor
                      Found in resources/ext.wikiLove.startup/wikiLove.js - About 45 mins to fix

                        Avoid too many return statements within this function.
                        Open

                                return true;
                        Severity: Major
                        Found in resources/ext.wikiLove.startup/wikiLove.js - About 30 mins to fix

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

                                      if ( currentTypeOrSubtype.fields.indexOf( 'header' ) !== -1 &&
                                          ( !currentTypeOrSubtype.header || $( '#mw-wikilove-header' ).val() !== currentTypeOrSubtype.header )
                                      ) {
                                          rememberData.header = $( '#mw-wikilove-header' ).val();
                                      }
                          Severity: Major
                          Found in resources/ext.wikiLove.startup/wikiLove.js and 2 other locations - About 2 hrs to fix
                          resources/ext.wikiLove.startup/wikiLove.js on lines 218..222
                          resources/ext.wikiLove.startup/wikiLove.js on lines 223..227

                          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 80.

                          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 3 locations. Consider refactoring.
                          Open

                                      if ( currentTypeOrSubtype.fields.indexOf( 'message' ) !== -1 &&
                                          ( !currentTypeOrSubtype.message || $( '#mw-wikilove-message' ).val() !== currentTypeOrSubtype.message )
                                      ) {
                                          rememberData.message = $( '#mw-wikilove-message' ).val();
                                      }
                          Severity: Major
                          Found in resources/ext.wikiLove.startup/wikiLove.js and 2 other locations - About 2 hrs to fix
                          resources/ext.wikiLove.startup/wikiLove.js on lines 213..217
                          resources/ext.wikiLove.startup/wikiLove.js on lines 218..222

                          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 80.

                          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 3 locations. Consider refactoring.
                          Open

                                      if ( currentTypeOrSubtype.fields.indexOf( 'title' ) !== -1 &&
                                          ( !currentTypeOrSubtype.title || $( '#mw-wikilove-title' ).val() !== currentTypeOrSubtype.title )
                                      ) {
                                          rememberData.title = $( '#mw-wikilove-title' ).val();
                                      }
                          Severity: Major
                          Found in resources/ext.wikiLove.startup/wikiLove.js and 2 other locations - About 2 hrs to fix
                          resources/ext.wikiLove.startup/wikiLove.js on lines 213..217
                          resources/ext.wikiLove.startup/wikiLove.js on lines 223..227

                          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 80.

                          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

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

                                  if ( currentTypeOrSubtype.fields.indexOf( 'title' ) !== -1 && $( '#mw-wikilove-title' ).val().length === 0 ) {
                                      $( '#mw-wikilove-title' ).val( $( '#mw-wikilove-header' ).val() );
                                  }
                          Severity: Major
                          Found in resources/ext.wikiLove.startup/wikiLove.js and 1 other location - About 2 hrs to fix
                          resources/ext.wikiLove.startup/wikiLove.js on lines 580..582

                          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 76.

                          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

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

                                  if ( currentTypeOrSubtype.fields.indexOf( 'title' ) !== -1 && $( '#mw-wikilove-title' ).val().length === 0 ) {
                                      $( '#mw-wikilove-title' ).val( $( '#mw-wikilove-header' ).val() );
                                  }
                          Severity: Major
                          Found in resources/ext.wikiLove.startup/wikiLove.js and 1 other location - About 2 hrs to fix
                          resources/ext.wikiLove.startup/wikiLove.js on lines 379..381

                          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 76.

                          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

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

                                  if ( currentTypeOrSubtype.fields.indexOf( 'header' ) !== -1 && $( '#mw-wikilove-header' ).val().length === 0 ) {
                                      $.wikiLove.showAddDetailsError( 'wikilove-err-header' );
                                      return false;
                                  }
                          Severity: Major
                          Found in resources/ext.wikiLove.startup/wikiLove.js and 1 other location - About 1 hr to fix
                          resources/ext.wikiLove.startup/wikiLove.js on lines 373..376

                          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 70.

                          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

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

                                  if ( currentTypeOrSubtype.fields.indexOf( 'header' ) !== -1 && $( '#mw-wikilove-header' ).val().length === 0 ) {
                                      $.wikiLove.showAddDetailsError( 'wikilove-err-header' );
                                      return false;
                                  }
                          Severity: Major
                          Found in resources/ext.wikiLove.startup/wikiLove.js and 1 other location - About 1 hr to fix
                          resources/ext.wikiLove.startup/wikiLove.js on lines 574..577

                          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 70.

                          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

                              showPreviewError: function ( errmsg ) {
                                  // eslint-disable-next-line mediawiki/msg-doc
                                  $( '#mw-wikilove-preview' ).append( $( '<div>' ).addClass( 'mw-wikilove-error' ).text( mw.msg( errmsg ) ) );
                              },
                          Severity: Major
                          Found in resources/ext.wikiLove.startup/wikiLove.js and 1 other location - About 1 hr to fix
                          resources/ext.wikiLove.startup/wikiLove.js on lines 460..463

                          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 56.

                          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

                              showAddDetailsError: function ( errmsg ) {
                                  // eslint-disable-next-line mediawiki/msg-doc
                                  $( '#mw-wikilove-add-details' ).append( $( '<div>' ).addClass( 'mw-wikilove-error' ).text( mw.msg( errmsg ) ) );
                              },
                          Severity: Major
                          Found in resources/ext.wikiLove.startup/wikiLove.js and 1 other location - About 1 hr to fix
                          resources/ext.wikiLove.startup/wikiLove.js on lines 465..468

                          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 56.

                          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

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

                                      if ( $( '#mw-wikilove-message' ).val().indexOf( '~~~' ) >= 0 ) {
                                          $.wikiLove.showAddDetailsError( 'wikilove-err-sig' );
                                          return false;
                                      }
                          Severity: Minor
                          Found in resources/ext.wikiLove.startup/wikiLove.js and 1 other location - About 45 mins to fix
                          resources/ext.wikiLove.startup/wikiLove.js on lines 390..393

                          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 50.

                          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

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

                                      if ( $( '#mw-wikilove-message' ).val().indexOf( '~~~' ) >= 0 ) {
                                          $.wikiLove.showAddDetailsError( 'wikilove-err-sig' );
                                          return false;
                                      }
                          Severity: Minor
                          Found in resources/ext.wikiLove.startup/wikiLove.js and 1 other location - About 45 mins to fix
                          resources/ext.wikiLove.startup/wikiLove.js on lines 586..589

                          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 50.

                          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

                                  const termsLink = mw.html.element( 'a', {
                                      href: mw.msg( 'wikilove-terms-url' ),
                                      target: '_blank'
                                  }, mw.msg( 'wikilove-terms-link' ) );
                          Severity: Minor
                          Found in resources/ext.wikiLove.startup/wikiLove.js and 1 other location - About 40 mins to fix
                          resources/ext.wikiLove.startup/wikiLove.js on lines 68..71

                          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 48.

                          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

                                  const commonsLink = mw.html.element( 'a', {
                                      href: mw.msg( 'wikilove-commons-url' ),
                                      target: '_blank'
                                  }, mw.msg( 'wikilove-commons-link' ) );
                          Severity: Minor
                          Found in resources/ext.wikiLove.startup/wikiLove.js and 1 other location - About 40 mins to fix
                          resources/ext.wikiLove.startup/wikiLove.js on lines 72..75

                          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 48.

                          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

                          There are no issues that match your filters.

                          Category
                          Status