dsi-icl/optimise

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

Summary

Maintainability
F
6 days
Test Coverage

File treatmentInterruptions.jsx has 345 lines of code (exceeds 250 allowed). Consider refactoring.
Open

import React, { Component } from 'react';
import { connect } from 'react-redux';
import moment from 'moment';
import { BackButton } from './utils';
import { PickDate } from '../createMedicalElements/datepicker';

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

        render() {
            const { patientProfile, fields } = this.props;
            const { interruptionReasons, meddra_Hash } = fields;
    
            let _style = style;

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

          render() {
              const { patientProfile, fields } = this.props;
              const { interruptionReasons, meddra_Hash } = fields;
      
              let _style = style;

      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 14 (exceeds 5 allowed). Consider refactoring.
      Open

          _handleSubmit(ev) {
              ev.preventDefault();
              if (this.state.lastSubmit && (new Date()).getTime() - this.state.lastSubmit < 500 ? true : false)
                  return;
              if (!this.state.newStartDate || !this.state.newStartDate.isValid()) {

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

          render() {
              const { editing, startDate, endDate, noEndDate, reason, meddra, startDate_original, endDate_original, reason_original, meddra_original } = this.state;
              const { data, interruptionReasons, meddra_Hash } = this.props;
              return (
                  <div className={style.interruption} style={{

        Function _handleSubmit has 40 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;
                if (!this.state.newStartDate || !this.state.newStartDate.isValid()) {

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

              render() {
                  const { editing, startDate, endDate, noEndDate, reason, meddra, startDate_original, endDate_original, reason_original, meddra_original } = this.state;
                  const { data, interruptionReasons, meddra_Hash } = this.props;
                  return (
                      <div className={style.interruption} style={{

          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

              constructor() {
                  super();
                  this.state = {
                      addMore: false,
                      newStartDate: moment(),
          packages/optimise-ui/src/components/editMedicalElements/editPregnancy.jsx on lines 19..37

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

          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

                                          <select onChange={this._handleReasonChange} value={reason}>
                                              <option value='unselected'></option>
                                              {interruptionReasons.map(el => <option key={el.id} value={el.id}>{el.value}</option>)}
                                          </select><br /><br />
          packages/optimise-ui/src/components/editMedicalElements/editPregnancy.jsx on lines 331..334
          packages/optimise-ui/src/components/editMedicalElements/editPrimaryDiagnosis.jsx on lines 244..247

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

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

                              <div className={_style.ariane}>
                                  <h2>Treatment Interruptions</h2>
                                  <BackButton to={`/patientProfile/${this.props.match.params.patientId}`} />
                              </div>
          packages/optimise-ui/src/components/editMedicalElements/createConmitantMeds.jsx on lines 42..45
          packages/optimise-ui/src/components/editMedicalElements/editComorbidity.jsx on lines 76..79
          packages/optimise-ui/src/components/editMedicalElements/editPregnancy.jsx on lines 127..130
          packages/optimise-ui/src/components/editMedicalElements/editPrimaryDiagnosis.jsx on lines 91..94

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

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

                  this.setState({
                      lastSubmit: (new Date()).getTime(),
                      error: false
                  }, () => {
                      store.dispatch(createTreatmentInterruptionAPICall(body));
          packages/optimise-ui/src/components/editMedicalElements/editComorbidity.jsx on lines 55..61
          packages/optimise-ui/src/components/editMedicalElements/editComorbidity.jsx on lines 177..183
          packages/optimise-ui/src/components/editMedicalElements/editPregnancy.jsx on lines 107..113
          packages/optimise-ui/src/components/editMedicalElements/editPregnancy.jsx on lines 262..268
          packages/optimise-ui/src/components/medicalData/treatmentInterruptions.jsx on lines 276..282
          packages/optimise-ui/src/components/pregnancyForms/pregImage.jsx on lines 210..216

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

                  this.setState({
                      lastSubmit: (new Date()).getTime(),
                      error: false
                  }, () => {
                      store.dispatch(editTreatmentInterruptionAPICall(body));
          packages/optimise-ui/src/components/editMedicalElements/editComorbidity.jsx on lines 55..61
          packages/optimise-ui/src/components/editMedicalElements/editComorbidity.jsx on lines 177..183
          packages/optimise-ui/src/components/editMedicalElements/editPregnancy.jsx on lines 107..113
          packages/optimise-ui/src/components/editMedicalElements/editPregnancy.jsx on lines 262..268
          packages/optimise-ui/src/components/medicalData/treatmentInterruptions.jsx on lines 108..114
          packages/optimise-ui/src/components/pregnancyForms/pregImage.jsx on lines 210..216

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

                  if (!this.state.noEndDate && (!this.state.endDate || !this.state.endDate.isValid())) {
                      this.setState({
                          error: 'Please select an end date'
                      });
                      return;
          packages/optimise-ui/src/components/editMedicalElements/editPregnancy.jsx on lines 84..89
          packages/optimise-ui/src/components/editMedicalElements/editPregnancy.jsx on lines 239..244
          packages/optimise-ui/src/components/medicalData/treatmentInterruptions.jsx on lines 84..89

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

                  if (!this.state.noEndDate && (!this.state.newEndDate || !this.state.newEndDate.isValid())) {
                      this.setState({
                          error: 'Please select an end date'
                      });
                      return;
          packages/optimise-ui/src/components/editMedicalElements/editPregnancy.jsx on lines 84..89
          packages/optimise-ui/src/components/editMedicalElements/editPregnancy.jsx on lines 239..244
          packages/optimise-ui/src/components/medicalData/treatmentInterruptions.jsx on lines 253..258

          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 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/patientProfile/patientProfile.jsx on lines 281..281
          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 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 354..354
          packages/optimise-ui/src/components/patientProfile/patientProfile.jsx on lines 281..281
          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

                  const { editing, startDate, endDate, noEndDate, reason, meddra, startDate_original, endDate_original, reason_original, meddra_original } = this.state;
          packages/optimise-ui/src/components/editMedicalElements/editPregnancy.jsx on lines 315..315

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

              _handleClickDelete = () => {
                  store.dispatch(addAlert({ alert: 'Do you want to delete this interruption record?', handler: this._deleteFunction(this.props.data.id) }));
              };
          packages/optimise-ui/src/components/editMedicalElements/createConmitantMeds.jsx on lines 148..155
          packages/optimise-ui/src/components/editMedicalElements/editComorbidity.jsx on lines 141..143
          packages/optimise-ui/src/components/editMedicalElements/editPregnancy.jsx on lines 211..213
          packages/optimise-ui/src/components/editMedicalElements/editPrimaryDiagnosis.jsx on lines 157..159
          packages/optimise-ui/src/components/pregnancyForms/pregImage.jsx on lines 159..161

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

                  if (!this.state.startDate || !this.state.startDate.isValid()) {
                      this.setState({
                          error: 'Please select a start date'
                      });
                      return;
          packages/optimise-ui/src/components/editMedicalElements/editPregnancy.jsx on lines 78..83
          packages/optimise-ui/src/components/editMedicalElements/editPregnancy.jsx on lines 233..238
          packages/optimise-ui/src/components/editMedicalElements/editPrimaryDiagnosis.jsx on lines 179..184
          packages/optimise-ui/src/components/medicalData/treatmentInterruptions.jsx on lines 78..83

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

                  if (!this.state.newStartDate || !this.state.newStartDate.isValid()) {
                      this.setState({
                          error: 'Please select a start date'
                      });
                      return;
          packages/optimise-ui/src/components/editMedicalElements/editPregnancy.jsx on lines 78..83
          packages/optimise-ui/src/components/editMedicalElements/editPregnancy.jsx on lines 233..238
          packages/optimise-ui/src/components/editMedicalElements/editPrimaryDiagnosis.jsx on lines 179..184
          packages/optimise-ui/src/components/medicalData/treatmentInterruptions.jsx on lines 247..252

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

              _handleEditClick = ev => {
                  ev.preventDefault();
                  this.setState(prevState => ({
                      editing: !prevState.editing,
                      error: false
          packages/optimise-ui/src/components/editMedicalElements/createConmitantMeds.jsx on lines 219..225
          packages/optimise-ui/src/components/editMedicalElements/editComorbidity.jsx on lines 186..192
          packages/optimise-ui/src/components/editMedicalElements/editPregnancy.jsx on lines 271..277
          packages/optimise-ui/src/components/editMedicalElements/editPrimaryDiagnosis.jsx on lines 208..214
          packages/optimise-ui/src/components/pregnancyForms/pregImage.jsx on lines 219..225

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

          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.reason || this.state.reason === 'unselected') {
                      this.setState({
                          error: 'Please select a reason'
                      });
                      return;
          packages/optimise-ui/src/components/editMedicalElements/editPrimaryDiagnosis.jsx on lines 61..66
          packages/optimise-ui/src/components/editMedicalElements/editPrimaryDiagnosis.jsx on lines 185..190
          packages/optimise-ui/src/components/medicalData/treatmentInterruptions.jsx on lines 259..264

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

                  if (!this.state.reason || this.state.reason === 'unselected') {
                      this.setState({
                          error: 'Please select a reason'
                      });
                      return;
          packages/optimise-ui/src/components/editMedicalElements/editPrimaryDiagnosis.jsx on lines 61..66
          packages/optimise-ui/src/components/editMedicalElements/editPrimaryDiagnosis.jsx on lines 185..190
          packages/optimise-ui/src/components/medicalData/treatmentInterruptions.jsx on lines 90..95

          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

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

                                      <span title='Edit' onClick={this._handleEditClick} className={style.dataEdit}><Icon symbol='edit' /></span>
          packages/optimise-ui/src/components/editMedicalElements/createConmitantMeds.jsx on lines 257..257
          packages/optimise-ui/src/components/editMedicalElements/editComorbidity.jsx on lines 222..222
          packages/optimise-ui/src/components/editMedicalElements/editPregnancy.jsx on lines 350..350
          packages/optimise-ui/src/components/editMedicalElements/editPrimaryDiagnosis.jsx on lines 258..258
          packages/optimise-ui/src/components/pregnancyForms/pregImage.jsx on lines 279..279

          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

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

                                      {meddra_original ? <><label>MedDRA: </label> {meddra_Hash[0][meddra_original].name} <br /></> : null}
          packages/optimise-ui/src/components/editMedicalElements/editPregnancy.jsx on lines 348..348

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

                          end_date: !this.state.noEndDate && this.state.newEndDate ? this.state.newEndDate.toISOString() : null,
          packages/optimise-ui/src/components/editMedicalElements/editPregnancy.jsx on lines 257..257
          packages/optimise-ui/src/components/medicalData/treatmentInterruptions.jsx on lines 271..271

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

                          end_date: !this.state.noEndDate && this.state.endDate ? this.state.endDate.toISOString() : null,
          packages/optimise-ui/src/components/editMedicalElements/editPregnancy.jsx on lines 257..257
          packages/optimise-ui/src/components/medicalData/treatmentInterruptions.jsx on lines 102..102

          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

                                      {endDate_original ? <><label>End date: </label> {endDate_original._d.toDateString()}<br /></> : null}
          packages/optimise-ui/src/components/editMedicalElements/editPregnancy.jsx on lines 346..346

          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