dsi-icl/optimise

View on GitHub

Showing 1,390 of 1,390 total issues

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

        if (!this.state.newDate || !this.state.newDate.isValid()) {
            return this.setState({
                error: 'Please indicated the immunisation date'
            });
        }
packages/optimise-ui/src/components/createMedicalElements/createCE.jsx on lines 91..95
packages/optimise-ui/src/components/createMedicalElements/createTreatment.jsx on lines 95..99
packages/optimise-ui/src/components/editMedicalElements/editMedication.jsx on lines 172..176

Duplicated Code

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

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

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

Tuning

This issue has a mass of 55.

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

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

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

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

Refactorings

Further Reading

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

        const visitHasTests = this.props.data.tests.filter(el => el['orderedDuringVisit'] === this.props.visitId).length !== 0;
packages/optimise-ui/src/components/patientProfile/patientChart.jsx on lines 258..258
packages/optimise-ui/src/components/patientProfile/patientChart.jsx on lines 259..259

Duplicated Code

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

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

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

Tuning

This issue has a mass of 55.

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

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

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

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

Refactorings

Further Reading

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

                <label htmlFor='key'>Validation Key:</label><br /> <input name='key' type='text' ref={this.syncKey} defaultValue={key} autoComplete='off' autoCorrect='off' autoCapitalize='off' spellCheck='false' /><br /><br />
Severity: Major
Found in packages/optimise-ui/src/components/admin/sync.jsx and 1 other location - About 1 hr to fix
packages/optimise-ui/src/components/admin/sync.jsx on lines 87..87

Duplicated Code

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

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

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

Tuning

This issue has a mass of 55.

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

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

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

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

Refactorings

Further Reading

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

    _handleKeyChange(ev) {
        const newState = {};
        newState[ev.target.name] = ev.target.value;
        this.setState(newState);
    }
packages/optimise-ui/src/components/createMedicalElements/createTreatment.jsx on lines 125..129
packages/optimise-ui/src/components/editMedicalElements/editClinicalEvent.jsx on lines 147..151

Duplicated Code

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

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

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

Tuning

This issue has a mass of 55.

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

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

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

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

Refactorings

Further Reading

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

    _handleInputChange(ev) {
        const newState = {};
        newState[ev.target.name] = ev.target.value;
        this.setState(newState);
    }
packages/optimise-ui/src/components/editMedicalElements/editClinicalEvent.jsx on lines 147..151
packages/optimise-ui/src/components/editMedicalElements/editVisit.jsx on lines 63..67

Duplicated Code

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

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

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

Tuning

This issue has a mass of 55.

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

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

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

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

Refactorings

Further Reading

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

                <label htmlFor='host'>Remote Host:</label><br /> <input name='host' type='text' ref={this.syncAddress} defaultValue={host} autoComplete='off' autoCorrect='off' autoCapitalize='off' spellCheck='false' /><br /><br />
Severity: Major
Found in packages/optimise-ui/src/components/admin/sync.jsx and 1 other location - About 1 hr to fix
packages/optimise-ui/src/components/admin/sync.jsx on lines 88..88

Duplicated Code

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

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

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

Tuning

This issue has a mass of 55.

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

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

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

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

Refactorings

Further Reading

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

        const visitHasClinicalEvents = this.props.data.clinicalEvents.filter(el => el['recordedDuringVisit'] === this.props.visitId).length !== 0;
packages/optimise-ui/src/components/patientProfile/patientChart.jsx on lines 257..257
packages/optimise-ui/src/components/patientProfile/patientChart.jsx on lines 258..258

Duplicated Code

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

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

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

Tuning

This issue has a mass of 55.

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

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

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

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

Refactorings

Further Reading

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

        const relevantSymptomsFields = this.props.availableFields.visitFields.filter(field => allSymptoms.includes(field.id) && field.section === 2);
packages/optimise-ui/src/components/patientProfile/patientChart.jsx on lines 282..282

Duplicated Code

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

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

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

Tuning

This issue has a mass of 55.

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

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

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

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

Refactorings

Further Reading

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

    _handleChange(ev) {
        const newState = {};
        newState[ev.target.name] = ev.target.value;
        this.setState(newState);
    }
packages/optimise-ui/src/components/createMedicalElements/createTreatment.jsx on lines 125..129
packages/optimise-ui/src/components/editMedicalElements/editVisit.jsx on lines 63..67

Duplicated Code

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

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

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

Tuning

This issue has a mass of 55.

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

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

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

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

Refactorings

Further Reading

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

        const visitHasMedications = this.props.data.treatments.filter(el => el['orderedDuringVisit'] === this.props.visitId).length !== 0;
packages/optimise-ui/src/components/patientProfile/patientChart.jsx on lines 257..257
packages/optimise-ui/src/components/patientProfile/patientChart.jsx on lines 259..259

Duplicated Code

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

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

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

Tuning

This issue has a mass of 55.

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

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

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

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

Refactorings

Further Reading

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

        const relevantSignsFields = this.props.availableFields.visitFields.filter(field => allSymptoms.includes(field.id) && field.section === 3);
packages/optimise-ui/src/components/patientProfile/patientChart.jsx on lines 279..279

Duplicated Code

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

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

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

Tuning

This issue has a mass of 55.

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

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

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

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

Refactorings

Further Reading

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

                                    <Route path='/patientProfile/:patientId/visitFrontPage/:visitId/page/:currentPage/edit/:elementId' render={({ match, location }) => <EditMedWrapper match={match} location={location}/>}/>
packages/optimise-ui/src/components/createVisitFrontPage/componentWrappers/ce/otherSAEWrapper.jsx on lines 38..38
packages/optimise-ui/src/components/createVisitFrontPage/componentWrappers/ce/relapseWrapper.jsx on lines 38..38
packages/optimise-ui/src/components/createVisitFrontPage/componentWrappers/treatment/treatmentWrapper.jsx on lines 36..36
packages/optimise-ui/src/components/createVisitFrontPage/componentWrappers/treatment/treatmentWrapper.jsx on lines 41..41
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 11..11
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 12..12
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 13..13
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 14..14
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 15..15
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 16..16
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 17..17
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 18..18
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 19..19
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 20..20
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 21..21
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 22..22

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

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

                                    <Route path='/patientProfile/:patientId/visitFrontPage/:visitId/page/:currentPage/data/:ceId' render={({ match, location }) => <EditEventDataWrapper location={location} match={match}/>}/>
packages/optimise-ui/src/components/createVisitFrontPage/componentWrappers/ce/relapseWrapper.jsx on lines 38..38
packages/optimise-ui/src/components/createVisitFrontPage/componentWrappers/treatment/treatmentWrapper.jsx on lines 34..34
packages/optimise-ui/src/components/createVisitFrontPage/componentWrappers/treatment/treatmentWrapper.jsx on lines 36..36
packages/optimise-ui/src/components/createVisitFrontPage/componentWrappers/treatment/treatmentWrapper.jsx on lines 41..41
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 11..11
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 12..12
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 13..13
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 14..14
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 15..15
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 16..16
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 17..17
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 18..18
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 19..19
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 20..20
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 21..21
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 22..22

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

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

                <Route path='/patientProfile/:patientId/edit/visit/:visitId' render={({ match, location }) => <EditVisit match={match} location={location} />} />
packages/optimise-ui/src/components/createVisitFrontPage/componentWrappers/ce/otherSAEWrapper.jsx on lines 38..38
packages/optimise-ui/src/components/createVisitFrontPage/componentWrappers/ce/relapseWrapper.jsx on lines 38..38
packages/optimise-ui/src/components/createVisitFrontPage/componentWrappers/treatment/treatmentWrapper.jsx on lines 34..34
packages/optimise-ui/src/components/createVisitFrontPage/componentWrappers/treatment/treatmentWrapper.jsx on lines 36..36
packages/optimise-ui/src/components/createVisitFrontPage/componentWrappers/treatment/treatmentWrapper.jsx on lines 41..41
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 12..12
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 13..13
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 14..14
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 15..15
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 16..16
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 17..17
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 18..18
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 19..19
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 20..20
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 21..21
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 22..22

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

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

                <Route path='/patientProfile/:patientId/edit/treatment/:elementId' render={({ match, location }) => <EditMed match={match} location={location} />} />
packages/optimise-ui/src/components/createVisitFrontPage/componentWrappers/ce/otherSAEWrapper.jsx on lines 38..38
packages/optimise-ui/src/components/createVisitFrontPage/componentWrappers/ce/relapseWrapper.jsx on lines 38..38
packages/optimise-ui/src/components/createVisitFrontPage/componentWrappers/treatment/treatmentWrapper.jsx on lines 34..34
packages/optimise-ui/src/components/createVisitFrontPage/componentWrappers/treatment/treatmentWrapper.jsx on lines 36..36
packages/optimise-ui/src/components/createVisitFrontPage/componentWrappers/treatment/treatmentWrapper.jsx on lines 41..41
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 11..11
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 12..12
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 13..13
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 14..14
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 15..15
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 17..17
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 18..18
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 19..19
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 20..20
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 21..21
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 22..22

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

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

                <Route path='/patientProfile/:patientId/edit/pregnancy/data/' render={({ match, location }) => <EditPregnancies match={match} location={location} />} />
packages/optimise-ui/src/components/createVisitFrontPage/componentWrappers/ce/otherSAEWrapper.jsx on lines 38..38
packages/optimise-ui/src/components/createVisitFrontPage/componentWrappers/ce/relapseWrapper.jsx on lines 38..38
packages/optimise-ui/src/components/createVisitFrontPage/componentWrappers/treatment/treatmentWrapper.jsx on lines 34..34
packages/optimise-ui/src/components/createVisitFrontPage/componentWrappers/treatment/treatmentWrapper.jsx on lines 36..36
packages/optimise-ui/src/components/createVisitFrontPage/componentWrappers/treatment/treatmentWrapper.jsx on lines 41..41
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 11..11
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 12..12
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 13..13
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 14..14
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 15..15
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 16..16
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 17..17
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 18..18
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 20..20
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 21..21
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 22..22

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

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

                                    <Route path='/patientProfile/:patientId/visitFrontPage/:visitId/page/:currentPage' render={({ match, location }) => <CreateTreatmentsWrapper match={match} location={location}/>}/>
packages/optimise-ui/src/components/createVisitFrontPage/componentWrappers/ce/otherSAEWrapper.jsx on lines 38..38
packages/optimise-ui/src/components/createVisitFrontPage/componentWrappers/ce/relapseWrapper.jsx on lines 38..38
packages/optimise-ui/src/components/createVisitFrontPage/componentWrappers/treatment/treatmentWrapper.jsx on lines 34..34
packages/optimise-ui/src/components/createVisitFrontPage/componentWrappers/treatment/treatmentWrapper.jsx on lines 41..41
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 11..11
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 12..12
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 13..13
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 14..14
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 15..15
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 16..16
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 17..17
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 18..18
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 19..19
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 20..20
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 21..21
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 22..22

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

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

                                    <Route path='/patientProfile/:patientId/visitFrontPage/:visitId/page/:currentPage/interruptions/:elementId' render={({ match, location }) => <TreatmentInterruptionWrapper match={match} location={location}/>}/>
packages/optimise-ui/src/components/createVisitFrontPage/componentWrappers/ce/otherSAEWrapper.jsx on lines 38..38
packages/optimise-ui/src/components/createVisitFrontPage/componentWrappers/ce/relapseWrapper.jsx on lines 38..38
packages/optimise-ui/src/components/createVisitFrontPage/componentWrappers/treatment/treatmentWrapper.jsx on lines 34..34
packages/optimise-ui/src/components/createVisitFrontPage/componentWrappers/treatment/treatmentWrapper.jsx on lines 36..36
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 11..11
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 12..12
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 13..13
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 14..14
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 15..15
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 16..16
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 17..17
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 18..18
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 19..19
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 20..20
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 21..21
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 22..22

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

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

                <Route path='/patientProfile/:patientId/edit/communication/:visitId' render={({ match, location }) => <EditCommunication match={match} location={location} />} />
packages/optimise-ui/src/components/createVisitFrontPage/componentWrappers/ce/otherSAEWrapper.jsx on lines 38..38
packages/optimise-ui/src/components/createVisitFrontPage/componentWrappers/ce/relapseWrapper.jsx on lines 38..38
packages/optimise-ui/src/components/createVisitFrontPage/componentWrappers/treatment/treatmentWrapper.jsx on lines 34..34
packages/optimise-ui/src/components/createVisitFrontPage/componentWrappers/treatment/treatmentWrapper.jsx on lines 36..36
packages/optimise-ui/src/components/createVisitFrontPage/componentWrappers/treatment/treatmentWrapper.jsx on lines 41..41
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 11..11
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 12..12
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 13..13
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 14..14
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 15..15
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 16..16
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 17..17
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 18..18
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 19..19
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 20..20
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 22..22

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

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

                <Route path='/patientProfile/:patientId/edit/msPerfMeas/:visitId' render={({ match, location }) => <EditPerformanceMesaure match={match} location={location} />} />
packages/optimise-ui/src/components/createVisitFrontPage/componentWrappers/ce/otherSAEWrapper.jsx on lines 38..38
packages/optimise-ui/src/components/createVisitFrontPage/componentWrappers/ce/relapseWrapper.jsx on lines 38..38
packages/optimise-ui/src/components/createVisitFrontPage/componentWrappers/treatment/treatmentWrapper.jsx on lines 34..34
packages/optimise-ui/src/components/createVisitFrontPage/componentWrappers/treatment/treatmentWrapper.jsx on lines 36..36
packages/optimise-ui/src/components/createVisitFrontPage/componentWrappers/treatment/treatmentWrapper.jsx on lines 41..41
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 11..11
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 12..12
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 13..13
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 14..14
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 15..15
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 16..16
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 17..17
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 18..18
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 19..19
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 20..20
packages/optimise-ui/src/components/editMedicalElements/router.jsx on lines 21..21

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

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