feat: Add success alert after login (CAS-1) #19

Closed
ptran wants to merge 2 commits from feat/success-alert into main
Showing only changes of commit 56fcb75599 - Show all commits

View File

@ -8,13 +8,21 @@ import { provideRouter } from '@angular/router';
import {routes} from './app.routes';
import {
KeycloakAngularModule,
KeycloakBearerInterceptor,
KeycloakBearerInterceptor, KeycloakEventType,
KeycloakService,
} from 'keycloak-angular';
import {HTTP_INTERCEPTORS, provideHttpClient, withInterceptorsFromDi} from '@angular/common/http';
export const initializeKeycloak = (keycloak: KeycloakService) => async () =>
keycloak.init({
export const initializeKeycloak = (keycloak: KeycloakService) => async () => {
keycloak.keycloakEvents$.subscribe({
next: (e: any) => {
if (e.type === KeycloakEventType.OnAuthSuccess) {
Review

never use any

never use any
alert('Login erfolreich');
}
}
});
return await keycloak.init({
config: {
url: 'http://localhost:9090',
realm: 'LF12',
@ -28,6 +36,7 @@ export const initializeKeycloak = (keycloak: KeycloakService) => async () =>
redirectUri: 'http://localhost:4200',
},
});
}
function initializeApp(keycloak: KeycloakService): () => Promise<boolean> {
return () => initializeKeycloak(keycloak)();