trufflesuite/truffle

View on GitHub
packages/db/src/meta/graph/schema.ts

Summary

Maintainability
F
3 days
Test Coverage

File schema.ts has 282 lines of code (exceeds 250 allowed). Consider refactoring.
Open

import { logger } from "@truffle/db/logger";
const debug = logger("db:meta:graph:schema");

import gql from "graphql-tag";
import type * as graphql from "graphql";
Severity: Minor
Found in packages/db/src/meta/graph/schema.ts - About 2 hrs to fix

    Function resolvers has 50 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

      get resolvers(): IResolvers<any, Context<C>> {
        const log = debug.extend(`${this.resource}:resolvers`);
        log("Generating...");
    
        // setup loggers for specific resolvers
    Severity: Minor
    Found in packages/db/src/meta/graph/schema.ts - About 2 hrs to fix

      Function resolvers has 34 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

        get resolvers() {
          const log = debug.extend("resolvers");
          log("Generating...");
      
          const common = {
      Severity: Minor
      Found in packages/db/src/meta/graph/schema.ts - About 1 hr to fix

        Function typeDefs has 33 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

          get typeDefs(): graphql.DocumentNode[] {
            const log = debug.extend("typeDefs");
            log("Generating...");
        
            const common = gql`
        Severity: Minor
        Found in packages/db/src/meta/graph/schema.ts - About 1 hr to fix

          Function typeDefs has 32 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

            get typeDefs() {
              const log = debug.extend(`${this.resource}:typeDefs`);
              log("Generating...");
          
              const { typeDefs } = this.definition;
          Severity: Minor
          Found in packages/db/src/meta/graph/schema.ts - About 1 hr to fix

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

            class ImmutableDefinitionSchema<
              C extends Collections,
              N extends CollectionName<C>
            > extends DefinitionSchema<C, N> {
              get resolvers() {
            Severity: Major
            Found in packages/db/src/meta/graph/schema.ts and 1 other location - About 1 day to fix
            packages/db/src/meta/graph/schema.ts on lines 322..352

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

            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

            class MutableDefinitionSchema<
              C extends Collections,
              M extends MutableCollectionName<C>
            > extends DefinitionSchema<C, M> {
              get resolvers() {
            Severity: Major
            Found in packages/db/src/meta/graph/schema.ts and 1 other location - About 1 day to fix
            packages/db/src/meta/graph/schema.ts on lines 290..320

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

            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

                this.collections = Object.keys(options.definitions)
                  .map((resource: CollectionName<C>) => ({
                    [resource]: this.createSchema(resource)
                  }))
                  .reduce((a, b) => ({ ...a, ...b }), {}) as CollectionSchemas<C>;
            Severity: Major
            Found in packages/db/src/meta/graph/schema.ts and 1 other location - About 2 hrs to fix
            packages/db/src/meta/pouch/adapters/base.ts on lines 45..49

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

            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