appbaseio/dejaVu

View on GitHub

Showing 201 of 201 total issues

File ResultSet.js has 274 lines of code (exceeds 250 allowed). Consider refactoring.
Open

// @flow

import React from 'react';
import { ReactiveList } from '@appbaseio/reactivesearch';
import { connect } from 'react-redux';
Severity: Minor
Found in packages/browser/src/components/DataBrowser/ResultSet.js - About 2 hrs to fix

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

        render() {
            const { isShowingModal, dataError, jsonValue } = this.state;
            const { _id: documentId, _index: index, _type: type } = this.props.data;
    
            return (
    Severity: Major
    Found in packages/browser/src/components/DataBrowser/UpdateRow.js - About 2 hrs to fix

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

          render() {
              const { field } = this.props;
              const { hasMounted } = this.state;
              let componentId = field;
              if (field === '_type') {
      Severity: Major
      Found in packages/browser/src/components/DataTable/TermAggregation.js - About 2 hrs to fix

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

                        <Section>
                            <div>
                                <H2 css={{ marginBottom: 15 }}>Search Preview</H2>
                                <H4>
                                    Create search UI and test search relevancy of your
        Severity: Major
        Found in packages/dejavu-main/site/src/App.js and 1 other location - About 2 hrs to fix
        packages/dejavu-main/site/src/App.js on lines 449..464

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

        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

                        <Section id="landing-sections">
                            <div>
                                <H2 css={{ marginBottom: 15 }}>Data Importer</H2>
                                <H4>
                                    Bring data from your JSON or CSV files to
        Severity: Major
        Found in packages/dejavu-main/site/src/App.js and 1 other location - About 2 hrs to fix
        packages/dejavu-main/site/src/App.js on lines 481..496

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

        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

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

        const getTermsAggregationColumns = properties => {
            const columns = [];
        
            if (properties) {
                Object.keys(properties).forEach(item => {
        Severity: Major
        Found in packages/browser/src/utils/mappings.js - About 2 hrs to fix

          Function componentDidUpdate has 59 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              componentDidUpdate(prevProps) {
                  const {
                      isShowingNestedColumns,
                      mappings,
                      nestedColumns,
          Severity: Major
          Found in packages/browser/src/components/DataTable/DataTable.js - About 2 hrs to fix

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

                render() {
                    const {
                        value,
                        mode,
                        selectedRows,
            Severity: Major
            Found in packages/browser/src/components/DataTable/IdField.js - About 2 hrs to fix

              Function testConnection has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
              Open

              const testConnection = async (appname, rawUrl, reqHeaders = []) => {
                  const defaultError = 'Unable to connect';
                  try {
                      const { url } = parseUrl(rawUrl);
                      const headers = getHeaders(rawUrl);
              Severity: Minor
              Found in packages/browser/src/apis/app.js - About 2 hrs to fix

              Cognitive Complexity

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

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

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

              Further reading

              Function Cell has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
              Open

              const Cell = ({ mapping, column, row, ...props }: Props) => {
                  if (mapping && (mapping.type || mapping.properties)) {
                      switch (mapping.type) {
                          case 'boolean':
                              return <BooleanCell {...props} key={`${column}-${row}`} />;
              Severity: Minor
              Found in packages/browser/src/components/Cell/Cell.js - About 2 hrs to fix

              Cognitive Complexity

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

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

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

              Further reading

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

                  render() {
                      const { data } = this.state;
                      const { mode } = this.props;
              
                      return (
              Severity: Major
              Found in packages/browser/src/components/Cell/ArrayCell.js - About 2 hrs to fix

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

                    render() {
                        const { children, mode } = this.props;
                        const { showModal, error, value } = this.state;
                        return (
                            <Fragment>
                Severity: Major
                Found in packages/browser/src/components/Cell/ObjectCell.js - About 2 hrs to fix

                  Function testConnection has 53 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                  const testConnection = async (appname, rawUrl, reqHeaders = []) => {
                      const defaultError = 'Unable to connect';
                      try {
                          const { url } = parseUrl(rawUrl);
                          const headers = getHeaders(rawUrl);
                  Severity: Major
                  Found in packages/browser/src/apis/app.js - About 2 hrs to fix

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

                                        <AceEditor
                                            tabSize={2}
                                            mode="json"
                                            theme="github"
                                            onChange={this.handleJsonInput}
                    Severity: Major
                    Found in packages/browser/src/components/DataBrowser/UpdateRow.js and 1 other location - About 2 hrs to fix
                    packages/browser/src/components/Cell/ObjectCell.js on lines 106..119

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

                    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 mapStateToProps = state => ({
                        currentIds: getCurrentIds(state),
                        selectedRows: getSelectedRows(state),
                        mode: getMode(state),
                        selectAll: getSelectAll(state),
                    Severity: Major
                    Found in packages/browser/src/components/DataTable/IdHeaderField.js and 1 other location - About 2 hrs to fix
                    packages/browser/src/components/DataBrowser/DeleteRows.js on lines 99..107

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

                    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 mpaStateToProps = state => ({
                        appUrl: getUrl(state),
                        selectedRows: getSelectedRows(state),
                        indexes: getIndexes(state),
                        types: getTypes(state),
                    Severity: Major
                    Found in packages/browser/src/components/DataBrowser/DeleteRows.js and 1 other location - About 2 hrs to fix
                    packages/browser/src/components/DataTable/IdHeaderField.js on lines 151..159

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

                    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

                                        <AceEditor
                                            tabSize={2}
                                            mode="json"
                                            theme="github"
                                            onChange={this.handleJsonInput}
                    Severity: Major
                    Found in packages/browser/src/components/Cell/ObjectCell.js and 1 other location - About 2 hrs to fix
                    packages/browser/src/components/DataBrowser/UpdateRow.js on lines 160..173

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

                    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

                    Consider simplifying this complex logical expression.
                    Open

                            if (mappings) {
                                return (
                                    <StyledCell
                                        css={{ background: colors.tableHead, fontWeight: 'bold' }}
                                    >
                    Severity: Critical
                    Found in packages/browser/src/components/DataTable/ColumnHeader.js - About 2 hrs to fix

                      Function deleteData has 49 lines of code (exceeds 25 allowed). Consider refactoring.
                      Open

                      export const deleteData = async (
                          rawUrl,
                          indexName,
                          typeName,
                          queryData,
                      Severity: Minor
                      Found in packages/browser/src/apis/data.js - About 1 hr to fix

                        Function handleFetchMappings has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
                        Open

                        export function* handleFetchMappings() {
                            const defaultError = 'Unable to get mappings';
                            const defaultErrorDescription = 'Please add mappings';
                            try {
                                yield put(clearError());
                        Severity: Minor
                        Found in packages/browser/src/sagas/mappings.js - About 1 hr to fix

                        Cognitive Complexity

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

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

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

                        Further reading

                        Severity
                        Category
                        Status
                        Source
                        Language