dsi-icl/optimise

View on GitHub
packages/optimise-ui/src/components/EDSScalculator/calculator.jsx

Summary

Maintainability
F
5 days
Test Coverage

Function edssAlgorithm has a Cognitive Complexity of 40 (exceeds 5 allowed). Consider refactoring.
Open

function edssAlgorithm(FSArrayWithoutAmbulation, ambulationScore) {

    if (FSArrayWithoutAmbulation.length === 0)
        return '';
Severity: Minor
Found in packages/optimise-ui/src/components/EDSScalculator/calculator.jsx - About 6 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 calculator.jsx has 366 lines of code (exceeds 250 allowed). Consider refactoring.
Open

import React, { Component, Fragment } from 'react';
import { Redirect } from 'react-router-dom';
import { connect } from 'react-redux';
import { BackButton } from '../medicalData/utils';
import Helmet from '../scaffold/helmet';
Severity: Minor
Found in packages/optimise-ui/src/components/EDSScalculator/calculator.jsx - About 4 hrs to fix

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

        render() {
    
            if (!this.originalValues || !this.EDSSFields_Hash_reverse || !this.EDSSFields) return null;
    
            const { match: { params }, patientProfile: { visits } } = this.props;
    Severity: Major
    Found in packages/optimise-ui/src/components/EDSScalculator/calculator.jsx - About 3 hrs to fix

      Function edssAlgorithm has 82 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      function edssAlgorithm(FSArrayWithoutAmbulation, ambulationScore) {
      
          if (FSArrayWithoutAmbulation.length === 0)
              return '';
      
      Severity: Major
      Found in packages/optimise-ui/src/components/EDSScalculator/calculator.jsx - About 3 hrs to fix

        Function _handleSubmit has a Cognitive Complexity of 22 (exceeds 5 allowed). Consider refactoring.
        Open

            _handleSubmit(ev) {
                ev.preventDefault();
                if (this.state.lastSubmit && (new Date()).getTime() - this.state.lastSubmit < 500 ? true : false)
                    return;
                const criteria = [
        Severity: Minor
        Found in packages/optimise-ui/src/components/EDSScalculator/calculator.jsx - About 3 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 _handleSubmit has 52 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            _handleSubmit(ev) {
                ev.preventDefault();
                if (this.state.lastSubmit && (new Date()).getTime() - this.state.lastSubmit < 500 ? true : false)
                    return;
                const criteria = [
        Severity: Major
        Found in packages/optimise-ui/src/components/EDSScalculator/calculator.jsx - About 2 hrs to fix

          Function render has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
          Open

              render() {
          
                  if (!this.originalValues || !this.EDSSFields_Hash_reverse || !this.EDSSFields) return null;
          
                  const { match: { params }, patientProfile: { visits } } = this.props;
          Severity: Minor
          Found in packages/optimise-ui/src/components/EDSScalculator/calculator.jsx - 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 _handleClick has 36 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              _handleClick(ev) {
                  ev.target.nextSibling.checked = true;
                  const value = ev.target.nextSibling.value;
                  const radioGroup = ev.target.parentElement.parentElement.children;
                  for (let i = 0; i < radioGroup.length; i++) {
          Severity: Minor
          Found in packages/optimise-ui/src/components/EDSScalculator/calculator.jsx - About 1 hr to fix

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

                _handleClick(ev) {
                    ev.target.nextSibling.checked = true;
                    const value = ev.target.nextSibling.value;
                    const radioGroup = ev.target.parentElement.parentElement.children;
                    for (let i = 0; i < radioGroup.length; i++) {
            Severity: Minor
            Found in packages/optimise-ui/src/components/EDSScalculator/calculator.jsx - 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

            Avoid too many return statements within this function.
            Open

                            return 4.5;
            Severity: Major
            Found in packages/optimise-ui/src/components/EDSScalculator/calculator.jsx - About 30 mins to fix

              Avoid too many return statements within this function.
              Open

                                      return 2.5;
              Severity: Major
              Found in packages/optimise-ui/src/components/EDSScalculator/calculator.jsx - About 30 mins to fix

                Avoid too many return statements within this function.
                Open

                            return 4;
                Severity: Major
                Found in packages/optimise-ui/src/components/EDSScalculator/calculator.jsx - About 30 mins to fix

                  Avoid too many return statements within this function.
                  Open

                                              return 3.5;
                  Severity: Major
                  Found in packages/optimise-ui/src/components/EDSScalculator/calculator.jsx - About 30 mins to fix

                    Avoid too many return statements within this function.
                    Open

                                            return 2;
                    Severity: Major
                    Found in packages/optimise-ui/src/components/EDSScalculator/calculator.jsx - About 30 mins to fix

                      Avoid too many return statements within this function.
                      Open

                                      return 5;
                      Severity: Major
                      Found in packages/optimise-ui/src/components/EDSScalculator/calculator.jsx - About 30 mins to fix

                        Avoid too many return statements within this function.
                        Open

                                                return 3.5;
                        Severity: Major
                        Found in packages/optimise-ui/src/components/EDSScalculator/calculator.jsx - About 30 mins to fix

                          Avoid too many return statements within this function.
                          Open

                                          return 6;
                          Severity: Major
                          Found in packages/optimise-ui/src/components/EDSScalculator/calculator.jsx - About 30 mins to fix

                            Avoid too many return statements within this function.
                            Open

                                            return 5;
                            Severity: Major
                            Found in packages/optimise-ui/src/components/EDSScalculator/calculator.jsx - About 30 mins to fix

                              Avoid too many return statements within this function.
                              Open

                                                          return 3;
                              Severity: Major
                              Found in packages/optimise-ui/src/components/EDSScalculator/calculator.jsx - About 30 mins to fix

                                Avoid too many return statements within this function.
                                Open

                                                return 4.5;
                                Severity: Major
                                Found in packages/optimise-ui/src/components/EDSScalculator/calculator.jsx - About 30 mins to fix

                                  Avoid too many return statements within this function.
                                  Open

                                              return 4;
                                  Severity: Major
                                  Found in packages/optimise-ui/src/components/EDSScalculator/calculator.jsx - About 30 mins to fix

                                    Avoid too many return statements within this function.
                                    Open

                                                    return maxScore - 1;
                                    Severity: Major
                                    Found in packages/optimise-ui/src/components/EDSScalculator/calculator.jsx - About 30 mins to fix

                                      Avoid too many return statements within this function.
                                      Open

                                                              return 1;
                                      Severity: Major
                                      Found in packages/optimise-ui/src/components/EDSScalculator/calculator.jsx - About 30 mins to fix

                                        Avoid too many return statements within this function.
                                        Open

                                                                return 1.5;
                                        Severity: Major
                                        Found in packages/optimise-ui/src/components/EDSScalculator/calculator.jsx - About 30 mins to fix

                                          Function componentDidMount has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                                          Open

                                              componentDidMount() {    //this basically adds the originalValues and EDSSFields
                                                  const { visitFields, patientProfile, match } = this.props;
                                                  const { params } = match;
                                                  const EDSSFields = visitFields.filter(el => /^edss:(.*)/.test(el.idname));
                                                  if (EDSSFields.length !== 9) {
                                          Severity: Minor
                                          Found in packages/optimise-ui/src/components/EDSScalculator/calculator.jsx - 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

                                                  const body = { data: { add, update, visitId: this.props.match.params.visitId }, patientId: this.props.match.params.patientId, type: 'visit' };
                                          packages/optimise-ui/src/components/editMedicalElements/editEdss.jsx on lines 64..64

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

                                          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

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

                                                          this.originalValues = data.filter(el => edssFieldsId.includes(el.field)).reduce((a, el) => { a[el.field] = parseFloat(el.value); return a; }, {});
                                          packages/optimise-ui/src/components/editMedicalElements/editEdss.jsx on lines 38..38

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

                                          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

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

                                                                      { this.state.saved ? <><button disabled style={{ cursor: 'default', backgroundColor: 'green' }}>Successfully saved!</button><br/></> : null }
                                          packages/optimise-ui/src/components/medicalData/ceDataPage.jsx on lines 172..172
                                          packages/optimise-ui/src/components/medicalData/testDataPage.jsx on lines 167..167
                                          packages/optimise-ui/src/components/medicalData/visitDataPage.jsx on lines 172..172
                                          packages/optimise-ui/src/components/pregnancyForms/pregnancyEntry.jsx on lines 864..864

                                          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

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

                                                                                                  className={typeof originalValues[EDSSFields_Hash_reverse[el.idname]] !== 'undefined' && number === parseFloat(this.originalValues[this.EDSSFields_Hash_reverse[el.idname]]) ? [style.radioButton, style.radioClicked].join(' ') : style.radioButton}
                                          packages/optimise-ui/src/components/EDSScalculator/calculator.jsx on lines 255..255

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

                                          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

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

                                                                                              <input type='radio' name={el.idname} value={number} defaultChecked={typeof originalValues[EDSSFields_Hash_reverse[el.idname]] !== 'undefined' && number === parseFloat(this.originalValues[this.EDSSFields_Hash_reverse[el.idname]]) ? true : false} />
                                          packages/optimise-ui/src/components/EDSScalculator/calculator.jsx on lines 250..250

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

                                          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 30 locations. Consider refactoring.
                                          Open

                                                  if (this.state.lastSubmit && (new Date()).getTime() - this.state.lastSubmit < 500 ? true : false)
                                                      return;
                                          packages/optimise-ui/src/components/createMedicalElements/createCE.jsx on lines 88..89
                                          packages/optimise-ui/src/components/createMedicalElements/createTest.jsx on lines 69..70
                                          packages/optimise-ui/src/components/createMedicalElements/createTreatment.jsx on lines 92..93
                                          packages/optimise-ui/src/components/createMedicalElements/createVisit.jsx on lines 69..70
                                          packages/optimise-ui/src/components/createPatient/createPatient.jsx on lines 113..114
                                          packages/optimise-ui/src/components/editMedicalElements/createConmitantMeds.jsx on lines 187..188
                                          packages/optimise-ui/src/components/editMedicalElements/createConmitantMeds.jsx on lines 328..329
                                          packages/optimise-ui/src/components/editMedicalElements/editClinicalEvent.jsx on lines 173..174
                                          packages/optimise-ui/src/components/editMedicalElements/editCommunication.jsx on lines 221..222
                                          packages/optimise-ui/src/components/editMedicalElements/editComorbidity.jsx on lines 39..40
                                          packages/optimise-ui/src/components/editMedicalElements/editComorbidity.jsx on lines 161..162
                                          packages/optimise-ui/src/components/editMedicalElements/editDemographic.jsx on lines 87..88
                                          packages/optimise-ui/src/components/editMedicalElements/editEdss.jsx on lines 48..49
                                          packages/optimise-ui/src/components/editMedicalElements/editMedication.jsx on lines 169..170
                                          packages/optimise-ui/src/components/editMedicalElements/editPregnancy.jsx on lines 76..77
                                          packages/optimise-ui/src/components/editMedicalElements/editPregnancy.jsx on lines 231..232
                                          packages/optimise-ui/src/components/editMedicalElements/editPrimaryDiagnosis.jsx on lines 52..53
                                          packages/optimise-ui/src/components/editMedicalElements/editPrimaryDiagnosis.jsx on lines 177..178
                                          packages/optimise-ui/src/components/editMedicalElements/editTest.jsx on lines 152..153
                                          packages/optimise-ui/src/components/editMedicalElements/editVisit.jsx on lines 99..100
                                          packages/optimise-ui/src/components/medicalData/ceDataPage.jsx on lines 64..65
                                          packages/optimise-ui/src/components/medicalData/testDataPage.jsx on lines 65..66
                                          packages/optimise-ui/src/components/medicalData/treatmentInterruptions.jsx on lines 76..77
                                          packages/optimise-ui/src/components/medicalData/treatmentInterruptions.jsx on lines 245..246
                                          packages/optimise-ui/src/components/medicalData/visitDataPage.jsx on lines 67..68
                                          packages/optimise-ui/src/components/patientProfile/patientProfile.jsx on lines 218..219
                                          packages/optimise-ui/src/components/pregnancyForms/pregImage.jsx on lines 59..60
                                          packages/optimise-ui/src/components/pregnancyForms/pregImage.jsx on lines 178..179
                                          packages/optimise-ui/src/components/pregnancyForms/pregnancyEntry.jsx on lines 426..427

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

                                          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

                                                  this.EDSSFields_Hash_reverse = EDSSFields.reduce((a, el) => { a[el.idname] = el.id; return a; }, {});
                                          packages/optimise-ui/src/components/EDSScalculator/calculator.jsx on lines 54..54

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

                                          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

                                                  this.EDSSFields_Hash = EDSSFields.reduce((a, el) => { a[el.id] = el.idname; return a; }, {});
                                          packages/optimise-ui/src/components/EDSScalculator/calculator.jsx on lines 55..55

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

                                          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 4 locations. Consider refactoring.
                                          Open

                                                              <BackButton to={`/patientProfile/${this.props.match.params.patientId}/edit/msPerfMeas/${params.visitId}`} />
                                          packages/optimise-ui/src/components/patientProfile/fullTimeline.jsx on lines 318..340
                                          packages/optimise-ui/src/components/patientProfile/fullTimeline.jsx on lines 382..389
                                          packages/optimise-ui/src/components/patientProfile/fullTimeline.jsx on lines 416..419

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

                                          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