silegis-mg/editor-articulacao

View on GitHub

Showing 86 of 86 total issues

Function parseTexto has 221 lines of code (exceeds 25 allowed). Consider refactoring.
Open

function parseTexto(textoOriginal) {
    var contexto = {
        ultimoItem: null,
        textoAnterior: '',
        artigos: [],
Severity: Major
Found in src/interpretadorArticulacao.js - About 1 day to fix

    File interpretadorArticulacao.js has 513 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    /* Copyright 2017 Assembleia Legislativa de Minas Gerais
     * 
     * This file is part of Editor-Articulacao.
     *
     * Editor-Articulacao is free software: you can redistribute it and/or modify
    Severity: Major
    Found in src/interpretadorArticulacao.js - About 1 day to fix

      Function parseTexto has a Cognitive Complexity of 50 (exceeds 5 allowed). Consider refactoring.
      Open

      function parseTexto(textoOriginal) {
          var contexto = {
              ultimoItem: null,
              textoAnterior: '',
              artigos: [],
      Severity: Minor
      Found in src/interpretadorArticulacao.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 exportarParaLexML has a Cognitive Complexity of 45 (exceeds 5 allowed). Consider refactoring.
      Open

      function exportarParaLexML(dispositivoDOM, rotulos) {
          var cntArtigos = 0;
      
          if (!rotulos) {
              rotulos = padrao.rotulo;
      Severity: Minor
      Found in src/lexml/exportarParaLexML.js - About 6 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 exportarParaLexML has 143 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      function exportarParaLexML(dispositivoDOM, rotulos) {
          var cntArtigos = 0;
      
          if (!rotulos) {
              rotulos = padrao.rotulo;
      Severity: Major
      Found in src/lexml/exportarParaLexML.js - About 5 hrs to fix

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

        function encontrarDispositivoPosteriorDoTipo(elemento, pontosParada, pontosInterrupcao) {
            while (!elemento.hasAttribute('data-tipo')) {
                elemento = elemento.parentNode;
            }
        
        
        Severity: Major
        Found in src/util.js and 1 other location - About 5 hrs to fix
        src/util.js on lines 26..45

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

        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 encontrarDispositivoAnteriorDoTipo(dispositivo, pontosParada, pontosInterrupcao) {
            while (!dispositivo.hasAttribute('data-tipo')) {
                dispositivo = dispositivo.parentNode;
            }
        
        
        Severity: Major
        Found in src/util.js and 1 other location - About 5 hrs to fix
        src/util.js on lines 55..74

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

        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 EditorArticulacaoController.js has 375 lines of code (exceeds 250 allowed). Consider refactoring.
        Open

        /* Copyright 2017 Assembleia Legislativa de Minas Gerais
         * 
         * This file is part of Editor-Articulacao.
         *
         * Editor-Articulacao is free software: you can redistribute it and/or modify
        Severity: Minor
        Found in src/EditorArticulacaoController.js - About 5 hrs to fix

          Function obterSelecao has a Cognitive Complexity of 31 (exceeds 5 allowed). Consider refactoring.
          Open

          function obterSelecao(ctrl) {
              var selecao = ctrl.getSelection();
              var range = selecao && selecao.rangeCount > 0 ? selecao.getRangeAt(0) : null;
          
              if (range) {
          Severity: Minor
          Found in src/EditorArticulacaoController.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 constructor has a Cognitive Complexity of 29 (exceeds 5 allowed). Consider refactoring.
          Open

              constructor(elementoArticulacao, dispositivo) {
                  let cursor = {
                      italico: dispositivo.tagName === 'I',
                      desconhecido: false,
                      titulo: false,
          Severity: Minor
          Found in src/ContextoArticulacao.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

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

          class Alinea extends Dispositivo {
              constructor(numero, descricao) {
                  super('alinea', numero, descricao, ['itens']);
                  this.itens = [];
              }
          Severity: Major
          Found in src/interpretadorArticulacao.js and 2 other locations - About 4 hrs to fix
          src/interpretadorArticulacao.js on lines 443..464
          src/interpretadorArticulacao.js on lines 466..487

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

          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

          class Paragrafo extends Dispositivo {
              constructor(numero, descricao) {
                  super('paragrafo', numero, descricao, ['incisos']);
                  this.incisos = [];
              }
          Severity: Major
          Found in src/interpretadorArticulacao.js and 2 other locations - About 4 hrs to fix
          src/interpretadorArticulacao.js on lines 466..487
          src/interpretadorArticulacao.js on lines 489..510

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

          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

          class Inciso extends Dispositivo {
              constructor(numero, descricao) {
                  super('inciso', numero, descricao, ['alineas']);
                  this.alineas = [];
              }
          Severity: Major
          Found in src/interpretadorArticulacao.js and 2 other locations - About 4 hrs to fix
          src/interpretadorArticulacao.js on lines 443..464
          src/interpretadorArticulacao.js on lines 489..510

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

          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 polyfill has a Cognitive Complexity of 27 (exceeds 5 allowed). Consider refactoring.
          Open

           function polyfill() {
              // IE 11 não tem Object.assing
          
              // Object polyfill from https://developer.mozilla.org/en-US/docs/Glossary/Polyfill
              if (!Object.assign) {
          Severity: Minor
          Found in src/hacks/polyfill.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

          Function hackInterceptarKeydown has a Cognitive Complexity of 25 (exceeds 5 allowed). Consider refactoring.
          Open

          function hackInterceptarKeydown(keyboardEvent, editorCtrl) {
              /* Somente serão tratadas as alterações de conteúdo. Portanto,
               * se houver qualquer tecla modificativa (ctrl, alt ou meta),
               * o evento será ignorado. O evento só será tratado se a tecla for
               * de conteúdo (letra, número ou enter), ou remoção (delete, backspace).
          Severity: Minor
          Found in src/hacks/chrome.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

          File exportarParaLexML.js has 314 lines of code (exceeds 250 allowed). Consider refactoring.
          Open

          /* Copyright 2017 Assembleia Legislativa de Minas Gerais
           * 
           * This file is part of Editor-Articulacao.
           *
           * Editor-Articulacao is free software: you can redistribute it and/or modify
          Severity: Minor
          Found in src/lexml/exportarParaLexML.js - About 3 hrs to fix

            Function importarDeLexML has a Cognitive Complexity of 23 (exceeds 5 allowed). Consider refactoring.
            Open

            function importarDeLexML(elemento, resultado) {
                if (!resultado) {
                    resultado = document.createDocumentFragment();
                }
            
            
            Severity: Minor
            Found in src/lexml/importarDeLexML.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

            Function colarFragmento has a Cognitive Complexity of 22 (exceeds 5 allowed). Consider refactoring.
            Open

            function colarFragmento(fragmento, editorCtrl, validacaoCtrl) {
                prepararDesfazer(fragmento, editorCtrl);
            
                let proximaSelecao = fragmento.lastChild;
                let selecao = editorCtrl.getSelection();
            Severity: Minor
            Found in src/ClipboardController.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

            Function transformarTextoPuro has a Cognitive Complexity of 21 (exceeds 5 allowed). Consider refactoring.
            Open

            function transformarTextoPuro(texto, tipo) {
                if (texto.length === 0) {
                    return;
                }
            
            
            Severity: Minor
            Found in src/ClipboardController.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 constructor has 72 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                constructor(elementoArticulacao, dispositivo) {
                    let cursor = {
                        italico: dispositivo.tagName === 'I',
                        desconhecido: false,
                        titulo: false,
            Severity: Major
            Found in src/ContextoArticulacao.js - About 2 hrs to fix
              Severity
              Category
              Status
              Source
              Language