OkunaOrg/okuna-js

View on GitHub

Showing 12 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

        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