DemocracyOS/democracyos

View on GitHub
lib/site/topic-layout/topic-article/vote/component.js

Summary

Maintainability
D
2 days
Test Coverage

File component.js has 290 lines of code (exceeds 250 allowed). Consider refactoring.
Open

import React, { Component } from 'react'
import Chart from 'chart.js'
import t from 't-component'
import topicStore from 'lib/stores/topic-store/topic-store'
import userConnector from 'lib/site/connectors/user'
Severity: Minor
Found in lib/site/topic-layout/topic-article/vote/component.js - About 2 hrs to fix

    Function render has 65 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

      render () {
        const { user, topic } = this.props
    
        const votes = this.state.votes
        const votesTotal = topic.action.count
    Severity: Major
    Found in lib/site/topic-layout/topic-article/vote/component.js - About 2 hrs to fix

      Function ResultBox has 47 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      function ResultBox (props) {
        const votesTotal = props.votesTotal
        const votes = props.votes
        const resultChartDidMount = props.resultChartDidMount
        const options = props.options
      Severity: Minor
      Found in lib/site/topic-layout/topic-article/vote/component.js - About 1 hr to fix

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

          prepareState (topic) {
            let votes = {
              positive: new Array(parseInt(topic.action.results.find((o) => o.value === 'positive').percentage * topic.action.count)) || [],
              negative: new Array(parseInt(topic.action.results.find((o) => o.value === 'negative').percentage * topic.action.count)) || [],
              neutral: new Array(parseInt(topic.action.results.find((o) => o.value === 'neutral').percentage * topic.action.count)) || []
        Severity: Minor
        Found in lib/site/topic-layout/topic-article/vote/component.js - About 1 hr to fix

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

                <div className='alert alert-info alert-voted' role='alert'>
                  <span className='icon-info bold' />
                  <span className='black bold thanks'>{t('topics.actions.thanks')}</span>
                  <span className='black'>{t('topics.actions.feedback')}</span>
                </div>
          Severity: Major
          Found in lib/site/topic-layout/topic-article/vote/component.js and 3 other locations - About 2 hrs to fix
          lib/site/topic-layout/topic-article/cause/component.js on lines 54..58
          lib/site/topic-layout/topic-article/hierarchy/component.js on lines 154..158
          lib/site/topic-layout/topic-article/slider/component.js on lines 202..206

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

          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

                neutral: new Array(parseInt(topic.action.results.find((o) => o.value === 'neutral').percentage * topic.action.count)) || []
          Severity: Major
          Found in lib/site/topic-layout/topic-article/vote/component.js and 2 other locations - About 1 hr to fix
          lib/site/topic-layout/topic-article/vote/component.js on lines 44..44
          lib/site/topic-layout/topic-article/vote/component.js on lines 45..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 62.

          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

                positive: new Array(parseInt(topic.action.results.find((o) => o.value === 'positive').percentage * topic.action.count)) || [],
          Severity: Major
          Found in lib/site/topic-layout/topic-article/vote/component.js and 2 other locations - About 1 hr to fix
          lib/site/topic-layout/topic-article/vote/component.js on lines 45..45
          lib/site/topic-layout/topic-article/vote/component.js on lines 46..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 62.

          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

                negative: new Array(parseInt(topic.action.results.find((o) => o.value === 'negative').percentage * topic.action.count)) || [],
          Severity: Major
          Found in lib/site/topic-layout/topic-article/vote/component.js and 2 other locations - About 1 hr to fix
          lib/site/topic-layout/topic-article/vote/component.js on lines 44..44
          lib/site/topic-layout/topic-article/vote/component.js on lines 46..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 62.

          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

                data.push({
                  value: votes.negative.length,
                  color: this.props.negativeColor,
                  label: t('proposal-options.nay'),
                  labelColor: 'white',
          Severity: Major
          Found in lib/site/topic-layout/topic-article/vote/component.js and 2 other locations - About 1 hr to fix
          lib/site/topic-layout/topic-article/vote/component.js on lines 120..126
          lib/site/topic-layout/topic-article/vote/component.js on lines 127..133

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

          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

                data.push({
                  value: votes.neutral.length,
                  color: this.props.neutralColor,
                  label: t('proposal-options.abstain'),
                  labelColor: 'white',
          Severity: Major
          Found in lib/site/topic-layout/topic-article/vote/component.js and 2 other locations - About 1 hr to fix
          lib/site/topic-layout/topic-article/vote/component.js on lines 120..126
          lib/site/topic-layout/topic-article/vote/component.js on lines 134..140

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

          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

                data.push({
                  value: votes.positive.length,
                  color: this.props.positiveColor,
                  label: t('proposal-options.yea'),
                  labelColor: 'white',
          Severity: Major
          Found in lib/site/topic-layout/topic-article/vote/component.js and 2 other locations - About 1 hr to fix
          lib/site/topic-layout/topic-article/vote/component.js on lines 127..133
          lib/site/topic-layout/topic-article/vote/component.js on lines 134..140

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

          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