Я пытаюсь проверить состояние проверки подлинности моего приложения и убедиться, что оно имеет проверенного пользователя.
У меня есть начальное состояние, где logged
равно false, и когда я пытаюсь проверить CanActivate()
, logged возвращается как false.
Я зарегистрировал Redux DevTools , и состояние аутентификации изменилось, поэтому зарегистрированное значение изменилось на true.
что я делаю не так? Как я могу проверить, если пользователь прошел проверку подлинности с использованием NGRX?
guard.ts
constructor(
private _store: Store<fromAuth.AuthState>
) { }
canActivate(): Observable<boolean> {
return this.checkUserLogged(); // Return is always false
}
private checkUserLogged() {
return this._store.select(fromAuth.isLogged).pipe(take(1));
}
app.component.ts
import { Store } from '@ngrx/store';
import * as fromAuth from '@myapp/store/reducers/auth.reducer';
import * as authActions from '@myapp/store/actions/auth.actions';
constructor(
private _store: Store<fromAuth.AuthState>,
) {
this._store.dispatch(new authActions.GetUser());
auth.reducer.ts
export interface AuthState {
logged: boolean;
;
export const initialState: AuthState = {
logged: false,
};
export function authReducer(state = initialState, action: Action):
AuthState {
switch (action.type) {
case authActions.GET_USER:
return {
...state,
logged: false
};
case authActions.AUTHENTICATED:
return {
...state,
...action.payload,
loading: false,
logged: true,
};
// emitted ....
}
export const getAuthState = createFeatureSelector<AuthState>('auth');
export const isLogged = createSelector(
getAuthState, (state: AuthState) =>
state.logged);
auth.effects.ts
@Injectable({
providedIn: 'root'
})
export class AuthEffects {
constructor(
private _actions: Actions,
private _angularFireAuth: AngularFireAuth) { }
@Effect()
getUser$: Observable<Action> = this._actions.pipe(
ofType(authActions.GET_USER),
switchMap(() => this._angularFireAuth.authState),
switchMap(user => forkJoin([
from(user.getIdTokenResult(true)), of(user)])
.pipe(map(([token, user]) => {
if (user) {
const authState = {
firestoreCollection: token.claims.firestoreCollection,
user: {
admin: token.claims.admin,
uid: user.uid,
displayName: user.displayName
}
};
// You are returning this action
// Soon after logged in should be true.
return new authActions.Authenticated(authState);
} else {
return new authActions.NotAuthenticated();
}
}))),
catchError((error) => of(new authActions.AuthError(error)))
)
}