feathersjs/feathers-hooks-common

View on GitHub

Showing 47 of 47 total issues

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

        items.forEach((item: any) => {
          const idName = getIdName(keyField, item);
          const key = makeCacheKey(item[idName]);
          cacheMap.delete(key);
        });
Severity: Major
Found in src/hooks/cache.ts and 1 other location - About 1 hr to fix
src/hooks/cache.ts on lines 37..41

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

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

        items.forEach((item: any) => {
          const idName = getIdName(keyField, item);
          const key = makeCacheKey(item[idName]);
          cacheMap.delete(key);
        });
Severity: Major
Found in src/hooks/cache.ts and 1 other location - About 1 hr to fix
src/hooks/cache.ts on lines 75..79

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

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 stashBefore has 29 lines of code (exceeds 25 allowed). Consider refactoring.
Open

export function stashBefore<H extends HookContext = HookContext>(fieldName?: string) {
  const beforeField = fieldName || 'before';

  return (context: H) => {
    checkContext(context, 'before', ['get', 'update', 'patch', 'remove'], 'stashBefore');
Severity: Minor
Found in src/hooks/stash-before.ts - About 1 hr to fix

    Function serializeItem has 29 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        function serializeItem(item: any, schema: any) {
          const computed: Record<string, any> = {};
          Object.keys(schema.computed || {}).forEach(name => {
            computed[name] = schema.computed[name](item, context); // needs closure
          });
    Severity: Minor
    Found in src/hooks/serialize.ts - About 1 hr to fix

      Function populateItem has 29 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      function populateItem(
        options: any,
        context: HookContext,
        item: any,
        includeSchema: any,
      Severity: Minor
      Found in src/hooks/populate.ts - About 1 hr to fix

        Function checkContext has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
        Open

        export function checkContext<H extends HookContext = HookContext>(
          context: H,
          type?: HookType | HookType[] | null,
          methods?: MethodName | MethodName[] | null,
          label = 'anonymous',
        Severity: Minor
        Found in src/utils/check-context.ts - 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

        Function fgraphql has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
        Open

        export function fgraphql<H extends HookContext = HookContext>(options1: FGraphQLHookOptions<H>) {
          debug('init call');
          const { parse, recordType, resolvers, runTime, query } = options1;
          let { schema } = options1;
        
        
        Severity: Minor
        Found in src/hooks/fgraphql.ts - About 55 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 convertResolverResult has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
        Open

        function convertResolverResult(result: any, ourQuery: any, fieldName: any, type: any) {
          if (result === null || result === undefined) {
            return ourQuery.listType ? [] : null;
          }
        
        
        Severity: Minor
        Found in src/hooks/fgraphql.ts - About 55 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 processRecordFieldResolver has 6 arguments (exceeds 4 allowed). Consider refactoring.
        Open

          store: any,
          query: any,
          depth: any,
          rec: any,
          fieldName: any,
        Severity: Minor
        Found in src/hooks/fgraphql.ts - About 45 mins to fix

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

          function convertFieldDefinitionType(fieldDefinitionType: any, errDesc: any, converted?: any): any {
            converted = converted || {
              nonNullTypeList: false,
              listType: false,
              nonNullTypeField: false,
          Severity: Minor
          Found in src/hooks/fgraphql.ts - 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 replaceItems has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
          Open

          export function replaceItems<H extends HookContext = HookContext>(context: H, items: any): void {
            // @ts-ignore
            if (context.params && context.params._actOn === 'dispatch') {
              context.dispatch = items;
              return;
          Severity: Minor
          Found in src/utils/replace-items.ts - 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 processRecord has 6 arguments (exceeds 4 allowed). Consider refactoring.
          Open

          function processRecord(store: any, query: any, depth: any, rec: any, type: any, j: any): any {
          Severity: Minor
          Found in src/hooks/fgraphql.ts - About 45 mins to fix

            Function populateItem has 5 arguments (exceeds 4 allowed). Consider refactoring.
            Open

              options: any,
              context: HookContext,
              item: any,
              includeSchema: any,
              depth: number,
            Severity: Minor
            Found in src/hooks/populate.ts - About 35 mins to fix

              Function populateItemArray has 5 arguments (exceeds 4 allowed). Consider refactoring.
              Open

                options: any,
                context: HookContext,
                items: any,
                includeSchema: any,
                depth: number,
              Severity: Minor
              Found in src/hooks/populate.ts - About 35 mins to fix

                Function populateAddChild has 5 arguments (exceeds 4 allowed). Consider refactoring.
                Open

                  options: any,
                  context: HookContext,
                  parentItem: any,
                  childSchema: any,
                  depth: any,
                Severity: Minor
                Found in src/hooks/populate.ts - About 35 mins to fix

                  Function processRecords has 5 arguments (exceeds 4 allowed). Consider refactoring.
                  Open

                  function processRecords(store: any, query: any, recs: any, type: any, depth = 0): any {
                  Severity: Minor
                  Found in src/hooks/fgraphql.ts - About 35 mins to fix

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

                        const thisProvider = transports.some(
                          provider =>
                            provider === hookProvider ||
                            (provider === 'server' && !hookProvider) ||
                            (provider === 'external' && !!hookProvider),
                    Severity: Minor
                    Found in src/hooks/disallow.ts and 1 other location - About 35 mins to fix
                    src/utils/is-provider.ts on lines 17..22

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

                    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

                        return providers.some(
                          provider =>
                            provider === hookProvider ||
                            (provider === 'server' && !hookProvider) ||
                            (provider === 'external' && !!hookProvider),
                    Severity: Minor
                    Found in src/utils/is-provider.ts and 1 other location - About 35 mins to fix
                    src/hooks/disallow.ts on lines 14..19

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

                    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

                            const include = [].concat((schema1.include || []) as any).map(schema => {
                              if ('provider' in schema) {
                                return schema;
                              } else {
                                return Object.assign({}, schema, { provider });
                    Severity: Minor
                    Found in src/hooks/populate.ts and 1 other location - About 35 mins to fix
                    src/hooks/populate.ts on lines 324..330

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

                    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

                          const include = [].concat(childSchema.include || []).map(schema => {
                            if ('provider' in schema) {
                              return schema;
                            } else {
                              return Object.assign({}, schema, { provider });
                    Severity: Minor
                    Found in src/hooks/populate.ts and 1 other location - About 35 mins to fix
                    src/hooks/populate.ts on lines 125..131

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

                    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

                    Severity
                    Category
                    Status
                    Source
                    Language