本文整理汇总了TypeScript中app/core/login/login-modal.service.LoginModalService类的典型用法代码示例。如果您正苦于以下问题:TypeScript service.LoginModalService类的具体用法?TypeScript service.LoginModalService怎么用?TypeScript service.LoginModalService使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了service.LoginModalService类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1:
(err: any) => {
if (err instanceof HttpErrorResponse) {
if (err.status === 401) {
const principal = this.injector.get(Principal);
if (principal.isAuthenticated()) {
principal.authenticate(null);
const loginModalService: LoginModalService = this.injector.get(LoginModalService);
loginModalService.open();
} else {
const loginService: LoginService = this.injector.get(LoginService);
loginService.logout();
const router = this.injector.get(Router);
router.navigate(['/']);
}
}
}
}
示例2:
(err: any) => {
if (err instanceof HttpErrorResponse) {
if (err.status === 401 && err.url && !err.url.includes('/api/account')) {
const destination = this.stateStorageService.getDestinationState();
if (destination !== null) {
const to = destination.destination;
const toParams = destination.params;
if (to.name === 'accessdenied') {
this.stateStorageService.storePreviousState(to.name, toParams);
}
} else {
this.stateStorageService.storeUrl('/');
}
const authServer: AuthServerProvider = this.injector.get(AuthServerProvider);
authServer.logout();
const loginModalService: LoginModalService = this.injector.get(LoginModalService);
loginModalService.open();
}
}
}
示例3:
(err: any) => {
if (err instanceof HttpErrorResponse) {
if (err.status === 401) {
if (this.principal.isAuthenticated()) {
this.principal.authenticate(null);
this.loginModalService.open();
} else {
this.loginService.logout();
this.router.navigate(['/']);
}
}
}
}
示例4:
this.router.navigate(['accessdenied']).then(() => {
// only show the login dialog, if the user hasn't logged in yet
if (!account) {
this.loginModalService.open();
}
});