appbaseio/dejaVu

View on GitHub

Showing 81 of 201 total issues

Function mappings has 81 lines of code (exceeds 25 allowed). Consider refactoring.
Open

const mappings = (state = initialState, action) => {
    const {
        data,
        type,
        indexes,
Severity: Major
Found in packages/browser/src/reducers/mappings.js - About 3 hrs to fix

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

        componentDidMount() {
            // sync state from url
            let appname = '';
            let url = '';
            const { mode, isConnected, isHidden, forceReconnect } = this.props;
    Severity: Major
    Found in packages/browser/src/components/ConnectApp/ConnectApp.js - About 3 hrs to fix

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

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

        Consider simplifying this complex logical expression.
        Open

                if (!isEmptyObject(data)) {
                    const indexes = Object.keys(data);
                    let properties = {};
                    let nestedProperties = {};
                    const types = [];
        Severity: Critical
        Found in packages/browser/src/sagas/mappings.js - About 3 hrs to fix

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

              render() {
                  const {
                      columns: allColumns,
                      nestedColumns: allNestedColumns,
                      visibleColumns,
          Severity: Major
          Found in packages/browser/src/components/DataBrowser/ShowHideColumns.js - About 2 hrs to fix

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

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

              Function bulkUpdate has 66 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

              export const bulkUpdate = async (
                  rawUrl,
                  indexName,
                  typeName,
                  queryData,
              Severity: Major
              Found in packages/browser/src/apis/data.js - About 2 hrs to fix

                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

                      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

                                  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
                                      Severity
                                      Category
                                      Status
                                      Source
                                      Language