dsi-icl/optimise

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

Summary

Maintainability
F
3 days
Test Coverage

File editCommunication.jsx has 276 lines of code (exceeds 250 allowed). Consider refactoring.
Open

import React, { Component } from 'react';
import { connect } from 'react-redux';
import moment from 'moment';
import { Editor, EditorState, RichUtils, convertToRaw, convertFromRaw } from 'draft-js';
import { formatTests, formatEvents, formatTreatments, formatSymptomsAndSigns, formatVS, formatEdss } from './communicationTemplates';

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

        render() {
            return (
                <>
                    You can append these pre-composed paragraphs:<br /><br />
                    <div className={style.commentButtonsGroup}>

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

          render() {
              const { fetching, data, match, location } = this.props;
              if (fetching) {
                  return null;
              }

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

            render() {
                return (
                    <>
                        You can append these pre-composed paragraphs:<br /><br />
                        <div className={style.commentButtonsGroup}>

        Cognitive Complexity

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

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

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

        Further reading

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

            render() {
                const { fetching, data, match, location } = this.props;
                if (fetching) {
                    return null;
                }

        Cognitive Complexity

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

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

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

        Further reading

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

                treatments = treatments.filter(el => moment(el.startDate, 'x').valueOf() > moment().subtract(duration, 'months') || moment(el.terminatedDate, 'x').valueOf() > moment().subtract(duration, 'months'));
        packages/optimise-ui/src/components/editMedicalElements/editCommunication.jsx on lines 167..167
        packages/optimise-ui/src/components/editMedicalElements/editCommunication.jsx on lines 169..169

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

        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

                tests = tests.filter(el => moment(el.expectedOccurDate, 'x').valueOf() > moment().subtract(duration, 'months') || moment(el.actualOccurredDate, 'x').valueOf() > moment().subtract(duration, 'months'));
        packages/optimise-ui/src/components/editMedicalElements/editCommunication.jsx on lines 168..168
        packages/optimise-ui/src/components/editMedicalElements/editCommunication.jsx on lines 169..169

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

        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

                clinicalEvents = clinicalEvents.filter(el => moment(el.dateStartDate, 'x').valueOf() > moment().subtract(duration, 'months') || moment(el.endDate, 'x').valueOf() > moment().subtract(duration, 'months'));
        packages/optimise-ui/src/components/editMedicalElements/editCommunication.jsx on lines 167..167
        packages/optimise-ui/src/components/editMedicalElements/editCommunication.jsx on lines 168..168

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

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

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

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

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

        Refactorings

        Further Reading

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

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

        Duplicated Code

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

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

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

        Tuning

        This issue has a mass of 64.

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

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

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

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

        Refactorings

        Further Reading

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

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

        Duplicated Code

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

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

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

        Tuning

        This issue has a mass of 64.

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

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

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

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

        Refactorings

        Further Reading

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

                                <button name='testBlock' onClick={this._queryInterval} title='Tests' className={this.state.nextType === 'testBlock' ? style.selectedHop : ''}>Tests</button>
        packages/optimise-ui/src/components/editMedicalElements/editCommunication.jsx on lines 245..245
        packages/optimise-ui/src/components/editMedicalElements/editCommunication.jsx on lines 252..252

        Duplicated Code

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

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

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

        Tuning

        This issue has a mass of 62.

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

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

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

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

        Refactorings

        Further Reading

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

                                <button name='ceBlock' onClick={this._queryInterval} title='Clinical Events' className={this.state.nextType === 'ceBlock' ? style.selectedHop : ''}>Clinical Events</button>
        packages/optimise-ui/src/components/editMedicalElements/editCommunication.jsx on lines 251..251
        packages/optimise-ui/src/components/editMedicalElements/editCommunication.jsx on lines 252..252

        Duplicated Code

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

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

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

        Tuning

        This issue has a mass of 62.

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

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

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

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

        Refactorings

        Further Reading

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

                                <button name='medBlock' onClick={this._queryInterval} title='Treatments' className={this.state.nextType === 'medBlock' ? style.selectedHop : ''}>Treatments</button>
        packages/optimise-ui/src/components/editMedicalElements/editCommunication.jsx on lines 245..245
        packages/optimise-ui/src/components/editMedicalElements/editCommunication.jsx on lines 251..251

        Duplicated Code

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

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

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

        Tuning

        This issue has a mass of 62.

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

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

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

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

        Refactorings

        Further Reading

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

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

        Duplicated Code

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

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

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

        Tuning

        This issue has a mass of 49.

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

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

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

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

        Refactorings

        Further Reading

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

                        <form className={_style.panel}>
                            <div>
                                <i>We could not find the communication you are looking for.</i>
                            </div>
                        </form>
        packages/optimise-ui/src/components/login/login.jsx on lines 68..70

        Duplicated Code

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

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

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

        Tuning

        This issue has a mass of 49.

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

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

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

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

        Refactorings

        Further Reading

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

        @connect(state => ({
            fetching: state.patientProfile.fetching,
            data: state.patientProfile.data,
            availableFields: state.availableFields
        }))
        packages/optimise-ui/src/components/patientProfile/patientChart.jsx on lines 19..86
        packages/optimise-ui/src/components/patientProfile/patientChart.jsx on lines 757..902

        Duplicated Code

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

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

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

        Tuning

        This issue has a mass of 48.

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

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

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

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

        Refactorings

        Further Reading

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

                this.setState({
                    lastSubmit: (new Date()).getTime()
                }, () => {
                    store.dispatch(updateVisitAPICall(body));
                });
        packages/optimise-ui/src/components/editMedicalElements/editDemographic.jsx on lines 111..115

        Duplicated Code

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

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

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

        Tuning

        This issue has a mass of 48.

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

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

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

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

        Refactorings

        Further Reading

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

                        <div className={`${style.comIntervalBox} ${this.state.nextType ? style.showInterval : ''}`}>
                            <label htmlFor='interval'>Collect {this.state.nextType === 'ceBlock' ? 'clinical events' : this.state.nextType === 'testBlock' ? 'tests' : 'treatments'} across:</label><br />
                            <select value={this.state.intervalValue} name='interval' onChange={this._handleIntervalChange}>
                                <option value='1'>The past month</option>
                                <option value='2'>The past two months</option>
        packages/optimise-ui/src/components/patientProfile/sharedComponents.jsx on lines 11..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 47.

        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

            _onUnderlineClick(ev) {
                ev.preventDefault();
                this.onChange(RichUtils.toggleInlineStyle(this.state.editorState, 'UNDERLINE'));
            }
        packages/optimise-ui/src/components/editMedicalElements/editCommunication.jsx on lines 204..207
        packages/optimise-ui/src/components/editMedicalElements/editCommunication.jsx on lines 209..212

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

        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

            _onBoldClick(ev) {
                ev.preventDefault();
                this.onChange(RichUtils.toggleInlineStyle(this.state.editorState, 'BOLD'));
            }
        packages/optimise-ui/src/components/editMedicalElements/editCommunication.jsx on lines 209..212
        packages/optimise-ui/src/components/editMedicalElements/editCommunication.jsx on lines 214..217

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

        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

            _onItalicClick(ev) {
                ev.preventDefault();
                this.onChange(RichUtils.toggleInlineStyle(this.state.editorState, 'ITALIC'));
            }
        packages/optimise-ui/src/components/editMedicalElements/editCommunication.jsx on lines 204..207
        packages/optimise-ui/src/components/editMedicalElements/editCommunication.jsx on lines 214..217

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

        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