creative-connections/aurelia-bodylight-plugin

View on GitHub

Showing 552 of 552 total issues

Function start_ has 31 lines of code (exceeds 25 allowed). Consider refactoring.
Open

Dygraph.prototype.start_ = function() {
    var data = this.file_;

    // Functions can return references of all other types.
    if (typeof data == 'function') {
Severity: Minor
Found in src/utils/dygraph.js - About 1 hr to fix

    Function mouseMove_ has 31 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    Dygraph.prototype.mouseMove_ = function(event) {
        // This prevents JS errors when mousing over the canvas before data loads.
        var points = this.layout_.points;
        if (points === undefined) return;
    
    
    Severity: Minor
    Found in src/utils/dygraph.js - About 1 hr to fix

      Function bind has 31 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          bind() {
            this.divstyle = `width:${this.width};height:${this.height}; position:relative`;
            console.log('bind() moleculeId,hidecontrols,hidepolymer,moleculeidref', this.moleculeId, this.hideControls, this.hidePolymer, this.parentref);
            this.pdbref = document.createElement('pdbe-molstar');
            if (this.moleculeId) this.pdbref.setAttribute('molecule-id', this.moleculeId);
      Severity: Minor
      Found in src/elements/pdb-pdbe-molstar.js - About 1 hr to fix

        Function resize has 31 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        Dygraph.prototype.resize = function(width, height) {
            if (this.resize_lock) {
                return;
            }
            this.resize_lock = true;
        Severity: Minor
        Found in src/utils/dygraph.js - About 1 hr to fix

          Function footnoteInline has 31 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

            function footnoteInline(state, silent) {
              let labelStart;
              let labelEnd;
              let footnoteId;
              let token;
          Severity: Minor
          Found in src/elements/markdown-it-bfootnote.js - About 1 hr to fix

            Function bind has 31 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

              bind() {
                //console.log('bdlmarkdownnav src:', this.src);
                if (this.notinitread && this.src && this.src.length > 0 && this.mdtoc) this.fetchMDSrc();
                //bind navigation first - get src before content - to solve navigation hide open issue at the beginning
                //console.log('bdlmakrdownnav src:', this.src);
            Severity: Minor
            Found in src/elements/markdownnav.js - About 1 hr to fix

              Function constructor has 31 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                  constructor() {
                    this.handleTick = e => {
                      this.currenttick++;
                      if (this.currenttick >= this.ticks2reset) {
                        //do reset values
              Severity: Minor
              Found in src/elements/buttonparams.js - About 1 hr to fix

                Function extremeValues_ has 30 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                Dygraph.prototype.extremeValues_ = function(series) {
                    var minY = null, maxY = null, j, y;
                
                    var bars = this.attr_("errorBars") || this.attr_("customBars");
                    if (bars) {
                Severity: Minor
                Found in src/utils/dygraph.js - About 1 hr to fix

                  Function DygraphCanvasRenderer has 30 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                  var DygraphCanvasRenderer = function(dygraph, element, elementContext, layout) {
                      this.dygraph_ = dygraph;
                  
                      this.layout = layout;
                      this.element = element;
                  Severity: Minor
                  Found in src/utils/dygraph.js - About 1 hr to fix

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

                                let newdataset = {
                                    data: data,
                                    label: "",
                                    backgroundColor: this.currentcolor,
                                    borderColor: this.currentcolor,
                    Severity: Major
                    Found in src/elements/chartjs-fixed-xy.js and 1 other location - About 1 hr to fix
                    src/elements/chartjs-fixed-xy.js on lines 132..141

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

                    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

                        mouseup: function(event, g, context) {
                            if (context.isZooming) {
                                Dygraph.endZoom(event, g, context);
                            } else if (context.isPanning) {
                                Dygraph.endPan(event, g, context);
                    Severity: Major
                    Found in src/utils/dygraph.js and 1 other location - About 1 hr to fix
                    src/utils/dygraph.js on lines 6794..6800

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

                    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

                        mousemove: function(event, g, context) {
                            if (context.isZooming) {
                                Dygraph.moveZoom(event, g, context);
                            } else if (context.isPanning) {
                                Dygraph.movePan(event, g, context);
                    Severity: Major
                    Found in src/utils/dygraph.js and 1 other location - About 1 hr to fix
                    src/utils/dygraph.js on lines 6802..6808

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

                    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

                                    let datasetb = {
                                        data: datab,
                                        label: "",
                                        backgroundColor: this.currentcolorb,
                                        borderColor: this.currentcolorb,
                    Severity: Major
                    Found in src/elements/chartjs-fixed-xy.js and 1 other location - About 1 hr to fix
                    src/elements/chartjs-fixed-xy.js on lines 81..90

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

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

                      bind() {
                        this.refindex = parseInt(this.refindex, 10);
                        this.refvalues = parseInt(this.refvalues, 10);
                        this.refendindex = this.refindex + this.refvalues;
                    
                    
                    Severity: Minor
                    Found in src/elements/plotly.js - About 1 hr to fix

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

                      Dygraph.prototype.updateOptions = function(input_attrs, block_redraw) {
                          if (typeof(block_redraw) == 'undefined') block_redraw = false;
                      
                          // mapLegacyOptions_ drops the "file" parameter as a convenience to us.
                          var file = input_attrs.file;
                      Severity: Minor
                      Found in src/utils/dygraph.js - About 1 hr to fix

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

                          bind() {
                            //register throttled update function    
                            if (typeof this.throttle === 'string') this.throttle = parseInt(this.throttle, 10);
                            if (typeof this.dataevent === 'string') this.dataevent = this.dataevent === 'true';
                            if (typeof this.precision === 'string') this.precision = parseInt(this.precision, 10);
                        Severity: Minor
                        Found in src/elements/value.js - About 1 hr to fix

                          Function _drawStyledLine has 9 arguments (exceeds 4 allowed). Consider refactoring.
                          Open

                              ctx, i, setName, color, strokeWidth, strokePattern, drawPoints,
                              drawPointCallback, pointSize) {
                          Severity: Major
                          Found in src/utils/dygraph.js - About 1 hr to fix

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

                              getScript(source, callback) {
                                //check whether the script is not already there
                                if (Array.from(document.getElementsByTagName('script')).filter(x=> x.getAttribute('src') === source).length > 0) {
                                  console.log('fmi.getScript() WARNING, script is already added into DOM:', source);
                                  //do callback?
                            Severity: Minor
                            Found in src/elements/fmi.js - About 1 hr to fix

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

                                  convertf2a(x) {
                                    //do conversion if operation is defined
                                    if (this.operation) x = this.operation(x);
                              
                                    if (this.autofmin) {
                              Severity: Minor
                              Found in src/elements/bind2animation.js - About 1 hr to fix

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

                                  handleValueChangeImpl(e) {
                                    console.log('bdl-ecg handlevaluechange e.detail', e.detail);
                                    let mysegment = e.detail.segment;
                                    let myreltime = e.detail.relativetime;
                                
                                
                                Severity: Minor
                                Found in src/elements/ecg.js - About 1 hr to fix
                                  Severity
                                  Category
                                  Status
                                  Source
                                  Language