Bernd-L/exDateMan

View on GitHub

Showing 114 of 114 total issues

Function applyCategoryEvent has 59 lines of code (exceeds 25 allowed). Consider refactoring.
Open

private async applyCategoryEvent(categoryEvent: Event) {
await this.is.ready;
 
const newCategory = {
name: categoryEvent.data.categoryData?.name,
Severity: Major
Found in frontend/src/app/services/category/category.service.ts - About 2 hrs to fix

    Identical blocks of code found in 3 locations. Consider refactoring.
    Open

    {
    icon: Icon.Thing,
    title: this.ts.things[this.inventoryUuid].find(
    thing => thing.uuid === this.thingUuid
    ).name,
    frontend/src/app/components/edit-stock/edit-stock.component.ts on lines 74..80
    frontend/src/app/components/stocks/stocks.component.ts on lines 56..62

    Identical blocks of code found in 3 locations. Consider refactoring.
    Open

    {
    icon: Icon.Thing,
    title: this.ts.things[this.inventoryUuid].find(
    thing => thing.uuid === this.thingUuid
    ).name,
    frontend/src/app/components/add-stock/add-stock.component.ts on lines 64..70
    frontend/src/app/components/stocks/stocks.component.ts on lines 56..62

    Identical blocks of code found in 3 locations. Consider refactoring.
    Open

    {
    icon: Icon.Thing,
    title: this.ts.things[this.inventoryUuid].find(
    thing => thing.uuid === this.thingUuid
    ).name,
    Severity: Major
    Found in frontend/src/app/components/stocks/stocks.component.ts and 2 other locations - About 2 hrs to fix
    frontend/src/app/components/add-stock/add-stock.component.ts on lines 64..70
    frontend/src/app/components/edit-stock/edit-stock.component.ts on lines 74..80

    Function fetchAllInventoryThingStocks has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
    Open

    private async fetchAllInventoryThingStocks() {
    console.log("fetch all Stocks");
     
    // Wait for the other services to be ready
    await this.ts.ready;
    Severity: Minor
    Found in frontend/src/app/services/stock/stock.service.ts - About 2 hrs to fix

    Function applyStockEvent has 43 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    private async applyStockEvent(stockEvent: Event) {
    await this.is.ready;
     
    /**
    * One date representing now
    Severity: Minor
    Found in frontend/src/app/services/stock/stock.service.ts - About 1 hr to fix

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

      onEditStock(): void {
      this.editStock().then(() => {
      if (!this.oof) {
      this.router.navigate([".."], { relativeTo: this.route });
      }
      frontend/src/app/components/account/account.component.ts on lines 76..82
      frontend/src/app/components/edit-inventory/edit-inventory.component.ts on lines 175..181

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

      onSave(): void {
      this.save().then(() => {
      if (!this.oof) {
      this.router.navigate(["/inventories"], { relativeTo: this.route });
      }
      Severity: Major
      Found in frontend/src/app/components/account/account.component.ts and 2 other locations - About 1 hr to fix
      frontend/src/app/components/edit-inventory/edit-inventory.component.ts on lines 175..181
      frontend/src/app/components/edit-stock/edit-stock.component.ts on lines 103..109

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

      onSubmit(): void {
      this.updateInventory().then(() => {
      if (!this.oof) {
      this.router.navigate(["things"], { relativeTo: this.route });
      }
      frontend/src/app/components/account/account.component.ts on lines 76..82
      frontend/src/app/components/edit-stock/edit-stock.component.ts on lines 103..109

      Function fetchAllInventoryCategories has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
      Open

      private async fetchAllInventoryCategories() {
      // Wait for the other services to be ready
      await this.is.ready;
      await this.ess.ready;
       
       
      Severity: Minor
      Found in frontend/src/app/services/category/category.service.ts - About 1 hr to fix

      Function applyCategoryEvent has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
      Open

      private async applyCategoryEvent(categoryEvent: Event) {
      await this.is.ready;
       
      const newCategory = {
      name: categoryEvent.data.categoryData?.name,
      Severity: Minor
      Found in frontend/src/app/services/category/category.service.ts - About 1 hr to fix

      Function fetchSingleInventoryEvents has 38 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      private async fetchSingleInventoryEvents(
      inventoryUuid: string
      ): Promise<void> {
      let res: Event[] = await this.api
      .get<Event[]>(this.baseUrl + "/events/" + inventoryUuid)
      Severity: Minor
      Found in frontend/src/app/services/EventSourcing/event-sourcing.service.ts - About 1 hr to fix

        Function checkEventLegitimacy has 36 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        public checkEventLegitimacy(
        event: InventoryEvent,
        userUuid: string,
        ): boolean {
        try {
        Severity: Minor
        Found in backend/src/app/authorization.ts - About 1 hr to fix

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

          async testLogin(): Promise<void> {
          const res = await this.as.getCurrentUser();
           
          this.authStatus = res;
           
           
          Severity: Major
          Found in frontend/src/app/components/side-nav/side-nav.component.ts and 1 other location - About 1 hr to fix
          frontend/src/app/app.component.ts on lines 58..64

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

          async testLogin(): Promise<void> {
          const res = await this.as.getCurrentUser();
           
          this.authStatus = res;
           
           
          Severity: Major
          Found in frontend/src/app/app.component.ts and 1 other location - About 1 hr to fix
          frontend/src/app/components/side-nav/side-nav.component.ts on lines 33..39

          Function start has 33 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

          async start() {
          // Connect to the db
          await db();
           
          // Set the ports
          Severity: Minor
          Found in backend/src/server.ts - About 1 hr to fix

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

            async ngOnInit(): Promise<void> {
            this.inventoryUuid = this.route.snapshot.params.inventoryUuid;
            this.thingUuid = this.route.snapshot.params.thingUuid;
            this.stockUuid = this.route.snapshot.params.stockUuid;
             
             
            Severity: Minor
            Found in frontend/src/app/components/edit-stock/edit-stock.component.ts - About 1 hr to fix

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

              CrumbTrailComponent.crumbs = [
              {
              icon: Icon.Inventory,
              title: this.inventory.name,
              routerLink: `/inventories`
              frontend/src/app/components/things/things.component.ts on lines 42..52

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

              CrumbTrailComponent.crumbs = [
              {
              icon: Icon.Inventory,
              title: this.inventory.name,
              routerLink: `/inventories`
              Severity: Major
              Found in frontend/src/app/components/things/things.component.ts and 1 other location - About 1 hr to fix
              frontend/src/app/components/categories/categories.component.ts on lines 48..58

              Function updateInventoriesProjection has 32 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

              public updateInventoriesProjection(event: InventoryEvent): Inventory {
              // Make sure the event is about an inventory
              if (event.data.itemType !== itemType.INVENTORY)
              throw new Error(
              "Cannot update inventoriesProjection with non-inventory event.",
              Severity: Minor
              Found in backend/src/app/authorization.ts - About 1 hr to fix
                Severity
                Category
                Status
                Source
                Language