nexxtway/react-rainbow

View on GitHub
src/components/MarkdownOutput/renderers/styled.js

Summary

Maintainability
C
1 day
Test Coverage

File styled.js has 260 lines of code (exceeds 250 allowed). Consider refactoring.
Open

import styled from 'styled-components';
import attachThemeAttrs from '../../../styles/helpers/attachThemeAttrs';
import {
    FONT_SIZE_HEADING_X_LARGE,
    FONT_SIZE_HEADING_LARGE,
Severity: Minor
Found in src/components/MarkdownOutput/renderers/styled.js - About 2 hrs to fix

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

    export const StyledBlockquote = attachThemeAttrs(styled.blockquote)`
        position: relative;    
        display: block;
        margin: 0;
        padding: 1em 1rem 1rem 1.5rem;
    Severity: Major
    Found in src/components/MarkdownOutput/renderers/styled.js and 2 other locations - About 2 hrs to fix
    src/components/Breadcrumbs/styled/ol.js on lines 4..35
    src/components/ProgressStep/styled/step.js on lines 4..54

    Duplicated Code

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

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

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

    Tuning

    This issue has a mass of 84.

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

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

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

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

    Refactorings

    Further Reading

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

    export const StyledLink = attachThemeAttrs(styled.a)`
        color: ${props => props.palette.text.main};
        text-decoration: underline;
    
        :hover {
    Severity: Major
    Found in src/components/MarkdownOutput/renderers/styled.js and 5 other locations - About 1 hr to fix
    library/styleguideComponents/Wrapper/styled.js on lines 8..14
    library/styleguideComponents/Wrapper/styled.js on lines 16..29
    library/styleguideComponents/Wrapper/styled.js on lines 100..110
    src/components/MarkdownOutput/renderers/styled.js on lines 171..180
    src/components/Table/body/styled/editableCell.js on lines 20..41

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

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

    export const StyledTable = attachThemeAttrs(styled.table)`
        table-layout: fixed;
        border-collapse: separate;
        background-color: ${props => props.palette.background.main};
        border-spacing: 0;
    Severity: Major
    Found in src/components/MarkdownOutput/renderers/styled.js and 5 other locations - About 1 hr to fix
    library/styleguideComponents/Wrapper/styled.js on lines 8..14
    library/styleguideComponents/Wrapper/styled.js on lines 16..29
    library/styleguideComponents/Wrapper/styled.js on lines 100..110
    src/components/MarkdownOutput/renderers/styled.js on lines 66..77
    src/components/Table/body/styled/editableCell.js on lines 20..41

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

    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

    export const StyledTableHeadindCell = attachThemeAttrs(styled.td)`
        font-size: ${FONT_SIZE_TEXT_LARGE};
        text-align: ${props => props.align};
        border: 1px solid transparent;
        box-sizing: border-box;
    Severity: Major
    Found in src/components/MarkdownOutput/renderers/styled.js and 1 other location - About 1 hr to fix
    src/components/MarkdownOutput/renderers/styled.js on lines 205..219

    Duplicated Code

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

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

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

    Tuning

    This issue has a mass of 63.

    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

    export const StyledTableCell = attachThemeAttrs(styled.td)`
        font-size: ${FONT_SIZE_TEXT_MEDIUM};
        text-align: ${props => props.align};
        border: 1px solid transparent;
        box-sizing: border-box;
    Severity: Major
    Found in src/components/MarkdownOutput/renderers/styled.js and 1 other location - About 1 hr to fix
    src/components/MarkdownOutput/renderers/styled.js on lines 189..203

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

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

    export const StyledHR = attachThemeAttrs(styled.hr)`
        margin: 1rem auto;
        background: ${props => props.palette.border.divider};
    `;
    Severity: Major
    Found in src/components/MarkdownOutput/renderers/styled.js and 20 other locations - About 35 mins to fix
    library/styleguideComponents/Wrapper/styled.js on lines 62..74
    library/styleguideComponents/Wrapper/styled.js on lines 88..98
    src/components/ColorPicker/variants/styled.js on lines 4..10
    src/components/GoogleAddressLookup/styled/icons.js on lines 5..7
    src/components/GoogleAddressLookup/styled/icons.js on lines 9..11
    src/components/GoogleAddressLookup/styled/icons.js on lines 13..15
    src/components/HelpText/styled/index.js on lines 70..74
    src/components/HighlightedText/styled/index.js on lines 4..9
    src/components/HighlightedText/styled/index.js on lines 11..14
    src/components/ImportRecordsFlow/stepOne/styled/optionPicker.js on lines 77..84
    src/components/ImportRecordsFlow/stepOne/styled/optionPicker.js on lines 86..92
    src/components/ImportRecordsFlow/stepOne/styled/optionPicker.js on lines 104..112
    src/components/ImportRecordsFlow/stepThree/styled/cvsFieldContainer.js on lines 4..10
    src/components/InternalDropdown/styled/index.js on lines 90..94
    src/components/InternalDropdown/styled/index.js on lines 145..152
    src/components/InternalDropdown/styled/index.js on lines 154..160
    src/components/MarkdownOutput/renderers/styled.js on lines 182..187
    src/components/PhoneInput/countriesDropdown/styled/index.js on lines 22..28
    src/components/Rating/styled/index.js on lines 42..65
    src/components/Table/body/styled/editableCell.js on lines 12..18

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

    export const StyledTableRow = attachThemeAttrs(styled.tr)`
        box-shadow: 0 1px 0 0 ${props => props.palette.border.divider};
        transition: all 250ms cubic-bezier(0.4,0,0.2,1) 0ms;
        box-sizing: border-box;
        counter-increment: rowCounter;
    Severity: Major
    Found in src/components/MarkdownOutput/renderers/styled.js and 20 other locations - About 35 mins to fix
    library/styleguideComponents/Wrapper/styled.js on lines 62..74
    library/styleguideComponents/Wrapper/styled.js on lines 88..98
    src/components/ColorPicker/variants/styled.js on lines 4..10
    src/components/GoogleAddressLookup/styled/icons.js on lines 5..7
    src/components/GoogleAddressLookup/styled/icons.js on lines 9..11
    src/components/GoogleAddressLookup/styled/icons.js on lines 13..15
    src/components/HelpText/styled/index.js on lines 70..74
    src/components/HighlightedText/styled/index.js on lines 4..9
    src/components/HighlightedText/styled/index.js on lines 11..14
    src/components/ImportRecordsFlow/stepOne/styled/optionPicker.js on lines 77..84
    src/components/ImportRecordsFlow/stepOne/styled/optionPicker.js on lines 86..92
    src/components/ImportRecordsFlow/stepOne/styled/optionPicker.js on lines 104..112
    src/components/ImportRecordsFlow/stepThree/styled/cvsFieldContainer.js on lines 4..10
    src/components/InternalDropdown/styled/index.js on lines 90..94
    src/components/InternalDropdown/styled/index.js on lines 145..152
    src/components/InternalDropdown/styled/index.js on lines 154..160
    src/components/MarkdownOutput/renderers/styled.js on lines 130..133
    src/components/PhoneInput/countriesDropdown/styled/index.js on lines 22..28
    src/components/Rating/styled/index.js on lines 42..65
    src/components/Table/body/styled/editableCell.js on lines 12..18

    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