DemocracyOS/democracyos

View on GitHub

Showing 161 of 430 total issues

Function up has 52 lines of code (exceeds 25 allowed). Consider refactoring.
Open

exports.up = function up (done) {
  // mediaTitle 225
  // author 100
  // authorUrl 250
  // source 250
Severity: Major
Found in migrations/1487112733702-update-topic-maxlengths.js - About 2 hrs to fix

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

    import React, { Component } from 'react'
    import { Link } from 'react-router'
    import t from 't-component'
    import debug from 'debug'
    import config from 'lib/config'
    Severity: Minor
    Found in lib/site/home-multiforum/component.js - About 2 hrs to fix

      Function up has 51 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      exports.up = function up (done) {
        dbReady()
          .then(() => Topic.collection.find({}).toArray())
          .then(mapPromises(function (topic) {
            if (topic.action && Object.keys(topic.action).includes('box')) return Promise.resolve(0)
      Severity: Major
      Found in migrations/1501737026342-update-topic-box.js - About 2 hrs to fix

        Function xssFilter has 51 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        module.exports = function xssFilter (opts) {
          var defaults = {
            fontFace: false,
            fontSize: true,
            fontWidth: true,
        Severity: Major
        Found in lib/richtext/lib/xss-filter.js - About 2 hrs to fix

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

            render () {
              const { topic, user } = this.props
          
              if (user.state.pending) return null
          
          
          Severity: Minor
          Found in lib/site/topic-layout/topic-article/comments/form/component.js - About 2 hrs to fix

            Function Setup has 50 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

            function Setup (app) {
              /**
               * Set `production` settings
               */
            
            
            Severity: Minor
            Found in lib/setup/index.js - About 2 hrs to fix

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

                render () {
                  const { votesTotals, results, voted } = this.props
                  const noVoted = votesTotals === 0
                  if (noVoted) {
                    return (
              Severity: Minor
              Found in lib/site/topic-layout/topic-article/hierarchy/component.js - About 1 hr to fix

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

                export default function TopicConnectorFactory (WrappedComponent) {
                  return class TopicConnector extends Component {
                    static displayName = `TopicConnector(${getDisplayName(WrappedComponent)})`
                
                    static WrappedComponent = WrappedComponent
                Severity: Minor
                Found in lib/site/connectors/topic.js - About 1 hr to fix

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

                    render () {
                      const { user, topic } = this.props
                  
                      if (user.state.pending) return null
                  
                  
                  Severity: Minor
                  Found in lib/site/topic-layout/topic-article/cause/component.js - About 1 hr to fix

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

                      render () {
                        let source = null
                        if (this.props.source) {
                          source = (
                            <div className='source'>
                    Severity: Minor
                    Found in lib/site/topic-layout/topic-article/footer/component.js - About 1 hr 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 CommentFooter has 46 lines of code (exceeds 25 allowed). Consider refactoring.
                        Open

                        export default function CommentFooter (props) {
                          return (
                            <footer className='actions'>
                              <div className='votes'>
                                <span className='score'>

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

                            render () {
                              if (config.visibility === 'hidden' && this.props.user.state.rejected) {
                                browserHistory.push('/signin')
                                return null
                              }
                          Severity: Minor
                          Found in lib/site/home-forum/component.js - About 1 hr to fix

                            Function migrateV1 has 45 lines of code (exceeds 25 allowed). Consider refactoring.
                            Open

                            function migrateV1 (topic) {
                              const data = {}
                            
                              data.clauses = topic.clauses.map((clause) => ({
                                id: clause._id,
                            Severity: Minor
                            Found in migrations/1487112733708-update-topic-clauses.js - About 1 hr to fix

                              Function up has 44 lines of code (exceeds 25 allowed). Consider refactoring.
                              Open

                              exports.up = function up (done) {
                                // firstName 100
                                // lastName 100
                                // username 100
                                // email 200
                              Severity: Minor
                              Found in migrations/1487112733700-update-users-maxlengths.js - About 1 hr to fix

                                Function migrateV2 has 44 lines of code (exceeds 25 allowed). Consider refactoring.
                                Open

                                function migrateV2 (topic) {
                                  const html = topic._doc && topic._doc.summary
                                  const document = getDOM(html)
                                  if (!document) throw Error('Bad topic _doc')
                                  const divs = document.getElementsByTagName('div')
                                Severity: Minor
                                Found in migrations/1487112733708-update-topic-clauses.js - About 1 hr to fix

                                  Function postCsv has 44 lines of code (exceeds 25 allowed). Consider refactoring.
                                  Open

                                  function postCsv (req, res) {
                                    const body = req.body.csv
                                    csv2json(body, function (err, json) {
                                      if (err) {
                                        log('get csv: array to csv error', err)
                                  Severity: Minor
                                  Found in lib/api-v2/topics/csv.js - About 1 hr to fix

                                    Function create has 44 lines of code (exceeds 25 allowed). Consider refactoring.
                                    Open

                                    exports.create = function create (opts, attrs) {
                                      const user = opts.user
                                      const forum = opts.forum
                                    
                                      attrs.forum = forum._id
                                    Severity: Minor
                                    Found in lib/api-v2/db-api/topics/index.js - About 1 hr to fix

                                      Function commentsSyncFactory has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
                                      Open

                                      function commentsSyncFactory () {
                                        let items = []
                                      
                                        const params = {
                                          topicId: null,
                                      Severity: Minor
                                      Found in lib/site/topic-layout/topic-article/comments/connector.js - 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 removeComment has 42 lines of code (exceeds 25 allowed). Consider refactoring.
                                      Open

                                      exports.removeComment = (function () {
                                        function verifyPrivileges (forum, user, comment) {
                                          if (privileges.canDeleteComments(forum, user)) return comment
                                      
                                          if (!comment.author.equals(user._id)) {
                                      Severity: Minor
                                      Found in lib/api-v2/db-api/comments/index.js - About 1 hr to fix
                                        Severity
                                        Category
                                        Status
                                        Source
                                        Language