DerDu/SPHERE-Framework

View on GitHub
Common/Script/ModAjax.js

Summary

Maintainability
F
4 days
Test Coverage

Function ModAjax has 305 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    $.fn.ModAjax = function (options) {

// Settings

        var settings = $.extend(true, {
Severity: Major
Found in Common/Script/ModAjax.js - About 1 day to fix

    File ModAjax.js has 309 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    (function ($) {
        // 'use strict';
        $.fn.ModAjax = function (options) {
    
    // Settings
    Severity: Minor
    Found in Common/Script/ModAjax.js - About 3 hrs to fix

      Function callAjax has 41 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

              var callAjax = function (Method, Url, Data, Callback) {
                  if (!occupyPipeline()) return;
                  try {
                      var Payload = JSON.parse(Data);
                  } catch (Error) {
      Severity: Minor
      Found in Common/Script/ModAjax.js - About 1 hr to fix

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

                var onSuccessEvent = function (Response) {
                    var Notify = getNotifyObject();
                    if (Notify) {
                        Notify.update({progress: getRandomInt(50, 80)});
                    }
        Severity: Minor
        Found in Common/Script/ModAjax.js - About 1 hr to fix

          Function callContent has 27 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

                  var callContent = function (Content, Callback) {
                      if (!occupyPipeline()) return;
                      onSuccessEvent(Content);
                      if (Callback == false) {
                          Callback = function () {
          Severity: Minor
          Found in Common/Script/ModAjax.js - About 1 hr to fix

            Function onErrorEvent has 26 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                    var onErrorEvent = function (request, status, error) {
                        isErrorEvent = true;
                        var Notify = getNotifyObject();
                        if (Notify) {
                            Notify.update({progress: getRandomInt(50, 80)});
            Severity: Minor
            Found in Common/Script/ModAjax.js - About 1 hr to fix

              Function onLoadEvent has 26 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                      var onLoadEvent = function (jqXHR, Config) {
                          if (settings.Notify.onLoad.Message.length > 0 || settings.Notify.onLoad.Title.length > 0) {
                              var Notify = getNotifyObject();
                              if (!Notify) {
                                  document.ModAjax.NotifyHandler[settings.Notify.Hash] = $.notify({
              Severity: Minor
              Found in Common/Script/ModAjax.js - About 1 hr to fix

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

                                        if (settings.Notify.onSuccess.Message.length > 0 || settings.Notify.onSuccess.Title.length > 0) {
                                            Notify.update({
                                                progress: 100,
                                                type: 'success',
                                                title: settings.Notify.onSuccess.Title,
                Severity: Major
                Found in Common/Script/ModAjax.js and 1 other location - About 5 hrs to fix
                Common/Script/ModAjax.js on lines 283..298

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

                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 (settings.Notify.onSuccess.Message.length > 0 || settings.Notify.onSuccess.Title.length > 0) {
                                        Notify.update({
                                            progress: 100,
                                            type: 'success',
                                            title: settings.Notify.onSuccess.Title,
                Severity: Major
                Found in Common/Script/ModAjax.js and 1 other location - About 5 hrs to fix
                Common/Script/ModAjax.js on lines 310..325

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

                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

                                }, {
                                    z_index: 32768,
                                    showProgressbar: false,
                                    newest_on_top: true,
                                    placement: {from: 'top', align: 'right'},
                Severity: Minor
                Found in Common/Script/ModAjax.js and 1 other location - About 40 mins to fix
                Common/Script/ModAjax.js on lines 172..180

                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

                                    }, {
                                        z_index: 32768,
                                        showProgressbar: true,
                                        newest_on_top: true,
                                        placement: {from: 'top', align: 'right'},
                Severity: Minor
                Found in Common/Script/ModAjax.js and 1 other location - About 40 mins to fix
                Common/Script/ModAjax.js on lines 38..46

                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