RomainMarecat/slate

View on GitHub

Showing 93 of 98 total issues

Function ngOnInit has 175 lines of code (exceeds 25 allowed). Consider refactoring.
Open

ngOnInit() {
this.materialsModules = [{
title: 'Form Controls',
groups: [{
title: 'Autocomplete',
Severity: Major
Found in src/shared/material/summary/summary.component.ts - About 7 hrs to fix

    File icon.component.ts has 408 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    import { Component, OnInit } from '@angular/core';
     
    @Component({
    selector: 'app-icon',
    templateUrl: './icon.component.html',
    Severity: Minor
    Found in src/shared/material/button/icon/icon.component.ts - About 5 hrs to fix

      ProductEditComponent has 40 functions (exceeds 20 allowed). Consider refactoring.
      Open

      @Component({
      selector: 'app-product-edit',
      templateUrl: './product-edit.component.html',
      styleUrls: ['./product-edit.component.scss']
      })
      Severity: Minor
      Found in src/shared/admin/product/product-edit/product-edit.component.ts - About 5 hrs to fix

        InputComponent has 35 functions (exceeds 20 allowed). Consider refactoring.
        Open

        @Component({
        selector: 'app-input',
        templateUrl: './input.component.html',
        styleUrls: [ './input.component.scss' ],
        encapsulation: ViewEncapsulation.None
        Severity: Minor
        Found in src/shared/material/form/input/input.component.ts - About 4 hrs to fix

          CategoryAddComponent has 33 functions (exceeds 20 allowed). Consider refactoring.
          Open

          @Component({
          selector: 'app-category-add',
          templateUrl: './category-add.component.html',
          styleUrls: ['./category-add.component.scss']
          })
          Severity: Minor
          Found in src/shared/admin/category/category-add/category-add.component.ts - About 4 hrs to fix

            File product-edit.component.ts has 330 lines of code (exceeds 250 allowed). Consider refactoring.
            Open

            import { Component, OnInit, TemplateRef, ViewChild } from '@angular/core';
            import { FormArray, FormGroup } from '@angular/forms';
            import { ActivatedRoute, Router } from '@angular/router';
            import { DocumentReference } from '@firebase/firestore-types';
            import { UploadTaskSnapshot } from '@firebase/storage-types';
            Severity: Minor
            Found in src/shared/admin/product/product-edit/product-edit.component.ts - About 3 hrs to fix

              File offer-edit.component.ts has 326 lines of code (exceeds 250 allowed). Consider refactoring.
              Open

              import { Location } from '@angular/common';
              import { ChangeDetectorRef, Component, OnInit } from '@angular/core';
              import { FormArray, FormControl, FormGroup, Validators } from '@angular/forms';
              import { Meta, Title } from '@angular/platform-browser';
              import { ActivatedRoute, Router } from '@angular/router';
              Severity: Minor
              Found in src/app-car/offer-edit/offer-edit/offer-edit.component.ts - About 3 hrs to fix

                File home.component.ts has 324 lines of code (exceeds 250 allowed). Consider refactoring.
                Open

                import { Component, OnInit } from '@angular/core';
                import { Slider } from '../header/header/shared/slider';
                import { Product } from '../../../shared/product/shared/product';
                import { ProductService } from '../../../shared/product/shared/product.service';
                import { AlertService } from '../../../shared/popup/alert.service';
                Severity: Minor
                Found in src/app-store/home/home/home.component.ts - About 3 hrs to fix

                  Function getColumns has 82 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                  getColumns(): Observable<TableColumn[]> {
                  return new Observable((observer) => {
                  this.mediaObserver.asObservable()
                  .subscribe((mediaChanges: MediaChange[]) => {
                  if (mediaChanges && mediaChanges[0] && mediaChanges[0].mqAlias === 'xs') {
                  Severity: Major
                  Found in src/shared/admin/order/order-list/order-list.component.ts - About 3 hrs to fix

                    Function getProductOption has 81 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                    getProductOption(): ProductOption {
                    return {
                    authenticated: false,
                    cart: null,
                    product_most_ordered: {
                    Severity: Major
                    Found in src/app-store/home/home/shared/home-config.service.ts - About 3 hrs to fix

                      Function getColumns has 79 lines of code (exceeds 25 allowed). Consider refactoring.
                      Open

                      getColumns(): Observable<TableColumn[]> {
                      return new Observable(observer => {
                      this.mediaObserver.asObservable()
                      .subscribe((mediaChanges: MediaChange[]) => {
                      if (mediaChanges && mediaChanges[0] && mediaChanges[0].mqAlias === 'xs') {
                      Severity: Major
                      Found in src/shared/admin/cart/cart-list/cart-list.component.ts - About 3 hrs to fix

                        File cart-payment.component.ts has 294 lines of code (exceeds 250 allowed). Consider refactoring.
                        Open

                        import { HttpErrorResponse } from '@angular/common/http';
                        import {
                        AfterViewInit,
                        ChangeDetectorRef,
                        Component,
                        Severity: Minor
                        Found in src/shared/cart/cart-payment/cart-payment.component.ts - About 3 hrs to fix

                          RecipeEditComponent has 25 functions (exceeds 20 allowed). Consider refactoring.
                          Open

                          @Component({
                          selector: 'app-admin-recipe-edit',
                          templateUrl: './recipe-edit.component.html',
                          styleUrls: ['./recipe-edit.component.scss']
                          })

                            OfferEditComponent has 22 functions (exceeds 20 allowed). Consider refactoring.
                            Open

                            @Component({
                            selector: 'app-car-offer-edit',
                            templateUrl: './offer-edit.component.html',
                            styleUrls: ['./offer-edit.component.scss']
                            })
                            Severity: Minor
                            Found in src/app-car/offer-edit/offer-edit/offer-edit.component.ts - About 2 hrs to fix

                              Function createForm has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
                              Open

                              createForm(recipe: Recipe) {
                              this.form = new FormGroup({
                              name: new FormControl(recipe && recipe.name ? recipe.name : '', [
                              Validators.required,
                              ]),
                              Severity: Minor
                              Found in src/shared/admin/shared/recipe/form-recipe.ts - About 2 hrs to fix

                              AttributeEditComponent has 21 functions (exceeds 20 allowed). Consider refactoring.
                              Open

                              @Component({
                              selector: 'app-attribute-edit',
                              templateUrl: './attribute-edit.component.html',
                              styleUrls: ['./attribute-edit.component.scss']
                              })
                              Severity: Minor
                              Found in src/shared/admin/attribute/attribute-edit/attribute-edit.component.ts - About 2 hrs to fix

                                CartDeliveryComponent has 21 functions (exceeds 20 allowed). Consider refactoring.
                                Open

                                @Component({
                                selector: 'app-cart-delivery',
                                templateUrl: './cart-delivery.component.html',
                                styleUrls: ['./cart-delivery.component.scss']
                                })

                                  File cart-delivery.component.ts has 253 lines of code (exceeds 250 allowed). Consider refactoring.
                                  Open

                                  import { Component, EventEmitter, OnInit, Output } from '@angular/core';
                                  import { FormControl, FormGroup, Validators } from '@angular/forms';
                                  import { combineLatest, Observable } from 'rxjs';
                                  import { Delivery } from '../../../shared/interfaces/delivery';
                                  import { DeliveryService } from '../../../shared/services/delivery.service';

                                    Function createForm has 47 lines of code (exceeds 25 allowed). Consider refactoring.
                                    Open

                                    createForm(recipe: Recipe) {
                                    this.form = new FormGroup({
                                    name: new FormControl(recipe && recipe.name ? recipe.name : '', [
                                    Validators.required,
                                    ]),
                                    Severity: Minor
                                    Found in src/shared/admin/shared/recipe/form-recipe.ts - About 1 hr to fix

                                      Function createForm has 45 lines of code (exceeds 25 allowed). Consider refactoring.
                                      Open

                                      createForm() {
                                      this.formDetail = new FormGroup({
                                      name: new FormControl('', [
                                      Validators.required,
                                      Validators.minLength(1),
                                        Severity
                                        Category
                                        Status
                                        Source
                                        Language