DevGroup-ru/yii2-jstree-widget

View on GitHub
src/actions/nestedset/NodeMoveAction.php

Summary

Maintainability
F
4 days
Test Coverage

File NodeMoveAction.php has 430 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php

namespace devgroup\JsTreeWidget\actions\nestedset;

use devgroup\JsTreeWidget\widgets\TreeWidget;
Severity: Minor
Found in src/actions/nestedset/NodeMoveAction.php - About 6 hrs to fix

    Method move has 126 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        protected function move($position = null, $siblings = [], $oldParentId)
        {
            $class = $this->className;
            if (null === $oldParent = $class::findOne($oldParentId)) {
                return ['error' => Yii::t('jstw', "Old parent with id '{id}' not found!", ['id' => $oldParentId])];
    Severity: Major
    Found in src/actions/nestedset/NodeMoveAction.php - About 5 hrs to fix

      Method moveMultiRoot has 112 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          protected function moveMultiRoot($position = null, $siblings = [], $oldParentId)
          {
              $class = $this->className;
              if ((int)$oldParentId == 0) {
                  return ['error' => Yii::t('jstw', 'Can not move root node as child!')];
      Severity: Major
      Found in src/actions/nestedset/NodeMoveAction.php - About 4 hrs to fix

        Method reorder has 69 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            protected function reorder($oldPosition = null, $position = null, $siblings = [])
            {
                if (null === $oldPosition || null === $position || true === empty($siblings)) {
                    return ['error' => Yii::t('jstw', 'Invalid data provided!')];
                }
        Severity: Major
        Found in src/actions/nestedset/NodeMoveAction.php - About 2 hrs to fix

          Function move has a Cognitive Complexity of 20 (exceeds 5 allowed). Consider refactoring.
          Open

              protected function move($position = null, $siblings = [], $oldParentId)
              {
                  $class = $this->className;
                  if (null === $oldParent = $class::findOne($oldParentId)) {
                      return ['error' => Yii::t('jstw', "Old parent with id '{id}' not found!", ['id' => $oldParentId])];
          Severity: Minor
          Found in src/actions/nestedset/NodeMoveAction.php - About 2 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

          Method run has 32 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              public function run()
              {
                  Yii::$app->response->format = Response::FORMAT_JSON;
                  $newParentId = Yii::$app->request->post('parent');
                  $oldParentId = Yii::$app->request->post('old_parent');
          Severity: Minor
          Found in src/actions/nestedset/NodeMoveAction.php - About 1 hr to fix

            Function moveMultiRoot has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
            Open

                protected function moveMultiRoot($position = null, $siblings = [], $oldParentId)
                {
                    $class = $this->className;
                    if ((int)$oldParentId == 0) {
                        return ['error' => Yii::t('jstw', 'Can not move root node as child!')];
            Severity: Minor
            Found in src/actions/nestedset/NodeMoveAction.php - 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 reorder has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
            Open

                protected function reorder($oldPosition = null, $position = null, $siblings = [])
                {
                    if (null === $oldPosition || null === $position || true === empty($siblings)) {
                        return ['error' => Yii::t('jstw', 'Invalid data provided!')];
                    }
            Severity: Minor
            Found in src/actions/nestedset/NodeMoveAction.php - 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 run has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
            Open

                public function run()
                {
                    Yii::$app->response->format = Response::FORMAT_JSON;
                    $newParentId = Yii::$app->request->post('parent');
                    $oldParentId = Yii::$app->request->post('old_parent');
            Severity: Minor
            Found in src/actions/nestedset/NodeMoveAction.php - 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

            Avoid too many return statements within this method.
            Open

                        return ['error' => $e->getMessage()];
            Severity: Major
            Found in src/actions/nestedset/NodeMoveAction.php - About 30 mins to fix

              Avoid too many return statements within this method.
              Open

                      return true;
              Severity: Major
              Found in src/actions/nestedset/NodeMoveAction.php - About 30 mins to fix

                Avoid too many return statements within this method.
                Open

                        return true;
                Severity: Major
                Found in src/actions/nestedset/NodeMoveAction.php - About 30 mins to fix

                  Avoid too many return statements within this method.
                  Open

                              return $this->reorder($oldPosition, $position, $siblings);
                  Severity: Major
                  Found in src/actions/nestedset/NodeMoveAction.php - About 30 mins to fix

                    Avoid too many return statements within this method.
                    Open

                            return true;
                    Severity: Major
                    Found in src/actions/nestedset/NodeMoveAction.php - About 30 mins to fix

                      Avoid too many return statements within this method.
                      Open

                                  return $this->move($position, $siblings, $oldParentId);
                      Severity: Major
                      Found in src/actions/nestedset/NodeMoveAction.php - About 30 mins to fix

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

                            public function init()
                            {
                                if (true === empty($this->className) || false === is_subclass_of($this->className, ActiveRecord::class)) {
                                    throw new InvalidConfigException('"className" param must be set and must be child of ActiveRecord');
                                }
                        Severity: Major
                        Found in src/actions/nestedset/NodeMoveAction.php and 1 other location - About 7 hrs to fix
                        src/actions/nestedset/FullTreeDataAction.php on lines 37..63

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

                        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

                                    $db->createCommand()->update(
                                        $class::tableName(),
                                        [
                                            $this->leftAttribute => new Expression($this->leftAttribute . sprintf('%s%d', $siblingsOperator, $siblingsDelta)),
                                            $this->rightAttribute => new Expression($this->rightAttribute . sprintf('%s%d', $siblingsOperator, $siblingsDelta)),
                        Severity: Minor
                        Found in src/actions/nestedset/NodeMoveAction.php and 1 other location - About 30 mins to fix
                        src/actions/nestedset/NodeMoveAction.php on lines 171..178

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

                        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

                                    $db->createCommand()->update(
                                        $class::tableName(),
                                        [
                                            $this->leftAttribute => new Expression($this->leftAttribute . sprintf('%s%d', $siblingsOperator, $siblingsDelta)),
                                            $this->rightAttribute => new Expression($this->rightAttribute . sprintf('%s%d', $siblingsOperator, $siblingsDelta)),
                        Severity: Minor
                        Found in src/actions/nestedset/NodeMoveAction.php and 1 other location - About 30 mins to fix
                        src/actions/nestedset/NodeMoveAction.php on lines 299..306

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

                        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