ForestAdmin/forest-express-mongoose

View on GitHub

Showing 42 of 66 total issues

Function _formatLabel has 26 lines of code (exceeds 25 allowed). Consider refactoring.
Open

  static _formatLabel(record, momentRange) {
    switch (momentRange) {
      case 'day':
        return moment()
          .year(record._id.year)
Severity: Minor
Found in src/services/line-stat-getter.js - About 1 hr to fix

    Function getFieldSchema has 26 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

      getFieldSchema(path, fieldInfo) {
        const schema = { field: path, type: this._getTypeFromMongoose(fieldInfo) };
    
        const ref = this._detectReference(fieldInfo);
        if (ref) { schema.reference = ref; }
    Severity: Minor
    Found in src/utils/field-analyser.js - About 1 hr to fix

      Function requestUnflattener has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
      Open

        static requestUnflattener(request, response, next) {
          if (request.originalUrl.includes('.csv?')) {
            return next();
          }
      
      
      Severity: Minor
      Found in src/services/flattener.js - About 45 mins 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 _flattenField has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
      Open

        _flattenField(schema, parentFieldName, newFields = [], level = undefined) {
          if (schema.type?.fields && (level === undefined || level > -1)) {
            schema.type.fields.forEach((subField) => {
              const newFieldName = parentFieldName ? `${parentFieldName}${FLATTEN_SEPARATOR}${subField.field}` : schema.field;
              this._flattenField(
      Severity: Minor
      Found in src/services/flattener.js - About 35 mins 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 perform has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
      Open

        async perform() {
          const params = await getScopedParams(this._params, this._model, this._user);
          const timezone = -parseInt(moment().tz(params.timezone).format('Z'), 10);
          const timezoneOffset = timezone * 60 * 60 * 1000;
          const queryBuilder = new QueryBuilder(this._model, params, this._opts);
      Severity: Minor
      Found in src/services/line-stat-getter.js - About 35 mins 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 getFieldSchema has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
      Open

        getFieldSchema(path, fieldInfo) {
          const schema = { field: path, type: this._getTypeFromMongoose(fieldInfo) };
      
          const ref = this._detectReference(fieldInfo);
          if (ref) { schema.reference = ref; }
      Severity: Minor
      Found in src/utils/field-analyser.js - About 35 mins 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 getFieldNamesRequested has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
      Open

        async getFieldNamesRequested() {
          if (!this._params.fields || !this._params.fields[this._model.modelName]) { return null; }
      
          // NOTICE: Populate the necessary associations for filters
          const associations = this._params.filters
      Severity: Minor
      Found in src/services/query-builder.js - About 35 mins 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

      Avoid too many return statements within this function.
      Open

              return 'Json';
      Severity: Major
      Found in src/utils/field-analyser.js - About 30 mins to fix

        Avoid too many return statements within this function.
        Open

              return this._schemaType(type);
        Severity: Major
        Found in src/utils/field-analyser.js - About 30 mins to fix

          Avoid too many return statements within this function.
          Open

                return null;
          Severity: Major
          Found in src/utils/field-analyser.js - About 30 mins to fix

            Avoid too many return statements within this function.
            Open

                    return 'Json';
            Severity: Major
            Found in src/utils/field-analyser.js - About 30 mins to fix

              Avoid too many return statements within this function.
              Open

                    return 'String';
              Severity: Major
              Found in src/utils/field-analyser.js - About 30 mins to fix

                Avoid too many return statements within this function.
                Open

                        return this._getTypeFromNative(type.type);
                Severity: Major
                Found in src/utils/field-analyser.js - About 30 mins to fix

                  Avoid too many return statements within this function.
                  Open

                        return [this._objectType(fieldInfo.options.type[0], (key) =>
                          this._getTypeFromNative(fieldInfo.options.type[0][key]))];
                  Severity: Major
                  Found in src/utils/field-analyser.js - About 30 mins to fix

                    Avoid too many return statements within this function.
                    Open

                          return 'String';
                    Severity: Major
                    Found in src/utils/field-analyser.js - About 30 mins to fix

                      Avoid too many return statements within this function.
                      Open

                              return [this._getTypeFromNative(fieldInfo.options.type[0])];
                      Severity: Major
                      Found in src/utils/field-analyser.js - About 30 mins to fix

                        Avoid too many return statements within this function.
                        Open

                              return 'Enum';
                        Severity: Major
                        Found in src/utils/field-analyser.js - About 30 mins to fix

                          Avoid too many return statements within this function.
                          Open

                              return fieldInfo.instance
                                || (fieldInfo.options && this._getTypeFromNative(fieldInfo.options.type))
                                || null;
                          Severity: Major
                          Found in src/utils/field-analyser.js - About 30 mins to fix

                            Avoid too many return statements within this function.
                            Open

                                  return this._objectType(fieldInfo.schema.obj, (fieldName) =>
                                    this._getTypeFromNative(fieldInfo.schema.obj[fieldName]));
                            Severity: Major
                            Found in src/utils/field-analyser.js - About 30 mins to fix

                              Avoid too many return statements within this function.
                              Open

                                    return this._objectType(type, (key) => this._getTypeFromNative(type[key]));
                              Severity: Major
                              Found in src/utils/field-analyser.js - About 30 mins to fix
                                Severity
                                Category
                                Status
                                Source
                                Language