Siggg/culottes

View on GitHub

Showing 15 of 624 total issues

Function ngOnInit has 128 lines of code (exceeds 25 allowed). Consider refactoring.
Open

  async ngOnInit() {
    // console.log("OnInit: " + this.web3Service);
    // console.log(this);
    this.getAddress();
    this.otherRevolutions = this.web3Service.revolutions;
Severity: Major
Found in src/app/revolution/revolution.component.ts - About 5 hrs to fix

    Function ngOnInit has a Cognitive Complexity of 32 (exceeds 5 allowed). Consider refactoring.
    Open

      async ngOnInit() {
        // console.log("OnInit: " + this.web3Service);
        // console.log(this);
        this.getAddress();
        this.otherRevolutions = this.web3Service.revolutions;
    Severity: Minor
    Found in src/app/revolution/revolution.component.ts - 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

    File revolution.component.ts has 357 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    import { Component, OnInit } from "@angular/core";
    import { Web3Service } from "../util/web3.service";
    import { Router, ActivatedRoute } from '@angular/router';
    
    declare let require: any;
    Severity: Minor
    Found in src/app/revolution/revolution.component.ts - About 4 hrs to fix

      Function loadOtherRevolutionsThenCitizens has 108 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

        private async loadOtherRevolutionsThenCitizens() {
          this.revolutionOwner = await this.revolutionContract.owner();
          console.log("Revolution owner: ", this.revolutionOwner);
          console.log("Getting other revolutions from this factory");
          this.factoryAddress = await this.revolutionContract.factory();
      Severity: Major
      Found in src/app/revolution/revolution.component.ts - About 4 hrs to fix

        Function onRevolutionCreate has 81 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

          async onRevolutionCreate() {
            let canCreate = true;
            if (this.criteria == undefined || this.criteria.length == 0) {
              this.showErrorMessageForCriteria = true;
              canCreate = false;
        Severity: Major
        Found in src/app/factory/factory.component.ts - About 3 hrs to fix

          Function ngOnInit has 71 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

            async ngOnInit() {
              this.getParams();
              // this.watchAccount();
              this.revolutionAddress = this
                .web3Service
          Severity: Major
          Found in src/app/factory/factory.component.ts - About 2 hrs to fix

            Function sendVote has 58 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

              async sendVote(vote, weiAmount) {
                let component = this;
                component.vote = vote;
                let nameChange = false;
                let estimatedGas;
            Severity: Major
            Found in src/app/citizen/citizen.component.ts - About 2 hrs to fix

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

                private async loadOtherRevolutionsThenCitizens() {
                  this.revolutionOwner = await this.revolutionContract.owner();
                  console.log("Revolution owner: ", this.revolutionOwner);
                  console.log("Getting other revolutions from this factory");
                  this.factoryAddress = await this.revolutionContract.factory();
              Severity: Minor
              Found in src/app/revolution/revolution.component.ts - 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 ngOnInit has 56 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                async ngOnInit() {
                  this.getAddress();
                  this.revolutionAddress = this
                    .web3Service
                    .revolutionAddress;
              Severity: Major
              Found in src/app/citizen/citizen.component.ts - About 2 hrs to fix

                Function cakeVote has 40 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                  async cakeVote(vote) {
                    let canVote = true;
                    let addressIsValid = true;
                    let component = this;
                
                
                Severity: Minor
                Found in src/app/citizen/citizen.component.ts - About 1 hr to fix

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

                    async onRevolutionCreate() {
                      let canCreate = true;
                      if (this.criteria == undefined || this.criteria.length == 0) {
                        this.showErrorMessageForCriteria = true;
                        canCreate = false;
                  Severity: Minor
                  Found in src/app/factory/factory.component.ts - 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 exports has 36 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                  module.exports = function (config) {
                    config.set({
                      basePath: '',
                      frameworks: ['jasmine', '@angular-devkit/build-angular'],
                      plugins: [
                  Severity: Minor
                  Found in karma.conf.js - About 1 hr to fix

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

                    def update_culottes():
                        events = get_events(address)
                    
                        for event in events:
                            topics = event['topics']
                    Severity: Minor
                    Found in publication/code.py - 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 sendVote has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                    Open

                      async sendVote(vote, weiAmount) {
                        let component = this;
                        component.vote = vote;
                        let nameChange = false;
                        let estimatedGas;
                    Severity: Minor
                    Found in src/app/citizen/citizen.component.ts - About 35 mins 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 cakeVote has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                    Open

                      async cakeVote(vote) {
                        let canVote = true;
                        let addressIsValid = true;
                        let component = this;
                    
                    
                    Severity: Minor
                    Found in src/app/citizen/citizen.component.ts - About 35 mins 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

                    Severity
                    Category
                    Status
                    Source
                    Language