DemocracyOS/democracyos

View on GitHub
lib/admin/admin-topics-form/view.js

Summary

Maintainability
D
2 days
Test Coverage

File view.js has 281 lines of code (exceeds 250 allowed). Consider refactoring.
Open

import React from 'react'
import { render as ReactRender } from 'react-dom'
import closest from 'component-closest'
import confirm from 'democracyos-confirmation'
import Datepicker from 'democracyos-datepicker'
Severity: Minor
Found in lib/admin/admin-topics-form/view.js - About 2 hrs to fix

    Function switchOn has 41 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

      switchOn () {
        this.bind('click', '.add-link', this.bound('onaddlinkclick'))
        this.bind('click', '.forum-tag', this.bound('onaddforumtagclick'))
        this.bind('click', '[data-remove-link]', this.bound('onremovelinkclick'))
        this.bind('click', '.save', this.bound('onsaveclick'))
    Severity: Minor
    Found in lib/admin/admin-topics-form/view.js - About 1 hr to fix

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

        constructor (topic, forum, tags) {
          const locals = {
            form: { title: null, action: null, method: null, type: null },
            topic: topic || { clauses: [] },
            tags: tags,
      Severity: Minor
      Found in lib/admin/admin-topics-form/view.js - About 1 hr to fix

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

          postserialize (data = {}) {
            if (data['links[][text]']) {
              data.links = data['links[][text]'].map((text, i) => ({
                _id: data['links[][_id]'][i] || undefined,
                url: data['links[][url]'][i],
        Severity: Minor
        Found in lib/admin/admin-topics-form/view.js - About 1 hr to fix

          Function postserialize has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
          Open

            postserialize (data = {}) {
              if (data['links[][text]']) {
                data.links = data['links[][text]'].map((text, i) => ({
                  _id: data['links[][_id]'][i] || undefined,
                  url: data['links[][url]'][i],
          Severity: Minor
          Found in lib/admin/admin-topics-form/view.js - About 45 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 ondeletetopicclick has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
          Open

            ondeletetopicclick (ev) {
              ev.preventDefault()
          
              const _t = (s) => t(`admin-topics-form.delete-topic.confirmation.${s}`)
          
          
          Severity: Minor
          Found in lib/admin/admin-topics-form/view.js - About 25 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 constructor has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
          Open

            constructor (topic, forum, tags) {
              const locals = {
                form: { title: null, action: null, method: null, type: null },
                topic: topic || { clauses: [] },
                tags: tags,
          Severity: Minor
          Found in lib/admin/admin-topics-form/view.js - About 25 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

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

              confirm(_t('title'), _t('body'))
                .cancel(_t('cancel'))
                .ok(_t('ok'))
                .modal()
                .closable()
          Severity: Major
          Found in lib/admin/admin-topics-form/view.js and 1 other location - About 1 hr to fix
          lib/admin/admin-topics/view.js on lines 86..92

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

          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

              if (this.find('.method-input')[0].value === 'hierarchy' && this.find('.hierarchy-options > input')[0].value === '') {
                this.messages(t('admin-topics-form.message.validation.hierarchyOptions-required'), 'error')
                return
              }
          Severity: Major
          Found in lib/admin/admin-topics-form/view.js and 1 other location - About 1 hr to fix
          lib/admin/admin-topics-form/view.js on lines 211..214

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

          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

              if (this.find('.method-input')[0].value === 'poll' && this.find('.poll-options > input')[0].value === '') {
                this.messages(t('admin-topics-form.message.validation.pollOptions-required'), 'error')
                return
              }
          Severity: Major
          Found in lib/admin/admin-topics-form/view.js and 1 other location - About 1 hr to fix
          lib/admin/admin-topics-form/view.js on lines 215..218

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

          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

              if (data['action.options'] && data['action.method'] === 'hierarchy') {
                data['action.options'] = data['action.options'][1].split(',')
              }
          Severity: Minor
          Found in lib/admin/admin-topics-form/view.js and 1 other location - About 45 mins to fix
          lib/admin/admin-topics-form/view.js on lines 243..245

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

          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

              if (data['action.options'] && data['action.method'] === 'poll') {
                data['action.options'] = data['action.options'][0].split(',')
              }
          Severity: Minor
          Found in lib/admin/admin-topics-form/view.js and 1 other location - About 45 mins to fix
          lib/admin/admin-topics-form/view.js on lines 247..249

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

          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

              } else if (!~this.find('input[name="tags"]')[0].value.indexOf(e.target.dataset.value)) {
                this.find('input[name="tags"]')[0].value += `,${e.target.dataset.value}`
              } else {
                return
              }
          Severity: Minor
          Found in lib/admin/admin-topics-form/view.js and 1 other location - About 40 mins to fix
          lib/admin/admin-topics-form/view.js on lines 348..354

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

          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

              if (this.find('input[name="tags"]')[0].value.length === 0) {
                this.find('input[name="tags"]')[0].value = `${e.target.dataset.value}`
              } else if (!~this.find('input[name="tags"]')[0].value.indexOf(e.target.dataset.value)) {
                this.find('input[name="tags"]')[0].value += `,${e.target.dataset.value}`
              } else {
          Severity: Minor
          Found in lib/admin/admin-topics-form/view.js and 1 other location - About 40 mins to fix
          lib/admin/admin-topics-form/view.js on lines 350..354

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

          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