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 | 1x 2x 2x 2x 2x 1x 2x 2x 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 { chatbotAction } from './chatbot.actions';
@Injectable({
providedIn: 'root',
})
export class AppChatbotEffects {
private readonly actions$ = inject(Actions);
private readonly router = inject(Router);
public readonly open$ = createEffect(
() =>
this.actions$.pipe(
ofType(chatbotAction.open.type),
mergeMap(() => from(this.router.navigate([{ outlets: { chatbot: ['root'] } }]))),
),
{ dispatch: false },
);
public readonly close$ = createEffect(
() =>
this.actions$.pipe(
ofType(chatbotAction.close.type),
mergeMap(() => from(this.router.navigate([{ outlets: { chatbot: [] } }]))),
),
{ dispatch: false },
);
}
|