cattr-app/frontend-application

View on GitHub

Showing 4,835 of 4,835 total issues

Function init has 590 lines of code (exceeds 25 allowed). Consider refactoring.
Open

export function init(context, router) {
    let routes = {};

    ModuleLoaderInterceptor.on('Core', m => {
        m.routes.forEach(route => {
Severity: Major
Found in app/core/modules/Tasks/module.init.js - About 2 days to fix

    File time.js has 713 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    import moment from 'moment-timezone';
    import i18n from '@/i18n';
    
    export function formatDate(date, format = 'YYYY-MM-DD h:mm:ss') {
        return moment(date).format(format);
    Severity: Major
    Found in app/core/utils/time.js - About 1 day to fix

      File module.init.js has 611 lines of code (exceeds 250 allowed). Consider refactoring.
      Open

      import cloneDeep from 'lodash/cloneDeep';
      import TasksService from '@/services/resource/task.service';
      import ProjectsService from '@/services/resource/project.service';
      import StatusService from '@/services/resource/status.service';
      import { ModuleLoaderInterceptor } from '@/moduleLoader';
      Severity: Major
      Found in app/core/modules/Tasks/module.init.js - About 1 day to fix

        Function fieldsToFillProvider has 184 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        export function fieldsToFillProvider() {
            return [
                {
                    key: 'id',
                    displayable: () => false,
        Severity: Major
        Found in app/core/modules/Users/sections/users.js - About 7 hrs to fix

          File users.js has 473 lines of code (exceeds 250 allowed). Consider refactoring.
          Open

          import cloneDeep from 'lodash/cloneDeep';
          import TimezonePicker from '@/components/TimezonePicker';
          import CoreUsersService from '@/services/resource/user.service';
          import RoleSelect from '@/components/RoleSelect';
          import Users from '../views/Users';
          Severity: Minor
          Found in app/core/modules/Users/sections/users.js - About 7 hrs to fix

            Function init has a Cognitive Complexity of 42 (exceeds 5 allowed). Consider refactoring.
            Open

            export function init(context, router) {
                let routes = {};
            
                ModuleLoaderInterceptor.on('Core', m => {
                    m.routes.forEach(route => {
            Severity: Minor
            Found in app/core/modules/Tasks/module.init.js - About 6 hrs 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

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

                grid.addAction([
                    {
                        title: 'control.edit',
                        icon: 'icon-edit',
                        onClick: (router, { item }, context) => {
            Severity: Major
            Found in app/core/modules/Priorities/sections/priorities.js and 1 other location - About 6 hrs to fix
            app/core/modules/Statuses/sections/statuses.js on lines 122..144

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

            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

                grid.addAction([
                    {
                        title: 'control.edit',
                        icon: 'icon-edit',
                        onClick: (router, { item }, context) => {
            Severity: Major
            Found in app/core/modules/Statuses/sections/statuses.js and 1 other location - About 6 hrs to fix
            app/core/modules/Priorities/sections/priorities.js on lines 96..118

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

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

            export function localModuleLoader(router) {
                const requireModule = require.context('_modules', true, /module.init.js$/);
                let moduleInitQueue = [];
            
                requireModule.keys().forEach(fn => {
            Severity: Major
            Found in app/core/moduleLoader.js - About 5 hrs to fix

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

                  initSettingsSections() {
                      this.additionalFields
                          .filter(({ scope }) => scope === 'settings')
                          .forEach(({ scope, path, field }) => {
                              Store.dispatch('settings/addField', { scope, path, field });
              Severity: Major
              Found in app/core/arch/module.js and 1 other location - About 4 hrs to fix
              app/core/arch/module.js on lines 211..219

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

              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

                  initCompanySections() {
                      this.additionalFields
                          .filter(({ scope }) => scope === 'company')
                          .forEach(({ scope, path, field }) => {
                              Store.dispatch('settings/addField', { scope, path, field });
              Severity: Major
              Found in app/core/arch/module.js and 1 other location - About 4 hrs to fix
              app/core/arch/module.js on lines 197..205

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

              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

                  addSettingsSection(...args) {
                      Array.from(args).forEach(({ route, accessCheck, scope, order, component }) => {
                          const { path, name, meta, children } = route;
                          const section = new SettingsSection(path, name, meta, accessCheck, scope, order, component, children);
                          this.settingsSections.push(section);
              Severity: Major
              Found in app/core/arch/module.js and 1 other location - About 4 hrs to fix
              app/core/arch/module.js on lines 167..173

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

              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

                      {
                          title: 'field.color',
                          key: 'color',
                          render(h, { item }) {
                              return h(
              Severity: Major
              Found in app/core/modules/Priorities/sections/priorities.js and 1 other location - About 4 hrs to fix
              app/core/modules/Statuses/sections/statuses.js on lines 92..119

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

              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

                      {
                          title: 'field.color',
                          key: 'color',
                          render(h, { item }) {
                              return h(
              Severity: Major
              Found in app/core/modules/Statuses/sections/statuses.js and 1 other location - About 4 hrs to fix
              app/core/modules/Priorities/sections/priorities.js on lines 66..93

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

              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

                  addCompanySection(...args) {
                      Array.from(args).forEach(({ route, accessCheck, scope, order, component }) => {
                          const { path, name, meta, children } = route;
                          const section = new SettingsSection(path, name, meta, accessCheck, scope, order, component, children);
                          this.companySections.push(section);
              Severity: Major
              Found in app/core/arch/module.js and 1 other location - About 4 hrs to fix
              app/core/arch/module.js on lines 156..162

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

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

              export function init(context, router) {
                  const crud = context.createCrud('time_intervals.crud_title', 'time-intervals', TimeIntervalService);
                  const crudNewRoute = crud.new.getNewRouteName();
              
                  crud.new.addToMetaProperties('permissions', 'time-intervals/create', crud.new.getRouterConfig());
              Severity: Major
              Found in app/core/modules/TimeIntervals/module.init.js - About 4 hrs to fix

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

                    return {
                        accessCheck: async () => Store.getters['user/user'].is_admin === 1,
                        scope: 'company',
                        order: 20,
                        component: Priorities,
                Severity: Major
                Found in app/core/modules/Priorities/sections/priorities.js and 1 other location - About 3 hrs to fix
                app/core/modules/Statuses/sections/statuses.js on lines 157..177

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

                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 {
                        accessCheck: async () => Store.getters['user/user'].is_admin === 1,
                        scope: 'company',
                        order: 20,
                        component: Statuses,
                Severity: Major
                Found in app/core/modules/Statuses/sections/statuses.js and 1 other location - About 3 hrs to fix
                app/core/modules/Priorities/sections/priorities.js on lines 131..151

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

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

                const defultCallback = action => {
                    if (currentModal) {
                        const callback = currentModal.callback;
                        if (typeof callback === 'function') {
                            if (instance.showInput) {
                Severity: Minor
                Found in app/core/components/global/CustomModal/dialog.js - About 3 hrs 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

                Module has 28 functions (exceeds 20 allowed). Consider refactoring.
                Open

                export default class Module {
                    routes = [];
                    navEntries = [];
                    navEntriesDropdown = {};
                    navEntriesMenuDropdown = [];
                Severity: Minor
                Found in app/core/arch/module.js - About 3 hrs to fix
                  Severity
                  Category
                  Status
                  Source
                  Language