dsi-icl/optimise

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

Summary

Maintainability
F
4 days
Test Coverage

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

    render() {
        if (!this.state.dispatched) {
            const { genders, dominant_hands, ethnicities, countries } = this.props.demofields;
            let genders_sorted = [];
            genders.forEach((el) => {
Severity: Major
Found in packages/optimise-ui/src/components/createPatient/createPatient.jsx - About 3 hrs to fix

    File createPatient.jsx has 256 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    import React, { Component } from 'react';
    import { connect } from 'react-redux';
    import { Redirect } from 'react-router-dom';
    import moment from 'moment';
    import { PickDate } from '../createMedicalElements/datepicker';
    Severity: Minor
    Found in packages/optimise-ui/src/components/createPatient/createPatient.jsx - About 2 hrs to fix

      Function _handleSubmit has 51 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;
      
      
      Severity: Major
      Found in packages/optimise-ui/src/components/createPatient/createPatient.jsx - About 2 hrs to fix

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

            _handleSubmit(ev) {
                ev.preventDefault();
                if (this.state.lastSubmit && (new Date()).getTime() - this.state.lastSubmit < 500 ? true : false)
                    return;
        
        
        Severity: Minor
        Found in packages/optimise-ui/src/components/createPatient/createPatient.jsx - About 1 hr to fix

        Cognitive Complexity

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

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

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

        Further reading

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

            render() {
                if (!this.state.dispatched) {
                    const { genders, dominant_hands, ethnicities, countries } = this.props.demofields;
                    let genders_sorted = [];
                    genders.forEach((el) => {
        Severity: Minor
        Found in packages/optimise-ui/src/components/createPatient/createPatient.jsx - About 1 hr to fix

        Cognitive Complexity

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

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

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

        Further reading

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

            constructor(props) {
                super(props);
                this.state = {
                    dispatched: false,
                    aliasId: props.match ? props.match.params.patientIdCreated : '',
        Severity: Minor
        Found in packages/optimise-ui/src/components/createPatient/createPatient.jsx - About 1 hr to fix

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

                                                  {
                                                      this.state.showPregnancyConsentDatePicker === 'Y' ?
                                                          <>
                                                              <label>Consent date:</label>
                                                              <PickDate startDate={this.state.pregnancyConsentDate} handleChange={this._handlePregnancyConsentDateChange} /> <br /><br />
          packages/optimise-ui/src/components/createPatient/createPatient.jsx on lines 211..219

          Duplicated Code

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

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

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

          Tuning

          This issue has a mass of 89.

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

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

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

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

          Refactorings

          Further Reading

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

                                      {
                                          this.state.showConsentDatePicker === 'Y' ?
                                              <>
                                                  <label>Consent date:</label>
                                                  <PickDate startDate={this.state.optimiseConsentDate} handleChange={this._handleConsentDateChange} /> <br /><br />
          packages/optimise-ui/src/components/createPatient/createPatient.jsx on lines 233..241

          Duplicated Code

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

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

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

          Tuning

          This issue has a mass of 89.

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

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

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

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

          Refactorings

          Further Reading

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

                                      <select name='showConsentDatePicker' value={this.state.showConsentDatePicker} onChange={this._handleConsentChange} autoComplete='off'>
                                          <option value='Y'>Yes</option>
                                          <option value='N'>No</option>
                                      </select><br /><br />
          packages/optimise-ui/src/components/createPatient/createPatient.jsx on lines 229..232

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

          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

                                                  <select name='showPregnancyConsentDatePicker' value={this.state.showPregnancyConsentDatePicker} onChange={this._handlePregnancyConsentChange} autoComplete='off'>
                                                      <option value='Y'>Yes</option>
                                                      <option value='N'>No</option>
                                                  </select><br /><br />
          packages/optimise-ui/src/components/createPatient/createPatient.jsx on lines 207..210

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

          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

                      genders.forEach((el) => {
                          el.value = el.value[0].toUpperCase() + el.value.slice(1).toLowerCase();
                          genders_sorted.push(el);
                      });
          packages/optimise-ui/src/components/editMedicalElements/editDemographic.jsx on lines 147..150

          Duplicated Code

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

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

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

          Tuning

          This issue has a mass of 68.

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

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

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

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

          Refactorings

          Further Reading

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

                  this.setState({
                      lastSubmit: (new Date()).getTime()
                  }, () => {
                      store.dispatch(createPatientCall(body));
                      this.setState({ dispatched: true });
          packages/optimise-ui/src/components/editMedicalElements/editPrimaryDiagnosis.jsx on lines 77..82
          packages/optimise-ui/src/components/editMedicalElements/editPrimaryDiagnosis.jsx on lines 200..205

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

          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/editMedicalElements/createConmitantMeds.jsx on lines 245..245
          packages/optimise-ui/src/components/editMedicalElements/createConmitantMeds.jsx on lines 376..376
          packages/optimise-ui/src/components/editMedicalElements/editClinicalEvent.jsx on lines 217..217
          packages/optimise-ui/src/components/editMedicalElements/editComorbidity.jsx on lines 108..108
          packages/optimise-ui/src/components/editMedicalElements/editComorbidity.jsx on lines 214..214
          packages/optimise-ui/src/components/editMedicalElements/editMedication.jsx on lines 274..274
          packages/optimise-ui/src/components/editMedicalElements/editPregnancy.jsx on lines 167..167
          packages/optimise-ui/src/components/editMedicalElements/editPregnancy.jsx on lines 339..339
          packages/optimise-ui/src/components/editMedicalElements/editTest.jsx on lines 203..203
          packages/optimise-ui/src/components/medicalData/treatmentInterruptions.jsx on lines 176..176
          packages/optimise-ui/src/components/medicalData/treatmentInterruptions.jsx on lines 354..354
          packages/optimise-ui/src/components/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

              _handleFreeTextChange(ev) {
                  const newState = { error: false };
                  newState[ev.target.name] = ev.target.value;
                  this.setState(newState);
              }
          packages/optimise-ui/src/components/createPatient/createPatient.jsx on lines 93..97
          packages/optimise-ui/src/components/createPatient/createPatient.jsx on lines 99..103
          packages/optimise-ui/src/components/editMedicalElements/editDemographic.jsx on lines 79..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 60.

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

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

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

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

          Refactorings

          Further Reading

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

              _handlePregnancyConsentChange(ev) {
                  const newState = { error: false };
                  newState[ev.target.name] = ev.target.value;
                  this.setState(newState);
              }
          packages/optimise-ui/src/components/createPatient/createPatient.jsx on lines 93..97
          packages/optimise-ui/src/components/createPatient/createPatient.jsx on lines 105..109
          packages/optimise-ui/src/components/editMedicalElements/editDemographic.jsx on lines 79..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 60.

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

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

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

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

          Refactorings

          Further Reading

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

              _handleConsentChange(ev) {
                  const newState = { error: false };
                  newState[ev.target.name] = ev.target.value;
                  this.setState(newState);
              }
          packages/optimise-ui/src/components/createPatient/createPatient.jsx on lines 99..103
          packages/optimise-ui/src/components/createPatient/createPatient.jsx on lines 105..109
          packages/optimise-ui/src/components/editMedicalElements/editDemographic.jsx on lines 79..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 60.

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

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

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

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

          Refactorings

          Further Reading

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

                              <div className={style.ariane}>
                                  <h2>+ New Patient Profile</h2>
                                  <BackButton to={'/searchPatient'} />
                              </div>
          packages/optimise-ui/src/components/admin/userCreatePage.jsx on lines 54..57
          packages/optimise-ui/src/components/admin/userDetailPage.jsx on lines 25..28
          packages/optimise-ui/src/components/patientProfile/deletedProfile.jsx on lines 10..13

          Duplicated Code

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

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

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

          Tuning

          This issue has a mass of 51.

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

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

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

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

          Refactorings

          Further Reading

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

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

          Duplicated Code

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

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

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

          Tuning

          This issue has a mass of 49.

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

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

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

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

          Refactorings

          Further Reading

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

                                      <label htmlFor='country_of_origin'>Country of origin:</label><br /> <SelectField name='country_of_origin' value={this.state['country_of_origin']} options={countries} handler={this._handleChange} /> <br /><br />
          packages/optimise-ui/src/components/createPatient/createPatient.jsx on lines 246..246

          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

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

                                      <label htmlFor='ethnicity'>Ethnicity:</label><br /> <SelectField name='ethnicity' value={this.state['ethnicity']} options={ethnicities} handler={this._handleChange} /> <br /><br />
          packages/optimise-ui/src/components/createPatient/createPatient.jsx on lines 247..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 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