All files user.effects.ts

100% Statements 12/12
100% Branches 0/0
100% Functions 7/7
100% Lines 12/12

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44                      1x 3x   3x   3x   3x   1x         3x   3x   1x         3x   3x   1x          
import { inject, Injectable } from '@angular/core';
import { Router } from '@angular/router';
import { Actions, createEffect, ofType } from '@ngrx/effects';
import { from } from 'rxjs';
import { mergeMap } from 'rxjs/operators';
 
import { userAction } from './user.actions';
 
@Injectable({
  providedIn: 'root',
})
export class AppUserEffects {
  private readonly actions$ = inject(Actions);
 
  private readonly router = inject(Router);
 
  public readonly login$ = createEffect(
    () =>
      this.actions$.pipe(
        ofType(userAction.login.type),
        mergeMap(() => from(this.router.navigate([{ outlets: { primary: ['user'], sidebar: [''] } }]))),
      ),
    { dispatch: false },
  );
 
  public readonly logout$ = createEffect(
    () =>
      this.actions$.pipe(
        ofType(userAction.logout.type),
        mergeMap(() => from(this.router.navigate([{ outlets: { primary: [''], sidebar: [''] } }]))),
      ),
    { dispatch: false },
  );
 
  public readonly signup$ = createEffect(
    () =>
      this.actions$.pipe(
        ofType(userAction.signup.type),
        mergeMap(() => from(this.router.navigate([{ outlets: { primary: ['login'], sidebar: [''] } }]))),
      ),
    { dispatch: false },
  );
}