EmicoEcommerce/Magento2Tweakwise

View on GitHub

Showing 156 of 156 total issues

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

        _startLoader: function () {
            $(this.options.productListSelector).trigger('processStart');
            this.options.isLoading = true;
        },
Severity: Minor
Found in view/frontend/web/js/navigation-form.js and 1 other location - About 45 mins to fix
view/frontend/web/js/navigation-form.js on lines 453..456

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

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

Method __construct has 6 arguments (exceeds 4 allowed). Consider refactoring.
Open

        Context $context,
        Config $config,
        AjaxNavigationResult $ajaxNavigationResult,
        HashInputProvider $hashInputProvider,
        Timer $timer,
Severity: Minor
Found in Controller/Ajax/Navigation.php - About 45 mins to fix

    Method __construct has 6 arguments (exceeds 4 allowed). Consider refactoring.
    Open

            UrlModel $url,
            StrategyHelper $strategyHelper,
            CookieManagerInterface $cookieManager,
            TweakwiseConfig $config,
            Url $layerUrl,
    Severity: Minor
    Found in Model/Catalog/Layer/Url/Strategy/QueryParameterStrategy.php - About 45 mins to fix

      Method __construct has 6 arguments (exceeds 4 allowed). Consider refactoring.
      Open

              Context $context,
              Resolver $layerResolver,
              Config $config,
              Url $url,
              CurrentContext $currentContext,
      Severity: Minor
      Found in Block/LayeredNavigation/Navigation/State.php - About 45 mins to fix

        Function apply has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
        Open

            public function apply(MagentoHttpRequest $request, ProductNavigationRequest $navigationRequest): FilterApplierInterface
            {
                // Order / pagination etc. is still done with query parameters. Also apply this using the queryParameter strategy
                $this->queryParameterStrategy->apply($request, $navigationRequest);
                $filterPath = $request->getParam(self::REQUEST_FILTER_PATH);
        Severity: Minor
        Found in Model/Catalog/Layer/Url/Strategy/PathSlugStrategy.php - 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

        Method __construct has 6 arguments (exceeds 4 allowed). Consider refactoring.
        Open

                Client $client,
                RequestFactory $requestFactory,
                CollectionFactory $collectionFactory,
                CatalogConfig $catalogConfig,
                Visibility $visibility,
        Severity: Minor
        Found in Model/Catalog/Product/Recommendation/Context.php - About 45 mins to fix

          Method __construct has 6 arguments (exceeds 4 allowed). Consider refactoring.
          Open

              public function __construct(ScopeConfigInterface $config, Json $jsonSerializer, RequestInterface $request, State $state, WriterInterface $configWriter, TypeListInterface $cacheTypeList)
          Severity: Minor
          Found in Model/Config.php - About 45 mins to fix

            Method __construct has 6 arguments (exceeds 4 allowed). Consider refactoring.
            Open

                    CategoryRepository $categoryRepository,
                    StoreManagerInterface $storeManager,
                    UrlInterface $url,
                    Helper $exportHelper,
                    Config $config,
            Severity: Minor
            Found in Model/Client/Type/SuggestionType/SuggestionTypeCategory.php - About 45 mins to fix

              Function aroundGetFilters has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
              Open

                  public function aroundGetFilters(FilterList $subject, Closure $proceed, Layer $layer)
                  {
                      if (!$this->config->isLayeredEnabled()) {
                          if (!$this->config->isSearchEnabled() || !($layer instanceof Layer\Search)) {
                              return $proceed($layer);
              Severity: Minor
              Found in Model/Catalog/Layer/FilterList/Plugin.php - 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 getItems has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
              Open

                  public function getItems()
                  {
                      $query = $this->dataProviderHelper->getQuery();
                      $category = $this->dataProviderHelper->getCategory();
                      $promises = [];
              Severity: Minor
              Found in Model/Autocomplete/DataProvider/SuggestionDataProvider.php - 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

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

                          responseQueryString.forEach((value, key) => {
                              if (false === uniqueQueryParams.has(key)) {
                                  uniqueQueryParams.append(key, value);
                              }
                          });
              Severity: Minor
              Found in view/frontend/web/js/navigation-form.js and 1 other location - About 40 mins to fix
              view/frontend/web/js/navigation-form.js on lines 425..429

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

              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

                          origQueryString.forEach((value, key) => {
                              if (false === uniqueQueryParams.has(key)) {
                                  uniqueQueryParams.append(key, value);
                              }
                          });
              Severity: Minor
              Found in view/frontend/web/js/navigation-form.js and 1 other location - About 40 mins to fix
              view/frontend/web/js/navigation-form.js on lines 431..435

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

              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

                  public function aroundGetItems(Related $subject, Closure $proceed)
                  {
                      if (!$this->config->isRecommendationsEnabled(Config::RECOMMENDATION_TYPE_CROSSSELL)) {
                          return $proceed();
                      }
              Severity: Minor
              Found in Block/Catalog/Product/ProductList/Related/Plugin.php and 1 other location - About 40 mins to fix
              Block/Catalog/Product/ProductList/Upsell/Plugin.php on lines 33..47

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

              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

                  public function aroundGetItemCollection(Upsell $subject, Closure $proceed)
                  {
                      if (!$this->config->isRecommendationsEnabled(Config::RECOMMENDATION_TYPE_UPSELL)) {
                          return $proceed();
                      }
              Severity: Minor
              Found in Block/Catalog/Product/ProductList/Upsell/Plugin.php and 1 other location - About 40 mins to fix
              Block/Catalog/Product/ProductList/Related/Plugin.php on lines 32..46

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

              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

              Consider simplifying this complex logical expression.
              Open

              !function(a){function f(a,b){if(!(a.originalEvent.touches.length>1)){a.preventDefault();var c=a.originalEvent.changedTouches[0],d=document.createEvent("MouseEvents");d.initMouseEvent(b,!0,!0,window,1,c.screenX,c.screenY,c.clientX,c.clientY,!1,!1,!1,!1,0,null),a.target.dispatchEvent(d)}}if(a.support.touch="ontouchend"in document,a.support.touch){var e,b=a.ui.mouse.prototype,c=b._mouseInit,d=b._mouseDestroy;b._touchStart=function(a){var b=this;!e&&b._mouseCapture(a.originalEvent.changedTouches[0])&&(e=!0,b._touchMoved=!1,f(a,"mouseover"),f(a,"mousemove"),f(a,"mousedown"))},b._touchMove=function(a){e&&(this._touchMoved=!0,f(a,"mousemove"))},b._touchEnd=function(a){e&&(f(a,"mouseup"),f(a,"mouseout"),this._touchMoved||f(a,"click"),e=!1)},b._mouseInit=function(){var b=this;b.element.bind({touchstart:a.proxy(b,"_touchStart"),touchmove:a.proxy(b,"_touchMove"),touchend:a.proxy(b,"_touchEnd")}),c.call(b)},b._mouseDestroy=function(){var b=this;b.element.unbind({touchstart:a.proxy(b,"_touchStart"),touchmove:a.proxy(b,"_touchMove"),touchend:a.proxy(b,"_touchEnd")}),d.call(b)}}}(jQuery);
              Severity: Major
              Found in view/frontend/web/js/lib/jquery.ui.touch-punch.min.js - About 40 mins to fix

                Method __construct has 5 arguments (exceeds 4 allowed). Consider refactoring.
                Open

                        AttributeSlugResource $resource,
                        AttributeSlugInterfaceFactory $entityFactory,
                        CollectionFactory $collectionFactory,
                        AttributeSlugSearchResultsInterfaceFactory $searchResultsFactory,
                        CollectionProcessorInterface $collectionProcessor
                Severity: Minor
                Found in Model/AttributeSlugRepository.php - About 35 mins to fix

                  Method __construct has 5 arguments (exceeds 4 allowed). Consider refactoring.
                  Open

                          Config $config,
                          Logger $log,
                          ItemCollectionProviderInterface $originalProvider,
                          CollectionFactory $collectionFactory,
                          NavigationContext $navigationContext
                  Severity: Minor
                  Found in Model/Catalog/Layer/ItemCollectionProvider.php - About 35 mins to fix

                    Method __construct has 5 arguments (exceeds 4 allowed). Consider refactoring.
                    Open

                            UrlStrategyFactory $urlStrategyFactory,
                            MagentoHttpRequest $request,
                            CategoryRepositoryInterface $categoryRepository,
                            ExportHelper $exportHelper,
                            UrlModel $magentoUrl
                    Severity: Minor
                    Found in Model/Catalog/Layer/Url.php - About 35 mins to fix

                      Method __construct has 5 arguments (exceeds 4 allowed). Consider refactoring.
                      Open

                              Layer $layer,
                              FacetType $facet,
                              ItemFactory $itemFactory,
                              StoreManager $storeManager,
                              Attribute $attribute = null
                      Severity: Minor
                      Found in Model/Catalog/Layer/Filter.php - About 35 mins to fix

                        Method __construct has 5 arguments (exceeds 4 allowed). Consider refactoring.
                        Open

                                TranslitUrl $translitUrl,
                                AttributeSlugRepositoryInterface $attributeSlugRepository,
                                AttributeSlugInterfaceFactory $attributeSlugFactory,
                                CacheInterface $cache,
                                SerializerInterface $serializer
                        Severity: Minor
                        Found in Model/Catalog/Layer/Url/Strategy/FilterSlugManager.php - About 35 mins to fix
                          Severity
                          Category
                          Status
                          Source
                          Language