dsi-icl/optimise

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

Summary

Maintainability
F
6 days
Test Coverage

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

    render() {
        const { drug, dose, unit, form, times } = this.state;
        const { drugs } = this.props;
        return (
            <>

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

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

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    File editMedication.jsx has 259 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    import React, { Component } from 'react';
    import { connect } from 'react-redux';
    import moment from 'moment';
    import { NavLink } from 'react-router-dom';
    import { BackButton } from '../medicalData/utils';

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

          render() {
              const { params } = this.props.match;
              const { treatments, renderedInFrontPage } = this.props;
              const { wannaUpdate } = this.state;
              if (!treatments) {

        Function _handleSubmit has 42 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 a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
          Open

              render() {
                  const { params } = this.props.match;
                  const { treatments, renderedInFrontPage } = this.props;
                  const { wannaUpdate } = this.state;
                  if (!treatments) {

          Cognitive Complexity

          Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

          A method's cognitive complexity is based on a few simple rules:

          • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
          • Code is considered more complex for each "break in the linear flow of the code"
          • Code is considered more complex when "flow breaking structures are nested"

          Further reading

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

              constructor(props) {
                  super();
                  this.state = {
                      id: props.data.id,
                      drug: props.data.drug ? props.data.drug : '',

          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

                          {this.state.noEndDate ? null :
                              (<><label htmlFor='terminatedDate'>End date: </label>
                                  <PickDate startDate={this.state.terminatedDate ? this.state.terminatedDate : moment()} handleChange={this._handleTerminatedDateChange} /><br /><br />
                                  <label>Reason for termination:
                                      <select name='terminatedReason' value={this.state.terminatedReason} onChange={this._handleChange}>
          packages/optimise-ui/src/components/createMedicalElements/createTreatment.jsx on lines 193..202

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

          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 name='intervalUnit' value={this.state.intervalUnit} onChange={this._handleChange} autoComplete='off'>
                              <option value='unselected'></option>
                              <option value='day'>per day</option>
                              <option value='week'>per week</option>
                              <option value='6weeks'>per six weeks</option>
          packages/optimise-ui/src/components/createMedicalElements/createTreatment.jsx on lines 166..174
          packages/optimise-ui/src/components/createMedicalElements/createTreatment.jsx on lines 183..191

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

          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

              _deleteFunction() {
                  const { params } = this.props.match;
                  const { renderedInFrontPage } = this.props;
                  const body = { patientId: params.patientId, data: { treatmentId: parseInt(params.elementId) }, to: renderedInFrontPage ? `/patientProfile/${params.patientId}/visitFrontPage/${params.visitId}/page/${params.currentPage}${this.props.location.search}` : `/patientProfile/${params.patientId}` };
                  store.dispatch(deleteTreatmentCall(body));
          packages/optimise-ui/src/components/editMedicalElements/editClinicalEvent.jsx on lines 46..51
          packages/optimise-ui/src/components/editMedicalElements/editTest.jsx on lines 44..49

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

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

                                      {
                                          renderedInFrontPage ?
                                              <>
                                                  <br/><br/><br/>
                                                  <NavLink to={`/patientProfile/${params.patientId}/visitFrontPage/${params.visitId}/page/${params.currentPage}${this.props.location.search}`}><button>Back</button></NavLink>
          packages/optimise-ui/src/components/editMedicalElements/editClinicalEvent.jsx on lines 86..94
          packages/optimise-ui/src/components/editMedicalElements/editTest.jsx on lines 83..91

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

          We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

          The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

          If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

          See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

          Refactorings

          Further Reading

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

                  if (!this.state.noEndDate && (!this.state.terminatedDate || !this.state.terminatedDate.isValid() || this.state.terminatedReason === 'unselected')) {
                      return this.setState({
                          error: 'Please indicate the termination date and reason of the treatment'
                      });
                  }
          packages/optimise-ui/src/components/createMedicalElements/createTreatment.jsx on lines 100..104

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

          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

                      to: this.props.renderedInFrontPage ? `${this.props.location.pathname}${this.props.location.search}` : `/patientProfile/${patientId}/edit/treatment/${id}`,
          packages/optimise-ui/src/components/editMedicalElements/editClinicalEvent.jsx on lines 190..190
          packages/optimise-ui/src/components/editMedicalElements/editTest.jsx on lines 176..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 69.

          We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

          The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

          If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

          See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

          Refactorings

          Further Reading

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

              static getDerivedStateFromProps(props, state) {
                  if (props.match.params.elementId === state.elementId)
                      return state;
                  return {
                      ...state,
          packages/optimise-ui/src/components/editMedicalElements/editClinicalEvent.jsx on lines 26..34
          packages/optimise-ui/src/components/editMedicalElements/editTest.jsx on lines 24..32

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

          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

              _handleChange(ev) {
                  const newState = {};
                  newState[ev.target.name] = ev.target.value;
                  newState.error = false;
                  this.setState(newState);
          packages/optimise-ui/src/components/createMedicalElements/createVisit.jsx on lines 36..41

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

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

                          <div className={_style.ariane}>
                              <h2>Edit Treatment</h2>
                              <BackButton to={`/patientProfile/${params.patientId}`} />
                          </div>
          packages/optimise-ui/src/components/createMedicalElements/createCE.jsx on lines 133..136
          packages/optimise-ui/src/components/createMedicalElements/createTest.jsx on lines 112..115
          packages/optimise-ui/src/components/createMedicalElements/createTreatment.jsx on lines 143..146
          packages/optimise-ui/src/components/createMedicalElements/createVisit.jsx on lines 94..97
          packages/optimise-ui/src/components/editMedicalElements/editClinicalEvent.jsx on lines 70..73
          packages/optimise-ui/src/components/editMedicalElements/editCommunication.jsx on lines 41..44
          packages/optimise-ui/src/components/editMedicalElements/editCommunication.jsx on lines 78..81
          packages/optimise-ui/src/components/editMedicalElements/editDemographic.jsx on lines 20..23
          packages/optimise-ui/src/components/editMedicalElements/editEdss.jsx on lines 87..90
          packages/optimise-ui/src/components/editMedicalElements/editTest.jsx on lines 69..72
          packages/optimise-ui/src/components/editMedicalElements/editVisit.jsx on lines 161..164

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

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

                  if (!this.state.startDate || !this.state.startDate.isValid()) {
                      return this.setState({
                          error: 'Please indicate the start date of the treatment'
                      });
                  }
          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/patientProfile/patientProfile.jsx on lines 227..231

          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

                  this.setState({
                      lastSubmit: (new Date()).getTime(),
                      error: false
                  }, () => {
                      store.dispatch(updateTreatmentCall(body));
          packages/optimise-ui/src/components/editMedicalElements/editClinicalEvent.jsx on lines 199..204

          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 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/editPregnancy.jsx on lines 76..77
          packages/optimise-ui/src/components/editMedicalElements/editPregnancy.jsx on lines 231..232
          packages/optimise-ui/src/components/editMedicalElements/editPrimaryDiagnosis.jsx on lines 52..53
          packages/optimise-ui/src/components/editMedicalElements/editPrimaryDiagnosis.jsx on lines 177..178
          packages/optimise-ui/src/components/editMedicalElements/editTest.jsx on lines 152..153
          packages/optimise-ui/src/components/editMedicalElements/editVisit.jsx on lines 99..100
          packages/optimise-ui/src/components/medicalData/ceDataPage.jsx on lines 64..65
          packages/optimise-ui/src/components/medicalData/testDataPage.jsx on lines 65..66
          packages/optimise-ui/src/components/medicalData/treatmentInterruptions.jsx on lines 76..77
          packages/optimise-ui/src/components/medicalData/treatmentInterruptions.jsx on lines 245..246
          packages/optimise-ui/src/components/medicalData/visitDataPage.jsx on lines 67..68
          packages/optimise-ui/src/components/patientProfile/patientProfile.jsx on lines 218..219
          packages/optimise-ui/src/components/pregnancyForms/pregImage.jsx on lines 59..60
          packages/optimise-ui/src/components/pregnancyForms/pregImage.jsx on lines 178..179
          packages/optimise-ui/src/components/pregnancyForms/pregnancyEntry.jsx on lines 426..427

          Duplicated Code

          Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

          Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

          When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

          Tuning

          This issue has a mass of 49.

          We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

          The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

          If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

          See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

          Refactorings

          Further Reading

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

              _handleClick(ev) {
                  ev.preventDefault();
                  store.dispatch(addAlert({ alert: 'Are you sure you want to delete this medication record?', handler: this._deleteFunction }));
              }
          packages/optimise-ui/src/components/editMedicalElements/editClinicalEvent.jsx on lines 41..44
          packages/optimise-ui/src/components/editMedicalElements/editTest.jsx on lines 39..42
          packages/optimise-ui/src/components/editMedicalElements/editVisit.jsx on lines 118..121

          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

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

                          terminatedDate: this.state.terminatedDate && !this.state.noEndDate ? this.state.terminatedDate.toISOString() : undefined,
          packages/optimise-ui/src/components/createMedicalElements/createTreatment.jsx on lines 71..71

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

              _handleWannaUpdateClick(ev) {
                  ev.preventDefault();
                  this.setState(oldState => ({ wannaUpdate: !oldState.wannaUpdate }));
              }
          packages/optimise-ui/src/components/editMedicalElements/editClinicalEvent.jsx on lines 36..39
          packages/optimise-ui/src/components/editMedicalElements/editTest.jsx on lines 34..37
          packages/optimise-ui/src/components/medicalData/utils.jsx on lines 245..248

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

          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

                                      {wannaUpdate ? <UpdateMedEntry location={this.props.location} renderedInFrontPage={this.props.renderedInFrontPage} data={treatment} /> : null}
          packages/optimise-ui/src/components/createVisitFrontPage/templates/template.jsx on lines 28..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 45.

          We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

          The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

          If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

          See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

          Refactorings

          Further Reading

          There are no issues that match your filters.

          Category
          Status