DevGroup-ru/yii2-jstree-widget

View on GitHub
src/widgets/TreeWidget.php

Summary

Maintainability
C
1 day
Test Coverage

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

    public function run()
    {
        if (!is_array($this->treeDataRoute)) {
            throw new InvalidConfigException("Attribute treeDataRoute is required to use TreeWidget.");
        }
Severity: Major
Found in src/widgets/TreeWidget.php - About 2 hrs to fix

    File TreeWidget.php has 259 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    <?php
    
    namespace devgroup\JsTreeWidget\widgets;
    
    use Yii;
    Severity: Minor
    Found in src/widgets/TreeWidget.php - About 2 hrs to fix

      Method adjacencyJs has 52 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          private function adjacencyJs()
          {
              $changeParentJs = '';
              if ($this->changeParentAction !== false) {
                  $changeParentUrl = is_array($this->changeParentAction) ? Url::to($this->changeParentAction) : $this->changeParentAction;
      Severity: Major
      Found in src/widgets/TreeWidget.php - About 2 hrs to fix

        Function contextMenuOptions has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
        Open

            private function contextMenuOptions($functionName)
            {
                $items = [];
                $conditionItems = "";
                foreach ($this->contextMenuItems as $index => $item) {
        Severity: Minor
        Found in src/widgets/TreeWidget.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

        Method contextMenuOptions has 35 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            private function contextMenuOptions($functionName)
            {
                $items = [];
                $conditionItems = "";
                foreach ($this->contextMenuItems as $index => $item) {
        Severity: Minor
        Found in src/widgets/TreeWidget.php - About 1 hr to fix

          Method nestedSetJs has 33 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              private function nestedSetJs()
              {
                  $js = "";
                  if (false !== $this->reorderAction || false !== $this->changeParentAction) {
                      $action = $this->reorderAction ?: $this->changeParentAction;
          Severity: Minor
          Found in src/widgets/TreeWidget.php - About 1 hr to fix

            Function run has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
            Open

                public function run()
                {
                    if (!is_array($this->treeDataRoute)) {
                        throw new InvalidConfigException("Attribute treeDataRoute is required to use TreeWidget.");
                    }
            Severity: Minor
            Found in src/widgets/TreeWidget.php - 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

            There are no issues that match your filters.

            Category
            Status