OkunaOrg/okuna-js

View on GitHub

Showing 14 of 14 total issues

CommunitiesAPI has 54 functions (exceeds 20 allowed). Consider refactoring.
Open

class CommunitiesAPI extends APIRequest {
  constructor(opts: RequestOpts) {
    super(opts);
  }

Severity: Major
Found in src/api/communities.ts - About 7 hrs to fix

    PostsAPI has 43 functions (exceeds 20 allowed). Consider refactoring.
    Open

    class PostsAPI extends APIRequest {
      constructor(opts: RequestOpts) {
        super(opts);
      }
    
    
    Severity: Minor
    Found in src/api/posts.ts - About 5 hrs to fix

      AuthAPI has 33 functions (exceeds 20 allowed). Consider refactoring.
      Open

      class AuthAPI extends APIRequest {
        constructor(opts: RequestOpts) {
          super(opts);
        }
      
      
      Severity: Minor
      Found in src/api/auth.ts - About 4 hrs to fix

        Function updateUser has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
        Open

          async updateUser(payload: IUpdateUser) {
            this._paths.push('user');
        
            const {
              avatar,
        Severity: Minor
        Found in src/api/auth.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 updateCommunity has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
        Open

          async updateCommunity(name: string, opts: IUpdateCommunity) {
            this._paths.push(encodeURIComponent(name));
        
            const payload: any = {};
        
        
        Severity: Minor
        Found in src/api/communities.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

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

          async getCommunitiesWithQuery(query: string, authenticatedRequest: boolean = true) {
            this._paths.push('search');
            this._params.query = query;
            this.requiresToken = authenticatedRequest;
        
        
        Severity: Major
        Found in src/api/communities.ts and 1 other location - About 1 hr to fix
        src/api/hashtags.ts on lines 38..43

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

        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

          async getHashtagsWithQuery(query: string, authenticatedRequest: boolean = true) {
            this._paths.push('search');
            this._params.query = query;
            this.requiresToken = authenticatedRequest;
            return this.get();
        Severity: Major
        Found in src/api/hashtags.ts and 1 other location - About 1 hr to fix
        src/api/communities.ts on lines 111..117

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

        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 createCommunity has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
        Open

          async createCommunity(opts: ICreateCommunity) {
            const payload: any = {
              name: opts.name,
              title: opts.title,
              categories: opts.categories.join(','),
        Severity: Minor
        Found in src/api/communities.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 queryString has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
        Open

        const queryString = (obj: object, parent: string | null = null): string => {
          return Object.keys(obj).map(key => {
            const value = (obj as any)[key];
        
            if (typeof value === 'object') {
        Severity: Minor
        Found in src/utils/queryString.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 getTimelinePosts has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

          async getTimelinePosts(opts: IGetTimelinePosts) {
            if (opts.listIds && opts.listIds.length) {
              this._params['list_id'] = opts.listIds.join(',');
            }
        
        
        Severity: Minor
        Found in src/api/posts.ts - 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 generateHeaders has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

          generateHeaders(contentType: string | null = null): object {
            const headers: object = {
              'Accept': 'application/json'
            };
        
        
        Severity: Minor
        Found in src/utils/APIRequest.ts - 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 getGlobalModeratedObjects has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

          async getGlobalModeratedObjects(opts: IGetGlobalModeratedObjects) {
            this._paths.push('moderated-objects', 'global');
        
            if (opts.count !== undefined) {
              this._params.count = opts.count;
        Severity: Minor
        Found in src/api/moderation.ts - 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 createPost has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

          async createPost(communityName: string, opts: ICreatePost) {
            this._paths.push(encodeURIComponent(communityName), 'posts');
        
            const payload: any = {};
        
        
        Severity: Minor
        Found in src/api/communities.ts - About 25 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 getModeratedObjects has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

          async getModeratedObjects(communityName: string, opts: IGetGlobalModeratedObjects) {
            this._paths.push(encodeURIComponent(communityName), 'moderated-objects');
        
            if (opts.count !== undefined) {
              this._params.count = opts.count;
        Severity: Minor
        Found in src/api/communities.ts - About 25 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

        Severity
        Category
        Status
        Source
        Language