dsi-icl/optimise

View on GitHub

Showing 1,390 of 1,390 total issues

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

            if (!momentTerminated.isValid() && body.terminatedDate !== null) {
                res.status(400).json(ErrorHelper(message.dateError[momentTerminated.invalidAt()], new Error(message.userError.INVALIDDATE)));
                return;
            }
packages/optimise-core/src/controllers/treatmentController.js on lines 43..46

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

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 (!momentStart.isValid() && body.startDate !== null) {
            res.status(400).json(ErrorHelper(message.dateError[momentStart.invalidAt()], new Error(message.userError.INVALIDDATE)));
            return;
        }
packages/optimise-core/src/controllers/treatmentController.js on lines 77..80

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

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

Function createApi has 56 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    .then((optimise_router) => {

        console.log('optimise_router', optimise_router);

        // Remove unwanted express headers
Severity: Major
Found in packages/optimise-electron/index.js - About 2 hrs to fix

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

          render() {
              const { match, location } = this.props;
              const { pregnancySubStudyConsent } = this.props.data;
      
      
      

        Function apiHelper has 55 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        export const apiHelper = (endpoint, options, blockError) => {
            if (!options) {
                options = {};
            }
        
        
        Severity: Major
        Found in packages/optimise-ui/src/redux/fetchHelper.js - About 2 hrs to fix

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

              static deleteTreatment(user, idTreatment) {
                  return new Promise((resolve, reject) => deleteEntry('TREATMENTS', user, { id: idTreatment }).then((result) => resolve(result)).catch((error) => reject(ErrorHelper(message.errorMessages.DELETEFAIL, error))));
              }
          Severity: Major
          Found in packages/optimise-core/src/core/treatment.js and 1 other location - About 2 hrs to fix
          packages/optimise-core/src/core/treatment.js on lines 36..38

          Duplicated Code

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

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

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

          Tuning

          This issue has a mass of 79.

          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

              static deleteInterruption(user, idInterruption) {
                  return new Promise((resolve, reject) => deleteEntry('TREATMENTS_INTERRUPTIONS', user, { id: idInterruption }).then((result) => resolve(result)).catch((error) => reject(ErrorHelper(message.errorMessages.CREATIONFAIL, error))));
              }
          Severity: Major
          Found in packages/optimise-core/src/core/treatment.js and 1 other location - About 2 hrs to fix
          packages/optimise-core/src/core/treatment.js on lines 24..26

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

          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

                      inserts.push(db.collection(`PATIENT_PROFILES_${agent.toUpperCase()}`).replaceOne({ id: profile.id }, profile, { upsert: true }).then(({ result }) => result));
          Severity: Major
          Found in packages/optimise-sync/src/core/syncCore.js and 1 other location - About 2 hrs to fix
          packages/optimise-sync/src/core/syncCore.js on lines 33..33

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

          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

                      inserts.push(db.collection(`USERS_${agent.toUpperCase()}`).replaceOne({ uuid: user.uuid }, user, { upsert: true }).then(({ result }) => result));
          Severity: Major
          Found in packages/optimise-sync/src/core/syncCore.js and 1 other location - About 2 hrs to fix
          packages/optimise-sync/src/core/syncCore.js on lines 17..17

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

          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

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

              render() {
                  const { patientProfile, match } = this.props;
                  const { params } = match;
          
                  let _style = scaffold_style;
          Severity: Major
          Found in packages/optimise-ui/src/components/medicalData/ceDataPage.jsx - About 2 hrs to fix

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

                    case 17:
                        await dbcon().schema.table(TABLE_NAME, (table) => {
                            table.dropForeign('patient');
                            table.foreign('patient').references('id').inTable('PATIENTS').onDelete('CASCADE');
                        });
            Severity: Major
            Found in packages/optimise-core/src/db/patient_pregnancy.table.js and 23 other locations - About 2 hrs to fix
            packages/optimise-core/src/db/clinical_events.table.js on lines 25..30
            packages/optimise-core/src/db/clinical_events.table.js on lines 31..36
            packages/optimise-core/src/db/clinical_events.table.js on lines 37..42
            packages/optimise-core/src/db/medical_history.table.js on lines 26..31
            packages/optimise-core/src/db/medical_history.table.js on lines 32..37
            packages/optimise-core/src/db/medical_history.table.js on lines 38..43
            packages/optimise-core/src/db/patient_demographic.table.js on lines 69..74
            packages/optimise-core/src/db/patient_demographic.table.js on lines 75..80
            packages/optimise-core/src/db/patient_demographic.table.js on lines 81..86
            packages/optimise-core/src/db/patient_diagnosis.table.js on lines 23..28
            packages/optimise-core/src/db/patient_diagnosis.table.js on lines 29..34
            packages/optimise-core/src/db/patient_diagnosis.table.js on lines 35..40
            packages/optimise-core/src/db/patient_immunisation.table.js on lines 23..28
            packages/optimise-core/src/db/patient_immunisation.table.js on lines 29..34
            packages/optimise-core/src/db/patient_immunisation.table.js on lines 35..40
            packages/optimise-core/src/db/patient_pii.table.js on lines 25..30
            packages/optimise-core/src/db/patient_pii.table.js on lines 31..36
            packages/optimise-core/src/db/patient_pii.table.js on lines 37..42
            packages/optimise-core/src/db/patient_pregnancy.table.js on lines 25..30
            packages/optimise-core/src/db/patient_pregnancy.table.js on lines 37..42
            packages/optimise-core/src/db/visits.table.js on lines 23..28
            packages/optimise-core/src/db/visits.table.js on lines 29..34
            packages/optimise-core/src/db/visits.table.js on lines 35..40

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

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

                    case 17:
                        await dbcon().schema.table(TABLE_NAME, (table) => {
                            table.dropForeign('patient');
                            table.foreign('patient').references('id').inTable('PATIENTS').onDelete('CASCADE');
                        });
            Severity: Major
            Found in packages/optimise-core/src/db/medical_history.table.js and 23 other locations - About 2 hrs to fix
            packages/optimise-core/src/db/clinical_events.table.js on lines 25..30
            packages/optimise-core/src/db/clinical_events.table.js on lines 31..36
            packages/optimise-core/src/db/clinical_events.table.js on lines 37..42
            packages/optimise-core/src/db/medical_history.table.js on lines 26..31
            packages/optimise-core/src/db/medical_history.table.js on lines 38..43
            packages/optimise-core/src/db/patient_demographic.table.js on lines 69..74
            packages/optimise-core/src/db/patient_demographic.table.js on lines 75..80
            packages/optimise-core/src/db/patient_demographic.table.js on lines 81..86
            packages/optimise-core/src/db/patient_diagnosis.table.js on lines 23..28
            packages/optimise-core/src/db/patient_diagnosis.table.js on lines 29..34
            packages/optimise-core/src/db/patient_diagnosis.table.js on lines 35..40
            packages/optimise-core/src/db/patient_immunisation.table.js on lines 23..28
            packages/optimise-core/src/db/patient_immunisation.table.js on lines 29..34
            packages/optimise-core/src/db/patient_immunisation.table.js on lines 35..40
            packages/optimise-core/src/db/patient_pii.table.js on lines 25..30
            packages/optimise-core/src/db/patient_pii.table.js on lines 31..36
            packages/optimise-core/src/db/patient_pii.table.js on lines 37..42
            packages/optimise-core/src/db/patient_pregnancy.table.js on lines 25..30
            packages/optimise-core/src/db/patient_pregnancy.table.js on lines 31..36
            packages/optimise-core/src/db/patient_pregnancy.table.js on lines 37..42
            packages/optimise-core/src/db/visits.table.js on lines 23..28
            packages/optimise-core/src/db/visits.table.js on lines 29..34
            packages/optimise-core/src/db/visits.table.js on lines 35..40

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

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

                    case 16:
                        await dbcon().schema.table(TABLE_NAME, (table) => {
                            table.dropForeign('patient');
                            table.foreign('patient').references('id').inTable('PATIENTS').onDelete('CASCADE');
                        });
            Severity: Major
            Found in packages/optimise-core/src/db/patient_diagnosis.table.js and 23 other locations - About 2 hrs to fix
            packages/optimise-core/src/db/clinical_events.table.js on lines 25..30
            packages/optimise-core/src/db/clinical_events.table.js on lines 31..36
            packages/optimise-core/src/db/clinical_events.table.js on lines 37..42
            packages/optimise-core/src/db/medical_history.table.js on lines 26..31
            packages/optimise-core/src/db/medical_history.table.js on lines 32..37
            packages/optimise-core/src/db/medical_history.table.js on lines 38..43
            packages/optimise-core/src/db/patient_demographic.table.js on lines 69..74
            packages/optimise-core/src/db/patient_demographic.table.js on lines 75..80
            packages/optimise-core/src/db/patient_demographic.table.js on lines 81..86
            packages/optimise-core/src/db/patient_diagnosis.table.js on lines 29..34
            packages/optimise-core/src/db/patient_diagnosis.table.js on lines 35..40
            packages/optimise-core/src/db/patient_immunisation.table.js on lines 23..28
            packages/optimise-core/src/db/patient_immunisation.table.js on lines 29..34
            packages/optimise-core/src/db/patient_immunisation.table.js on lines 35..40
            packages/optimise-core/src/db/patient_pii.table.js on lines 25..30
            packages/optimise-core/src/db/patient_pii.table.js on lines 31..36
            packages/optimise-core/src/db/patient_pii.table.js on lines 37..42
            packages/optimise-core/src/db/patient_pregnancy.table.js on lines 25..30
            packages/optimise-core/src/db/patient_pregnancy.table.js on lines 31..36
            packages/optimise-core/src/db/patient_pregnancy.table.js on lines 37..42
            packages/optimise-core/src/db/visits.table.js on lines 23..28
            packages/optimise-core/src/db/visits.table.js on lines 29..34
            packages/optimise-core/src/db/visits.table.js on lines 35..40

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

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

                    case 16:
                        await dbcon().schema.table(TABLE_NAME, (table) => {
                            table.dropForeign('patient');
                            table.foreign('patient').references('id').inTable('PATIENTS').onDelete('CASCADE');
                        });
            Severity: Major
            Found in packages/optimise-core/src/db/clinical_events.table.js and 23 other locations - About 2 hrs to fix
            packages/optimise-core/src/db/clinical_events.table.js on lines 31..36
            packages/optimise-core/src/db/clinical_events.table.js on lines 37..42
            packages/optimise-core/src/db/medical_history.table.js on lines 26..31
            packages/optimise-core/src/db/medical_history.table.js on lines 32..37
            packages/optimise-core/src/db/medical_history.table.js on lines 38..43
            packages/optimise-core/src/db/patient_demographic.table.js on lines 69..74
            packages/optimise-core/src/db/patient_demographic.table.js on lines 75..80
            packages/optimise-core/src/db/patient_demographic.table.js on lines 81..86
            packages/optimise-core/src/db/patient_diagnosis.table.js on lines 23..28
            packages/optimise-core/src/db/patient_diagnosis.table.js on lines 29..34
            packages/optimise-core/src/db/patient_diagnosis.table.js on lines 35..40
            packages/optimise-core/src/db/patient_immunisation.table.js on lines 23..28
            packages/optimise-core/src/db/patient_immunisation.table.js on lines 29..34
            packages/optimise-core/src/db/patient_immunisation.table.js on lines 35..40
            packages/optimise-core/src/db/patient_pii.table.js on lines 25..30
            packages/optimise-core/src/db/patient_pii.table.js on lines 31..36
            packages/optimise-core/src/db/patient_pii.table.js on lines 37..42
            packages/optimise-core/src/db/patient_pregnancy.table.js on lines 25..30
            packages/optimise-core/src/db/patient_pregnancy.table.js on lines 31..36
            packages/optimise-core/src/db/patient_pregnancy.table.js on lines 37..42
            packages/optimise-core/src/db/visits.table.js on lines 23..28
            packages/optimise-core/src/db/visits.table.js on lines 29..34
            packages/optimise-core/src/db/visits.table.js on lines 35..40

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

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

                    case 16:
                        await dbcon().schema.table(TABLE_NAME, (table) => {
                            table.dropForeign('patient');
                            table.foreign('patient').references('id').inTable('PATIENTS').onDelete('CASCADE');
                        });
            Severity: Major
            Found in packages/optimise-core/src/db/medical_history.table.js and 23 other locations - About 2 hrs to fix
            packages/optimise-core/src/db/clinical_events.table.js on lines 25..30
            packages/optimise-core/src/db/clinical_events.table.js on lines 31..36
            packages/optimise-core/src/db/clinical_events.table.js on lines 37..42
            packages/optimise-core/src/db/medical_history.table.js on lines 32..37
            packages/optimise-core/src/db/medical_history.table.js on lines 38..43
            packages/optimise-core/src/db/patient_demographic.table.js on lines 69..74
            packages/optimise-core/src/db/patient_demographic.table.js on lines 75..80
            packages/optimise-core/src/db/patient_demographic.table.js on lines 81..86
            packages/optimise-core/src/db/patient_diagnosis.table.js on lines 23..28
            packages/optimise-core/src/db/patient_diagnosis.table.js on lines 29..34
            packages/optimise-core/src/db/patient_diagnosis.table.js on lines 35..40
            packages/optimise-core/src/db/patient_immunisation.table.js on lines 23..28
            packages/optimise-core/src/db/patient_immunisation.table.js on lines 29..34
            packages/optimise-core/src/db/patient_immunisation.table.js on lines 35..40
            packages/optimise-core/src/db/patient_pii.table.js on lines 25..30
            packages/optimise-core/src/db/patient_pii.table.js on lines 31..36
            packages/optimise-core/src/db/patient_pii.table.js on lines 37..42
            packages/optimise-core/src/db/patient_pregnancy.table.js on lines 25..30
            packages/optimise-core/src/db/patient_pregnancy.table.js on lines 31..36
            packages/optimise-core/src/db/patient_pregnancy.table.js on lines 37..42
            packages/optimise-core/src/db/visits.table.js on lines 23..28
            packages/optimise-core/src/db/visits.table.js on lines 29..34
            packages/optimise-core/src/db/visits.table.js on lines 35..40

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

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

                    case 18:
                        await dbcon().schema.table(TABLE_NAME, (table) => {
                            table.dropForeign('patient');
                            table.foreign('patient').references('id').inTable('PATIENTS').onDelete('CASCADE');
                        });
            Severity: Major
            Found in packages/optimise-core/src/db/medical_history.table.js and 23 other locations - About 2 hrs to fix
            packages/optimise-core/src/db/clinical_events.table.js on lines 25..30
            packages/optimise-core/src/db/clinical_events.table.js on lines 31..36
            packages/optimise-core/src/db/clinical_events.table.js on lines 37..42
            packages/optimise-core/src/db/medical_history.table.js on lines 26..31
            packages/optimise-core/src/db/medical_history.table.js on lines 32..37
            packages/optimise-core/src/db/patient_demographic.table.js on lines 69..74
            packages/optimise-core/src/db/patient_demographic.table.js on lines 75..80
            packages/optimise-core/src/db/patient_demographic.table.js on lines 81..86
            packages/optimise-core/src/db/patient_diagnosis.table.js on lines 23..28
            packages/optimise-core/src/db/patient_diagnosis.table.js on lines 29..34
            packages/optimise-core/src/db/patient_diagnosis.table.js on lines 35..40
            packages/optimise-core/src/db/patient_immunisation.table.js on lines 23..28
            packages/optimise-core/src/db/patient_immunisation.table.js on lines 29..34
            packages/optimise-core/src/db/patient_immunisation.table.js on lines 35..40
            packages/optimise-core/src/db/patient_pii.table.js on lines 25..30
            packages/optimise-core/src/db/patient_pii.table.js on lines 31..36
            packages/optimise-core/src/db/patient_pii.table.js on lines 37..42
            packages/optimise-core/src/db/patient_pregnancy.table.js on lines 25..30
            packages/optimise-core/src/db/patient_pregnancy.table.js on lines 31..36
            packages/optimise-core/src/db/patient_pregnancy.table.js on lines 37..42
            packages/optimise-core/src/db/visits.table.js on lines 23..28
            packages/optimise-core/src/db/visits.table.js on lines 29..34
            packages/optimise-core/src/db/visits.table.js on lines 35..40

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

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

                    case 16:
                        await dbcon().schema.table(TABLE_NAME, (table) => {
                            table.dropForeign('patient');
                            table.foreign('patient').references('id').inTable('PATIENTS').onDelete('CASCADE');
                        });
            Severity: Major
            Found in packages/optimise-core/src/db/visits.table.js and 23 other locations - About 2 hrs to fix
            packages/optimise-core/src/db/clinical_events.table.js on lines 25..30
            packages/optimise-core/src/db/clinical_events.table.js on lines 31..36
            packages/optimise-core/src/db/clinical_events.table.js on lines 37..42
            packages/optimise-core/src/db/medical_history.table.js on lines 26..31
            packages/optimise-core/src/db/medical_history.table.js on lines 32..37
            packages/optimise-core/src/db/medical_history.table.js on lines 38..43
            packages/optimise-core/src/db/patient_demographic.table.js on lines 69..74
            packages/optimise-core/src/db/patient_demographic.table.js on lines 75..80
            packages/optimise-core/src/db/patient_demographic.table.js on lines 81..86
            packages/optimise-core/src/db/patient_diagnosis.table.js on lines 23..28
            packages/optimise-core/src/db/patient_diagnosis.table.js on lines 29..34
            packages/optimise-core/src/db/patient_diagnosis.table.js on lines 35..40
            packages/optimise-core/src/db/patient_immunisation.table.js on lines 23..28
            packages/optimise-core/src/db/patient_immunisation.table.js on lines 29..34
            packages/optimise-core/src/db/patient_immunisation.table.js on lines 35..40
            packages/optimise-core/src/db/patient_pii.table.js on lines 25..30
            packages/optimise-core/src/db/patient_pii.table.js on lines 31..36
            packages/optimise-core/src/db/patient_pii.table.js on lines 37..42
            packages/optimise-core/src/db/patient_pregnancy.table.js on lines 25..30
            packages/optimise-core/src/db/patient_pregnancy.table.js on lines 31..36
            packages/optimise-core/src/db/patient_pregnancy.table.js on lines 37..42
            packages/optimise-core/src/db/visits.table.js on lines 29..34
            packages/optimise-core/src/db/visits.table.js on lines 35..40

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

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

                    case 18:
                        await dbcon().schema.table(TABLE_NAME, (table) => {
                            table.dropForeign('patient');
                            table.foreign('patient').references('id').inTable('PATIENTS').onDelete('CASCADE');
                        });
            Severity: Major
            Found in packages/optimise-core/src/db/clinical_events.table.js and 23 other locations - About 2 hrs to fix
            packages/optimise-core/src/db/clinical_events.table.js on lines 25..30
            packages/optimise-core/src/db/clinical_events.table.js on lines 31..36
            packages/optimise-core/src/db/medical_history.table.js on lines 26..31
            packages/optimise-core/src/db/medical_history.table.js on lines 32..37
            packages/optimise-core/src/db/medical_history.table.js on lines 38..43
            packages/optimise-core/src/db/patient_demographic.table.js on lines 69..74
            packages/optimise-core/src/db/patient_demographic.table.js on lines 75..80
            packages/optimise-core/src/db/patient_demographic.table.js on lines 81..86
            packages/optimise-core/src/db/patient_diagnosis.table.js on lines 23..28
            packages/optimise-core/src/db/patient_diagnosis.table.js on lines 29..34
            packages/optimise-core/src/db/patient_diagnosis.table.js on lines 35..40
            packages/optimise-core/src/db/patient_immunisation.table.js on lines 23..28
            packages/optimise-core/src/db/patient_immunisation.table.js on lines 29..34
            packages/optimise-core/src/db/patient_immunisation.table.js on lines 35..40
            packages/optimise-core/src/db/patient_pii.table.js on lines 25..30
            packages/optimise-core/src/db/patient_pii.table.js on lines 31..36
            packages/optimise-core/src/db/patient_pii.table.js on lines 37..42
            packages/optimise-core/src/db/patient_pregnancy.table.js on lines 25..30
            packages/optimise-core/src/db/patient_pregnancy.table.js on lines 31..36
            packages/optimise-core/src/db/patient_pregnancy.table.js on lines 37..42
            packages/optimise-core/src/db/visits.table.js on lines 23..28
            packages/optimise-core/src/db/visits.table.js on lines 29..34
            packages/optimise-core/src/db/visits.table.js on lines 35..40

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

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

                    case 16:
                        await dbcon().schema.table(TABLE_NAME, (table) => {
                            table.dropForeign('patient');
                            table.foreign('patient').references('id').inTable('PATIENTS').onDelete('CASCADE');
                        });
            Severity: Major
            Found in packages/optimise-core/src/db/patient_demographic.table.js and 23 other locations - About 2 hrs to fix
            packages/optimise-core/src/db/clinical_events.table.js on lines 25..30
            packages/optimise-core/src/db/clinical_events.table.js on lines 31..36
            packages/optimise-core/src/db/clinical_events.table.js on lines 37..42
            packages/optimise-core/src/db/medical_history.table.js on lines 26..31
            packages/optimise-core/src/db/medical_history.table.js on lines 32..37
            packages/optimise-core/src/db/medical_history.table.js on lines 38..43
            packages/optimise-core/src/db/patient_demographic.table.js on lines 75..80
            packages/optimise-core/src/db/patient_demographic.table.js on lines 81..86
            packages/optimise-core/src/db/patient_diagnosis.table.js on lines 23..28
            packages/optimise-core/src/db/patient_diagnosis.table.js on lines 29..34
            packages/optimise-core/src/db/patient_diagnosis.table.js on lines 35..40
            packages/optimise-core/src/db/patient_immunisation.table.js on lines 23..28
            packages/optimise-core/src/db/patient_immunisation.table.js on lines 29..34
            packages/optimise-core/src/db/patient_immunisation.table.js on lines 35..40
            packages/optimise-core/src/db/patient_pii.table.js on lines 25..30
            packages/optimise-core/src/db/patient_pii.table.js on lines 31..36
            packages/optimise-core/src/db/patient_pii.table.js on lines 37..42
            packages/optimise-core/src/db/patient_pregnancy.table.js on lines 25..30
            packages/optimise-core/src/db/patient_pregnancy.table.js on lines 31..36
            packages/optimise-core/src/db/patient_pregnancy.table.js on lines 37..42
            packages/optimise-core/src/db/visits.table.js on lines 23..28
            packages/optimise-core/src/db/visits.table.js on lines 29..34
            packages/optimise-core/src/db/visits.table.js on lines 35..40

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

            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

            Severity
            Category
            Status
            Source
            Language