appbaseio/reactivesearch

View on GitHub

Showing 1,376 of 1,376 total issues

Function componentDidMount has 60 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    componentDidMount() {
        this.props.addComponent(this.internalComponent);
        this.props.addComponent(this.props.componentId);

        if (this.props.stream) {
Severity: Major
Found in packages/web/src/components/result/ReactiveList.js - About 2 hrs to fix

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

    const singleRangeProps = {
        componentId: 'BookSensor',
        dataField: 'average_rating',
        data: [
            {
    Severity: Major
    Found in packages/web/examples/ssr-with-react-dom/server/server.js and 1 other location - About 2 hrs to fix
    packages/web/examples/ssr-with-react-dom/client/index.js on lines 20..29

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

    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 multiDropdownRangeProps = {
        componentId: 'BookSensor',
        dataField: 'average_rating',
        data: [
            { start: 0, end: 3, label: 'Rating < 3' },
    Severity: Major
    Found in packages/web/examples/ssr/pages/multidropdownrange.js and 1 other location - About 2 hrs to fix
    packages/web/examples/ssr/pages/multirange.js on lines 15..24

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

    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 multiRangeProps = {
        componentId: 'BookSensor',
        dataField: 'average_rating',
        data: [
            { start: 0, end: 3, label: 'Rating < 3' },
    Severity: Major
    Found in packages/web/examples/ssr/pages/multirange.js and 1 other location - About 2 hrs to fix
    packages/web/examples/ssr/pages/multidropdownrange.js on lines 20..29

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

    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 singleRangeProps = {
        componentId: 'BookSensor',
        dataField: 'average_rating',
        data: [
            { start: 0, end: 3, label: 'Rating < 3' },
    Severity: Major
    Found in packages/web/examples/ssr-with-react-dom/client/index.js and 1 other location - About 2 hrs to fix
    packages/web/examples/ssr-with-react-dom/server/server.js on lines 19..40

    Duplicated Code

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

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

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

    Tuning

    This issue has a mass of 83.

    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

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

            if (!isEqual(this.props.defaultSelected, nextProps.defaultSelected)) {
                this.setValue(nextProps.defaultSelected, true);
            } else if (!isEqual(selectedValue, nextProps.selectedValue)) {
                this.setValue(nextProps.selectedValue || [], true);
            }
    Severity: Major
    Found in packages/web/src/components/list/MultiDropdownList.js and 2 other locations - About 2 hrs to fix
    packages/native/src/components/list/MultiDropdownList.js on lines 87..91
    packages/web/src/components/list/MultiList.js on lines 105..109

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

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

                        items={[
                            ...selectAll,
                            ...this.state.options
                                .filter(item => String(item.key).trim().length)
                                .map(item => ({ ...item, key: String(item.key) })),
    Severity: Major
    Found in packages/web/src/components/list/SingleDropdownList.js and 4 other locations - About 2 hrs to fix
    packages/native/src/components/list/MultiDropdownList.js on lines 297..302
    packages/vue/src/components/list/MultiDropdownList.jsx on lines 183..191
    packages/vue/src/components/list/SingleDropdownList.jsx on lines 170..178
    packages/web/src/components/list/MultiDropdownList.js on lines 353..358

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

    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

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

            if (!isEqual(this.props.defaultSelected, nextProps.defaultSelected)) {
                this.setValue(nextProps.defaultSelected, true);
            } else if (!isEqual(selectedValue, nextProps.selectedValue)) {
                this.setValue(nextProps.selectedValue || [], true);
            }
    Severity: Major
    Found in packages/native/src/components/list/MultiDropdownList.js and 2 other locations - About 2 hrs to fix
    packages/web/src/components/list/MultiDropdownList.js on lines 111..115
    packages/web/src/components/list/MultiList.js on lines 105..109

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

    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

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

            if (!isEqual(this.props.defaultSelected, nextProps.defaultSelected)) {
                this.setValue(nextProps.defaultSelected, true);
            } else if (!isEqual(selectedValue, nextProps.selectedValue)) {
                this.setValue(nextProps.selectedValue || [], true);
            }
    Severity: Major
    Found in packages/web/src/components/list/MultiList.js and 2 other locations - About 2 hrs to fix
    packages/native/src/components/list/MultiDropdownList.js on lines 87..91
    packages/web/src/components/list/MultiDropdownList.js 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 82.

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

                        items={[
                            ...selectAll,
                            ...this.$data.modifiedOptions
                                .filter(item => String(item.key).trim().length)
                                .map(item => ({
    Severity: Major
    Found in packages/vue/src/components/list/MultiDropdownList.jsx and 4 other locations - About 2 hrs to fix
    packages/native/src/components/list/MultiDropdownList.js on lines 297..302
    packages/vue/src/components/list/SingleDropdownList.jsx on lines 170..178
    packages/web/src/components/list/MultiDropdownList.js on lines 353..358
    packages/web/src/components/list/SingleDropdownList.js on lines 259..264

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

    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

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

                        <Calendar
                            current={current}
                            onDayPress={this.handleDateChange}
                            markedDates={markedDates}
                            markingType="period"
    Severity: Major
    Found in packages/native/src/components/date/DateRange.js and 1 other location - About 2 hrs to fix
    packages/native/src/components/date/DatePicker.js on lines 263..273

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

    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

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

                        <Calendar
                            current={current}
                            onDayPress={this.handleDateChange}
                            markedDates={markedDates}
                            markingType="period"
    Severity: Major
    Found in packages/native/src/components/date/DatePicker.js and 1 other location - About 2 hrs to fix
    packages/native/src/components/date/DateRange.js on lines 424..434

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

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

                                data={[
                                    ...selectAll,
                                    ...this.state.options
                                        .filter(item => String(item.key).trim().length)
                                        .map(item => ({ ...item, key: String(item.key) })),
    Severity: Major
    Found in packages/native/src/components/list/MultiDropdownList.js and 4 other locations - About 2 hrs to fix
    packages/vue/src/components/list/MultiDropdownList.jsx on lines 183..191
    packages/vue/src/components/list/SingleDropdownList.jsx on lines 170..178
    packages/web/src/components/list/MultiDropdownList.js on lines 353..358
    packages/web/src/components/list/SingleDropdownList.js on lines 259..264

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

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

                        items={[
                            ...selectAll,
                            ...this.$data.modifiedOptions
                                .filter(item => String(item.key).trim().length)
                                .map(item => ({
    Severity: Major
    Found in packages/vue/src/components/list/SingleDropdownList.jsx and 4 other locations - About 2 hrs to fix
    packages/native/src/components/list/MultiDropdownList.js on lines 297..302
    packages/vue/src/components/list/MultiDropdownList.jsx on lines 183..191
    packages/web/src/components/list/MultiDropdownList.js on lines 353..358
    packages/web/src/components/list/SingleDropdownList.js on lines 259..264

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

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

                        items={[
                            ...selectAll,
                            ...this.state.options
                                .filter(item => String(item.key).trim().length)
                                .map(item => ({ ...item, key: String(item.key) })),
    Severity: Major
    Found in packages/web/src/components/list/MultiDropdownList.js and 4 other locations - About 2 hrs to fix
    packages/native/src/components/list/MultiDropdownList.js on lines 297..302
    packages/vue/src/components/list/MultiDropdownList.jsx on lines 183..191
    packages/vue/src/components/list/SingleDropdownList.jsx on lines 170..178
    packages/web/src/components/list/SingleDropdownList.js on lines 259..264

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

    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="col">
                            <SelectedFilters />
                            <ResultList
                                componentId="SearchResult"
                                dataField="original_title"
    Severity: Major
    Found in packages/web/examples/DataSearch/src/index.js and 1 other location - About 2 hrs to fix
    packages/web/examples/withRedux/src/index.js on lines 35..48

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

    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="col">
                                <SelectedFilters />
                                <ResultList
                                    componentId="SearchResult"
                                    dataField="original_title"
    Severity: Major
    Found in packages/web/examples/withRedux/src/index.js and 1 other location - About 2 hrs to fix
    packages/web/examples/DataSearch/src/index.js on lines 26..39

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

    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

    GeoDistanceDropdown has 22 functions (exceeds 20 allowed). Consider refactoring.
    Open

    class GeoDistanceDropdown extends Component {
        constructor(props) {
            super(props);
    
            this.state = {
    Severity: Minor
    Found in packages/maps/src/components/basic/GeoDistanceDropdown.js - About 2 hrs to fix

      DynamicRangeSlider has 22 functions (exceeds 20 allowed). Consider refactoring.
      Open

      class DynamicRangeSlider extends Component {
          constructor(props) {
              super(props);
      
              this.state = {
      Severity: Minor
      Found in packages/web/src/components/range/DynamicRangeSlider.js - About 2 hrs to fix

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

            render() {
                return (
                    <ReactiveBase
                        app="meetup_app"
                        credentials="lW70IgSjr:87c5ae16-73fb-4559-a29e-0a02760d2181"
        Severity: Major
        Found in site/demos/datalayer/src/index.js - About 2 hrs to fix
          Severity
          Category
          Status
          Source
          Language