CartoDB/cartodb20

View on GitHub
lib/assets/javascripts/builder/components/modals/export-data/modal-export-data-view.js

Summary

Maintainability
D
2 days
Test Coverage

File modal-export-data-view.js has 254 lines of code (exceeds 250 allowed). Consider refactoring.
Open

var $ = require('jquery');
var _ = require('underscore');
var CoreView = require('backbone/core-view');
var renderLoading = require('builder/components/loading/render-loading');
var ErrorView = require('builder/components/error/error-view');

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

      _fetchGET: function (url) {
        function getError (content) {
          // sql api returns a json when it fails
          // but if the browser is running some plugin that
          // formats it, the window content is the html

    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 _fetchGET has 32 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

      _fetchGET: function (url) {
        function getError (content) {
          // sql api returns a json when it fails
          // but if the browser is running some plugin that
          // formats it, the window content is the html

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

        _fetch: function (options, sql) {
          this.$('.js-format').val(options.format);
          this.$('.js-q').val(sql);
          this.$('.js-filename').val(options.filename);
          this.$('.js-apiKey').val(options.apiKey);

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

          _fetch: function (options, sql) {
            this.$('.js-format').val(options.format);
            this.$('.js-q').val(sql);
            this.$('.js-filename').val(options.filename);
            this.$('.js-apiKey').val(options.apiKey);

        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

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

            w.onload = function () {
              clearInterval(checkInterval);
              var error = getError(w.document.body.textContent);
              if (error) {
                self.showError(error);
        lib/assets/javascripts/cartodb/common/dialogs/export/export_view.js on lines 191..200

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

        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

          fetchCSV: function () {
            var options = this.getBaseOptions();
            options.format = 'csv';
            var sql = this.getGeomFilteredSql();
            this.$('.js-skipfields').removeAttr('disabled');
        lib/assets/javascripts/cartodb/common/dialogs/export/export_view.js on lines 234..240
        lib/assets/javascripts/dashboard/views/public-dataset/dialogs/export/export-view.js on lines 227..233

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

        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

            checkInterval = setInterval(function check () {
              // safari needs to check the body because it never
              // calls onload
              if (w.closed || (w.document && w.document.body.textContent.length === 0)) {
                self._close();
        lib/assets/javascripts/cartodb/common/dialogs/export/export_view.js on lines 202..209

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

        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

          showError: function (errorMessage) {
            var errorView = new ErrorView({
              title: _t('hello'),
              desc: errorMessage
            });
        lib/assets/javascripts/builder/components/modals/sync-options/sync-options-modal-view.js on lines 37..44

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

        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