dsi-icl/optimise

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

Summary

Maintainability
F
1 wk
Test Coverage

File patientProfile.jsx has 590 lines of code (exceeds 250 allowed). Consider refactoring.
Open

import React, { Component } from 'react';
import { connect } from 'react-redux';
import { Redirect } from 'react-router-dom';
import moment from 'moment';
import Icon from '../icon';
Severity: Major
Found in packages/optimise-ui/src/components/patientProfile/patientProfile.jsx - About 1 day to fix

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

        render() {
            const { data: { demographicData }, pii, fields } = this.props;
            const { showEditAliasId, editAliasIdInput } = this.state;
            if (demographicData) {
                let { DOB, countryOfOrigin, dominantHand, ethnicity, gender } = demographicData;

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

          render() {
              const { participation, optimiseConsent, pregnancySubStudyConsent } = this.props.data;
              const femalePatient = this.props.data.demographicData && this.props.data.demographicData.gender !== 1;
      
              return <>

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

            render() {
                const el = this.props.data;
        
                if (this.state.editing) {
                    return (

          Function _handleSubmit has 35 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;

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

                render() {
            
                    if (this.props.data.demographicData) {
                        if (this.props.data.demographicData.gender === 1)
                            return null;

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

                  render() {
              
                      if (this.props.data.demographicData) {
                          if (this.props.data.demographicData.gender === 1)
                              return null;

              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 render has 28 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                  render() {
                      const { data } = this.props;
                      return (
                          <PatientProfileSectionScaffold sectionName='Immunisations' active={this.state.addMore}>
                              <table cellSpacing={'1em'}>

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

                    render() {
                        if (this.props.data.diagnosis.length === 0) {
                            return (
                                <PatientProfileSectionScaffold sectionName='Last Primary MS Diagnosis' actions={
                                    <EditButton to={`/patientProfile/${this.props.patientId}/edit/diagnosis/data`} />

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

                      render() {
                          const { data: { demographicData }, pii, fields } = this.props;
                          const { showEditAliasId, editAliasIdInput } = this.state;
                          if (demographicData) {
                              let { DOB, countryOfOrigin, dominantHand, ethnicity, gender } = demographicData;
                  Severity: Minor
                  Found in packages/optimise-ui/src/components/patientProfile/patientProfile.jsx - About 55 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 render has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
                  Open

                      render() {
                          const { fetching, erasePatient } = this.props;
                  
                          if (fetching) {
                              return <span></span>;
                  Severity: Minor
                  Found in packages/optimise-ui/src/components/patientProfile/patientProfile.jsx - 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 _handleSubmit has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
                  Open

                      _handleSubmit(ev) {
                  
                          ev.preventDefault();
                          if (this.state.lastSubmit && (new Date()).getTime() - this.state.lastSubmit < 500 ? true : false)
                              return;
                  Severity: Minor
                  Found in packages/optimise-ui/src/components/patientProfile/patientProfile.jsx - 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

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

                              <PatientProfileSectionScaffold sectionName='Consent'>
                  
                                  {
                                      optimiseConsent ?
                                          <div>
                  packages/optimise-ui/src/components/patientProfile/patientProfile.jsx on lines 608..626

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

                  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

                                  ? <PatientProfileSectionScaffold sectionName='Pregnancy sub study consent'>
                                      {
                                          pregnancySubStudyConsent ?
                                              <div>
                                                  <span><b>Consent date</b>: {new Date(pregnancySubStudyConsent).toLocaleDateString()}</span>
                  packages/optimise-ui/src/components/patientProfile/patientProfile.jsx on lines 584..606

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

                  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

                      _handleClickGivesPregnancyConsent() {
                          const { id } = this.props.data;
                          const body = {
                              patientId: this.props.match.params.patientId,
                              data: {
                  packages/optimise-ui/src/components/patientProfile/patientProfile.jsx on lines 521..531

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

                  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

                      _handleClickGivesConsent() {
                          const { id } = this.props.data;
                          const body = {
                              patientId: this.props.match.params.patientId,
                              data: {
                  packages/optimise-ui/src/components/patientProfile/patientProfile.jsx on lines 551..561

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

                  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

                      _handleClickWithdrawPregnancyConsent() {
                          const { id } = this.props.data;
                          const body = {
                              patientId: this.props.match.params.patientId,
                              data: {
                  packages/optimise-ui/src/components/patientProfile/patientProfile.jsx on lines 509..519

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

                  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

                      _handleClickWithdrawConsent() {
                          const { id } = this.props.data;
                          const body = {
                              patientId: this.props.match.params.patientId,
                              data: {
                  packages/optimise-ui/src/components/patientProfile/patientProfile.jsx on lines 539..549

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

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

                                          {this.state.error ? <><div className={style.error}>{this.state.error}</div><br /></> : null}
                  packages/optimise-ui/src/components/admin/sync.jsx on lines 89..89
                  packages/optimise-ui/src/components/createMedicalElements/createCE.jsx on lines 153..153
                  packages/optimise-ui/src/components/createMedicalElements/createTest.jsx on lines 124..124
                  packages/optimise-ui/src/components/createMedicalElements/createTreatment.jsx on lines 203..203
                  packages/optimise-ui/src/components/createPatient/createPatient.jsx on lines 252..252
                  packages/optimise-ui/src/components/editMedicalElements/createConmitantMeds.jsx on lines 245..245
                  packages/optimise-ui/src/components/editMedicalElements/createConmitantMeds.jsx on lines 376..376
                  packages/optimise-ui/src/components/editMedicalElements/editClinicalEvent.jsx on lines 217..217
                  packages/optimise-ui/src/components/editMedicalElements/editComorbidity.jsx on lines 108..108
                  packages/optimise-ui/src/components/editMedicalElements/editComorbidity.jsx on lines 214..214
                  packages/optimise-ui/src/components/editMedicalElements/editMedication.jsx on lines 274..274
                  packages/optimise-ui/src/components/editMedicalElements/editPregnancy.jsx on lines 167..167
                  packages/optimise-ui/src/components/editMedicalElements/editPregnancy.jsx on lines 339..339
                  packages/optimise-ui/src/components/editMedicalElements/editTest.jsx on lines 203..203
                  packages/optimise-ui/src/components/medicalData/treatmentInterruptions.jsx on lines 176..176
                  packages/optimise-ui/src/components/medicalData/treatmentInterruptions.jsx on lines 354..354
                  packages/optimise-ui/src/components/pregnancyForms/pregImage.jsx on lines 269..269
                  packages/optimise-ui/src/components/pregnancyForms/pregnancyEntry.jsx on lines 865..865

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

                      constructor() {
                          super();
                          this._handleClickDelete = this._handleClickDelete.bind(this);
                          this._deleteFunction = this._deleteFunction.bind(this);
                      }
                  packages/optimise-ui/src/components/filterPatient/selectPanel.jsx on lines 5..9

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

                  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

                          const pregnancy = this.props.data.pregnancy.sort((a, b) => parseInt(b.startDate) - parseInt(a.startDate))[0];
                  packages/optimise-ui/src/components/patientProfile/patientProfile.jsx on lines 404..404

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

                  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

                          const diagnosis = this.props.data.diagnosis.sort((a, b) => parseInt(b.diagnosisDate) - parseInt(a.diagnosisDate))[0];
                  packages/optimise-ui/src/components/patientProfile/patientProfile.jsx on lines 453..453

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

                  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

                          if (!this.state.newDate || !this.state.newDate.isValid()) {
                              return this.setState({
                                  error: 'Please indicated the immunisation date'
                              });
                          }
                  packages/optimise-ui/src/components/createMedicalElements/createCE.jsx on lines 91..95
                  packages/optimise-ui/src/components/createMedicalElements/createTreatment.jsx on lines 95..99
                  packages/optimise-ui/src/components/editMedicalElements/editMedication.jsx on lines 172..176

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

                  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

                                      <PatientProfileSectionScaffold sectionName='Pregnancies' actions={
                                          <EditButton to={`/patientProfile/${this.props.data.patientId}/edit/pregnancy/data`} />
                                      }>
                                          No pregnancies recorded
                  
                  
                  packages/optimise-ui/src/components/patientProfile/patientProfile.jsx on lines 462..473

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

                  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

                              <PatientProfileSectionScaffold sectionName='Last Pregnancy' actions={
                                  <EditButton to={`/patientProfile/${this.props.data.patientId}/edit/pregnancy/data`} />
                  
                              }>
                                  <>
                  packages/optimise-ui/src/components/patientProfile/patientProfile.jsx on lines 444..449

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

                  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/EDSScalculator/calculator.jsx on lines 114..115
                  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/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 3 locations. Consider refactoring.
                  Open

                              <PatientProfileSectionScaffold sectionName='Last Primary MS Diagnosis' actions={
                                  <EditButton to={`/patientProfile/${this.props.patientId}/edit/diagnosis/data`} />
                              }>
                                  <>
                                      <label>Date of diagnosis: </label> {new Date(parseInt(diagnosis.diagnosisDate, 10)).toDateString()} < br />
                  packages/optimise-ui/src/components/patientProfile/patientProfile.jsx on lines 136..171
                  packages/optimise-ui/src/components/patientProfile/patientProfile.jsx on lines 396..400

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

                  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

                                  <PatientProfileSectionScaffold sectionName='Profile' actions={
                                      <EditButton to={`/patientProfile/${this.props.patientId}/edit/demographic/data`} />
                                  }>
                                      <label>Date of birth:</label> {new Date(parseInt(DOB, 10)).toDateString()}<br />
                                      <label>Gender:</label> <span>{gender}</span> <br />
                  packages/optimise-ui/src/components/patientProfile/patientProfile.jsx on lines 396..400
                  packages/optimise-ui/src/components/patientProfile/patientProfile.jsx on lines 415..422

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

                  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

                                  <PatientProfileSectionScaffold sectionName='Last Primary MS Diagnosis' actions={
                                      <EditButton to={`/patientProfile/${this.props.patientId}/edit/diagnosis/data`} />
                                  }>
                                      <i>No recorded diagnosis</i>
                                  </PatientProfileSectionScaffold>
                  packages/optimise-ui/src/components/patientProfile/patientProfile.jsx on lines 136..171
                  packages/optimise-ui/src/components/patientProfile/patientProfile.jsx on lines 415..422

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

                  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