dsi-icl/optimise

View on GitHub
packages/optimise-ui/src/redux/actions/demographicData.js

Summary

Maintainability
F
5 days
Test Coverage

Function alterPregnancyItemsCall has a Cognitive Complexity of 23 (exceeds 5 allowed). Consider refactoring.
Open

export const alterPregnancyItemsCall = (body, callback) => async (dispatch) => {
    try {
        //if pregnancy entry needs to be created and entry type is 1 (baseline) then new pregnancy needs to be created

        const pregnancyMethod = body.pregnancyEntry?.type === 1 && !body.pregnancy.id ? 'POST' : 'PUT';
Severity: Minor
Found in packages/optimise-ui/src/redux/actions/demographicData.js - About 3 hrs 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 alterPregnancyItemsCall has 32 lines of code (exceeds 25 allowed). Consider refactoring.
Open

export const alterPregnancyItemsCall = (body, callback) => async (dispatch) => {
    try {
        //if pregnancy entry needs to be created and entry type is 1 (baseline) then new pregnancy needs to be created

        const pregnancyMethod = body.pregnancyEntry?.type === 1 && !body.pregnancy.id ? 'POST' : 'PUT';
Severity: Minor
Found in packages/optimise-ui/src/redux/actions/demographicData.js - About 1 hr to fix

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

    export const deleteDiagnosisAPICall = (body) => dispatch => (
        apiHelper('/patientDiagnosis', { method: 'DELETE', body: JSON.stringify(body.data) })
            .then(() => {
                history.push(body.to);
                dispatch(getPatientProfileById(body.patientId));
    Severity: Major
    Found in packages/optimise-ui/src/redux/actions/demographicData.js and 10 other locations - About 4 hrs to fix
    packages/optimise-ui/src/redux/actions/clinicalEvents.js on lines 17..22
    packages/optimise-ui/src/redux/actions/clinicalEvents.js on lines 24..28
    packages/optimise-ui/src/redux/actions/demographicData.js on lines 126..133
    packages/optimise-ui/src/redux/actions/demographicData.js on lines 135..142
    packages/optimise-ui/src/redux/actions/tests.js on lines 16..20
    packages/optimise-ui/src/redux/actions/tests.js on lines 22..26
    packages/optimise-ui/src/redux/actions/treatments.js on lines 15..19
    packages/optimise-ui/src/redux/actions/treatments.js on lines 21..25
    packages/optimise-ui/src/redux/actions/treatments.js on lines 27..31
    packages/optimise-ui/src/redux/actions/treatments.js on lines 33..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 119.

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

    export const createDiagnosisAPICall = (body) => dispatch => (
        apiHelper('/patientDiagnosis', { method: 'POST', body: JSON.stringify(body.data) })
            .then(() => {
                history.push(body.to);
                dispatch(getPatientProfileById(body.patientId));
    Severity: Major
    Found in packages/optimise-ui/src/redux/actions/demographicData.js and 10 other locations - About 4 hrs to fix
    packages/optimise-ui/src/redux/actions/clinicalEvents.js on lines 17..22
    packages/optimise-ui/src/redux/actions/clinicalEvents.js on lines 24..28
    packages/optimise-ui/src/redux/actions/demographicData.js on lines 126..133
    packages/optimise-ui/src/redux/actions/demographicData.js on lines 152..159
    packages/optimise-ui/src/redux/actions/tests.js on lines 16..20
    packages/optimise-ui/src/redux/actions/tests.js on lines 22..26
    packages/optimise-ui/src/redux/actions/treatments.js on lines 15..19
    packages/optimise-ui/src/redux/actions/treatments.js on lines 21..25
    packages/optimise-ui/src/redux/actions/treatments.js on lines 27..31
    packages/optimise-ui/src/redux/actions/treatments.js on lines 33..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 119.

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

    export const updateDemographicAPICall = (body) => dispatch => (
        apiHelper('/demographics/Demographic', { method: 'PUT', body: JSON.stringify(body.data) })
            .then(() => {
                history.push(body.to);
                dispatch(getPatientProfileById(body.patientId));
    Severity: Major
    Found in packages/optimise-ui/src/redux/actions/demographicData.js and 10 other locations - About 4 hrs to fix
    packages/optimise-ui/src/redux/actions/clinicalEvents.js on lines 17..22
    packages/optimise-ui/src/redux/actions/clinicalEvents.js on lines 24..28
    packages/optimise-ui/src/redux/actions/demographicData.js on lines 135..142
    packages/optimise-ui/src/redux/actions/demographicData.js on lines 152..159
    packages/optimise-ui/src/redux/actions/tests.js on lines 16..20
    packages/optimise-ui/src/redux/actions/tests.js on lines 22..26
    packages/optimise-ui/src/redux/actions/treatments.js on lines 15..19
    packages/optimise-ui/src/redux/actions/treatments.js on lines 21..25
    packages/optimise-ui/src/redux/actions/treatments.js on lines 27..31
    packages/optimise-ui/src/redux/actions/treatments.js on lines 33..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 119.

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

    export const editImmunisationAPICall = (body) => dispatch => (
        apiHelper('/demographics/Immunisation', { method: 'PUT', body: JSON.stringify(body.data) })
            .then(() => {
                dispatch(getPatientProfileById(body.patientId));
            })
    Severity: Major
    Found in packages/optimise-ui/src/redux/actions/demographicData.js and 16 other locations - About 3 hrs to fix
    packages/optimise-ui/src/redux/actions/comorbidities.js on lines 6..10
    packages/optimise-ui/src/redux/actions/comorbidities.js on lines 12..16
    packages/optimise-ui/src/redux/actions/comorbidities.js on lines 18..22
    packages/optimise-ui/src/redux/actions/concomitantMed.js on lines 6..10
    packages/optimise-ui/src/redux/actions/concomitantMed.js on lines 12..16
    packages/optimise-ui/src/redux/actions/concomitantMed.js on lines 18..22
    packages/optimise-ui/src/redux/actions/consent.js on lines 6..10
    packages/optimise-ui/src/redux/actions/consent.js on lines 12..16
    packages/optimise-ui/src/redux/actions/demographicData.js on lines 8..14
    packages/optimise-ui/src/redux/actions/demographicData.js on lines 24..30
    packages/optimise-ui/src/redux/actions/demographicData.js on lines 43..49
    packages/optimise-ui/src/redux/actions/demographicData.js on lines 51..57
    packages/optimise-ui/src/redux/actions/demographicData.js on lines 110..116
    packages/optimise-ui/src/redux/actions/demographicData.js on lines 118..124
    packages/optimise-ui/src/redux/actions/demographicData.js on lines 144..150
    packages/optimise-ui/src/redux/actions/treatments.js on lines 39..42

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

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

    export const deleteImmunisationAPICall = (body) => dispatch => (
        apiHelper('/demographics/Immunisation', { method: 'DELETE', body: JSON.stringify(body.data) })
            .then(() => {
                dispatch(getPatientProfileById(body.patientId));
            })
    Severity: Major
    Found in packages/optimise-ui/src/redux/actions/demographicData.js and 16 other locations - About 3 hrs to fix
    packages/optimise-ui/src/redux/actions/comorbidities.js on lines 6..10
    packages/optimise-ui/src/redux/actions/comorbidities.js on lines 12..16
    packages/optimise-ui/src/redux/actions/comorbidities.js on lines 18..22
    packages/optimise-ui/src/redux/actions/concomitantMed.js on lines 6..10
    packages/optimise-ui/src/redux/actions/concomitantMed.js on lines 12..16
    packages/optimise-ui/src/redux/actions/concomitantMed.js on lines 18..22
    packages/optimise-ui/src/redux/actions/consent.js on lines 6..10
    packages/optimise-ui/src/redux/actions/consent.js on lines 12..16
    packages/optimise-ui/src/redux/actions/demographicData.js on lines 8..14
    packages/optimise-ui/src/redux/actions/demographicData.js on lines 16..22
    packages/optimise-ui/src/redux/actions/demographicData.js on lines 43..49
    packages/optimise-ui/src/redux/actions/demographicData.js on lines 51..57
    packages/optimise-ui/src/redux/actions/demographicData.js on lines 110..116
    packages/optimise-ui/src/redux/actions/demographicData.js on lines 118..124
    packages/optimise-ui/src/redux/actions/demographicData.js on lines 144..150
    packages/optimise-ui/src/redux/actions/treatments.js on lines 39..42

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

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

    export const editPregnancyAPICall = (body) => dispatch => (
        apiHelper('/demographics/Pregnancy', { method: 'PUT', body: JSON.stringify(body.data) })
            .then(() => {
                dispatch(getPatientProfileById(body.patientId));
            })
    Severity: Major
    Found in packages/optimise-ui/src/redux/actions/demographicData.js and 16 other locations - About 3 hrs to fix
    packages/optimise-ui/src/redux/actions/comorbidities.js on lines 6..10
    packages/optimise-ui/src/redux/actions/comorbidities.js on lines 12..16
    packages/optimise-ui/src/redux/actions/comorbidities.js on lines 18..22
    packages/optimise-ui/src/redux/actions/concomitantMed.js on lines 6..10
    packages/optimise-ui/src/redux/actions/concomitantMed.js on lines 12..16
    packages/optimise-ui/src/redux/actions/concomitantMed.js on lines 18..22
    packages/optimise-ui/src/redux/actions/consent.js on lines 6..10
    packages/optimise-ui/src/redux/actions/consent.js on lines 12..16
    packages/optimise-ui/src/redux/actions/demographicData.js on lines 8..14
    packages/optimise-ui/src/redux/actions/demographicData.js on lines 16..22
    packages/optimise-ui/src/redux/actions/demographicData.js on lines 24..30
    packages/optimise-ui/src/redux/actions/demographicData.js on lines 51..57
    packages/optimise-ui/src/redux/actions/demographicData.js on lines 110..116
    packages/optimise-ui/src/redux/actions/demographicData.js on lines 118..124
    packages/optimise-ui/src/redux/actions/demographicData.js on lines 144..150
    packages/optimise-ui/src/redux/actions/treatments.js on lines 39..42

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

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

    export const editPregnancyImageAPICall = (body) => dispatch => (
        apiHelper('/demographics/PregnancyImage', { method: 'PUT', body: JSON.stringify(body.data) })
            .then(() => {
                dispatch(getPatientProfileById(body.patientId));
            })
    Severity: Major
    Found in packages/optimise-ui/src/redux/actions/demographicData.js and 16 other locations - About 3 hrs to fix
    packages/optimise-ui/src/redux/actions/comorbidities.js on lines 6..10
    packages/optimise-ui/src/redux/actions/comorbidities.js on lines 12..16
    packages/optimise-ui/src/redux/actions/comorbidities.js on lines 18..22
    packages/optimise-ui/src/redux/actions/concomitantMed.js on lines 6..10
    packages/optimise-ui/src/redux/actions/concomitantMed.js on lines 12..16
    packages/optimise-ui/src/redux/actions/concomitantMed.js on lines 18..22
    packages/optimise-ui/src/redux/actions/consent.js on lines 6..10
    packages/optimise-ui/src/redux/actions/consent.js on lines 12..16
    packages/optimise-ui/src/redux/actions/demographicData.js on lines 8..14
    packages/optimise-ui/src/redux/actions/demographicData.js on lines 16..22
    packages/optimise-ui/src/redux/actions/demographicData.js on lines 24..30
    packages/optimise-ui/src/redux/actions/demographicData.js on lines 43..49
    packages/optimise-ui/src/redux/actions/demographicData.js on lines 51..57
    packages/optimise-ui/src/redux/actions/demographicData.js on lines 118..124
    packages/optimise-ui/src/redux/actions/demographicData.js on lines 144..150
    packages/optimise-ui/src/redux/actions/treatments.js on lines 39..42

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

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

    export const deletePregnancyImageAPICall = (body) => dispatch => (
        apiHelper('/demographics/PregnancyImage', { method: 'DELETE', body: JSON.stringify(body.data) })
            .then(() => {
                dispatch(getPatientProfileById(body.patientId));
            })
    Severity: Major
    Found in packages/optimise-ui/src/redux/actions/demographicData.js and 16 other locations - About 3 hrs to fix
    packages/optimise-ui/src/redux/actions/comorbidities.js on lines 6..10
    packages/optimise-ui/src/redux/actions/comorbidities.js on lines 12..16
    packages/optimise-ui/src/redux/actions/comorbidities.js on lines 18..22
    packages/optimise-ui/src/redux/actions/concomitantMed.js on lines 6..10
    packages/optimise-ui/src/redux/actions/concomitantMed.js on lines 12..16
    packages/optimise-ui/src/redux/actions/concomitantMed.js on lines 18..22
    packages/optimise-ui/src/redux/actions/consent.js on lines 6..10
    packages/optimise-ui/src/redux/actions/consent.js on lines 12..16
    packages/optimise-ui/src/redux/actions/demographicData.js on lines 8..14
    packages/optimise-ui/src/redux/actions/demographicData.js on lines 16..22
    packages/optimise-ui/src/redux/actions/demographicData.js on lines 24..30
    packages/optimise-ui/src/redux/actions/demographicData.js on lines 43..49
    packages/optimise-ui/src/redux/actions/demographicData.js on lines 51..57
    packages/optimise-ui/src/redux/actions/demographicData.js on lines 110..116
    packages/optimise-ui/src/redux/actions/demographicData.js on lines 144..150
    packages/optimise-ui/src/redux/actions/treatments.js on lines 39..42

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

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

    export const deletePregnancyAPICall = (body) => dispatch => (
        apiHelper('/demographics/Pregnancy', { method: 'DELETE', body: JSON.stringify(body.data) })
            .then(() => {
                dispatch(getPatientProfileById(body.patientId));
            })
    Severity: Major
    Found in packages/optimise-ui/src/redux/actions/demographicData.js and 16 other locations - About 3 hrs to fix
    packages/optimise-ui/src/redux/actions/comorbidities.js on lines 6..10
    packages/optimise-ui/src/redux/actions/comorbidities.js on lines 12..16
    packages/optimise-ui/src/redux/actions/comorbidities.js on lines 18..22
    packages/optimise-ui/src/redux/actions/concomitantMed.js on lines 6..10
    packages/optimise-ui/src/redux/actions/concomitantMed.js on lines 12..16
    packages/optimise-ui/src/redux/actions/concomitantMed.js on lines 18..22
    packages/optimise-ui/src/redux/actions/consent.js on lines 6..10
    packages/optimise-ui/src/redux/actions/consent.js on lines 12..16
    packages/optimise-ui/src/redux/actions/demographicData.js on lines 8..14
    packages/optimise-ui/src/redux/actions/demographicData.js on lines 16..22
    packages/optimise-ui/src/redux/actions/demographicData.js on lines 24..30
    packages/optimise-ui/src/redux/actions/demographicData.js on lines 43..49
    packages/optimise-ui/src/redux/actions/demographicData.js on lines 110..116
    packages/optimise-ui/src/redux/actions/demographicData.js on lines 118..124
    packages/optimise-ui/src/redux/actions/demographicData.js on lines 144..150
    packages/optimise-ui/src/redux/actions/treatments.js on lines 39..42

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

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

    export const updateDiagnosisAPICall = (body) => dispatch => (
        apiHelper('/patientDiagnosis', { method: 'PUT', body: JSON.stringify(body.data) })
            .then(() => {
                dispatch(getPatientProfileById(body.patientId));
            })
    Severity: Major
    Found in packages/optimise-ui/src/redux/actions/demographicData.js and 16 other locations - About 3 hrs to fix
    packages/optimise-ui/src/redux/actions/comorbidities.js on lines 6..10
    packages/optimise-ui/src/redux/actions/comorbidities.js on lines 12..16
    packages/optimise-ui/src/redux/actions/comorbidities.js on lines 18..22
    packages/optimise-ui/src/redux/actions/concomitantMed.js on lines 6..10
    packages/optimise-ui/src/redux/actions/concomitantMed.js on lines 12..16
    packages/optimise-ui/src/redux/actions/concomitantMed.js on lines 18..22
    packages/optimise-ui/src/redux/actions/consent.js on lines 6..10
    packages/optimise-ui/src/redux/actions/consent.js on lines 12..16
    packages/optimise-ui/src/redux/actions/demographicData.js on lines 8..14
    packages/optimise-ui/src/redux/actions/demographicData.js on lines 16..22
    packages/optimise-ui/src/redux/actions/demographicData.js on lines 24..30
    packages/optimise-ui/src/redux/actions/demographicData.js on lines 43..49
    packages/optimise-ui/src/redux/actions/demographicData.js on lines 51..57
    packages/optimise-ui/src/redux/actions/demographicData.js on lines 110..116
    packages/optimise-ui/src/redux/actions/demographicData.js on lines 118..124
    packages/optimise-ui/src/redux/actions/treatments.js on lines 39..42

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

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

    export const createImmunisationAPICall = (body) => dispatch => (
        apiHelper('/demographics/Immunisation', { method: 'POST', body: JSON.stringify(body.data) })
            .then(() => {
                dispatch(getPatientProfileById(body.patientId));
            })
    Severity: Major
    Found in packages/optimise-ui/src/redux/actions/demographicData.js and 16 other locations - About 3 hrs to fix
    packages/optimise-ui/src/redux/actions/comorbidities.js on lines 6..10
    packages/optimise-ui/src/redux/actions/comorbidities.js on lines 12..16
    packages/optimise-ui/src/redux/actions/comorbidities.js on lines 18..22
    packages/optimise-ui/src/redux/actions/concomitantMed.js on lines 6..10
    packages/optimise-ui/src/redux/actions/concomitantMed.js on lines 12..16
    packages/optimise-ui/src/redux/actions/concomitantMed.js on lines 18..22
    packages/optimise-ui/src/redux/actions/consent.js on lines 6..10
    packages/optimise-ui/src/redux/actions/consent.js on lines 12..16
    packages/optimise-ui/src/redux/actions/demographicData.js on lines 16..22
    packages/optimise-ui/src/redux/actions/demographicData.js on lines 24..30
    packages/optimise-ui/src/redux/actions/demographicData.js on lines 43..49
    packages/optimise-ui/src/redux/actions/demographicData.js on lines 51..57
    packages/optimise-ui/src/redux/actions/demographicData.js on lines 110..116
    packages/optimise-ui/src/redux/actions/demographicData.js on lines 118..124
    packages/optimise-ui/src/redux/actions/demographicData.js on lines 144..150
    packages/optimise-ui/src/redux/actions/treatments.js on lines 39..42

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

    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