Bernd-L/exDateMan

View on GitHub

Showing 114 of 114 total issues

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

async deleteInventory(): Promise<void> {
const dialogRef: MatDialogRef<any> = this.dialog.open(
DeleteConfirmationDialogComponent,
{
data: { inventory: this.inventory }

Function fetchSingleInventoryEvents has a Cognitive Complexity of 11 (exceeds 5 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

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

const result = await (await db()).query(
`
INSERT INTO ${process.env.EDM_DB_SCHEMA}.events
("inventoryUuid", date, data)
VALUES ($1, $2, $3)
Severity: Major
Found in backend/src/app/server-events.ts and 1 other location - About 1 hr to fix
backend/src/app/client-events.ts on lines 212..219

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

const result = await (await db()).query(
`
INSERT INTO ${process.env.EDM_DB_SCHEMA}.events
("inventoryUuid", date, data)
VALUES ($1, $2, $3)
Severity: Major
Found in backend/src/app/client-events.ts and 1 other location - About 1 hr to fix
backend/src/app/server-events.ts on lines 70..77

Function handleLogin has 31 lines of code (exceeds 25 allowed). Consider refactoring.
Open

private async handleLogin(req: Request, res: Response) {
try {
/**
* The saltedPwdHash from the users projection
*/
Severity: Minor
Found in backend/src/app/authentication.ts - About 1 hr to fix

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

    data: {
    crudType: crudType.DELETE,
    itemType: itemType.CATEGORY,
    userUuid: (await this.as.getCurrentUser()).user.uuid,
    uuid: category.uuid
    Severity: Major
    Found in frontend/src/app/services/category/category.service.ts and 1 other location - About 1 hr to fix
    frontend/src/app/services/thing/thing.service.ts on lines 232..237

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

    private updateInventoriesProjection(event: Event): Inventory {
    /**
    * The inventory to be created or updated (ignored for delete events)
    */
    const newInventory = {
    Severity: Minor
    Found in frontend/src/app/services/inventory/inventory.service.ts - About 1 hr to fix

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

      data: {
      itemType: itemType.THING,
      crudType: crudType.DELETE,
      userUuid: (await this.as.getCurrentUser()).user.uuid,
      uuid: thing.uuid
      Severity: Major
      Found in frontend/src/app/services/thing/thing.service.ts and 1 other location - About 1 hr to fix
      frontend/src/app/services/category/category.service.ts on lines 350..355

      Function updateStock has 29 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      async updateStock(
      stock: Stock,
      inventoryUuid: string,
      thingUuid: string
      ): Promise<void> {
      Severity: Minor
      Found in frontend/src/app/services/stock/stock.service.ts - About 1 hr to fix

        Function handleRegister has 29 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        private async handleRegister(req: Request, res: Response) {
        // Check for duplicate email
        if (
        Authentication.usersProjection.find((user: User) => {
        return user.email === req.body.email;
        Severity: Minor
        Found in backend/src/app/authentication.ts - About 1 hr to fix

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

          canActivateChild(
          next: ActivatedRouteSnapshot,
          state: RouterStateSnapshot
          ):
          | Observable<boolean | UrlTree>
          Severity: Major
          Found in frontend/src/app/guards/no-offline.guard.ts and 1 other location - About 1 hr to fix
          frontend/src/app/guards/no-offline.guard.ts on lines 15..24

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

          canActivate(
          next: ActivatedRouteSnapshot,
          state: RouterStateSnapshot
          ):
          | Observable<boolean | UrlTree>
          Severity: Major
          Found in frontend/src/app/guards/no-offline.guard.ts and 1 other location - About 1 hr to fix
          frontend/src/app/guards/no-offline.guard.ts on lines 25..34

          Function exports has 27 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

          module.exports = function (config) {
          config.set({
          basePath: '',
          frameworks: ['jasmine', '@angular-devkit/build-angular'],
          plugins: [
          Severity: Minor
          Found in frontend/karma.conf.js - About 1 hr to fix

            Function applyThingEvent has 27 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

            private applyThingEvent(event: Event, inventoryUuid: string) {
            /**
            * The index of the event in the projection, if any
            */
            const index = ThingService.inventoryTingsProjection[
            Severity: Minor
            Found in frontend/src/app/services/thing/thing.service.ts - About 1 hr to fix

              Function getCurrentUser has 26 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

              async getCurrentUser(): Promise<GetStatusResponse> {
              let response: GetStatusResponse;
               
              try {
              // Try to get the data from the API
              Severity: Minor
              Found in frontend/src/app/services/auth/auth.service.ts - About 1 hr to fix

                Function updateUsersProjection has 26 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                public static updateUsersProjection(event: UserEvent) {
                const index = Authentication.usersProjection.findIndex(
                (user: User) => user.uuid === event.data.userUuid,
                );
                 
                 
                Severity: Minor
                Found in backend/src/app/authentication.ts - About 1 hr to fix

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

                  async ngOnInit() {
                  this.inventoryUuid = this.route.snapshot.params.inventoryUuid;
                  this.thingUuid = this.route.snapshot.params.thingUuid;
                   
                  await this.is.ready;
                  Severity: Minor
                  Found in frontend/src/app/components/add-stock/add-stock.component.ts - About 1 hr to fix

                    Function ngOnInit has 26 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;
                     
                    await this.is.ready;
                    Severity: Minor
                    Found in frontend/src/app/components/edit-thing/edit-thing.component.ts - About 1 hr to fix

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

                      constructor(
                      private is: InventoryService,
                      private ts: ThingService,
                       
                      private route: ActivatedRoute,
                      frontend/src/app/components/edit-inventory/edit-inventory.component.ts on lines 26..36
                      frontend/src/app/components/register/register.component.ts on lines 20..30

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

                      constructor(
                      private is: InventoryService,
                      private as: AuthService,
                      private route: ActivatedRoute,
                      public dialog: MatDialog,
                      frontend/src/app/components/edit-thing/edit-thing.component.ts on lines 33..43
                      frontend/src/app/components/register/register.component.ts on lines 20..30
                      Severity
                      Category
                      Status
                      Source
                      Language