當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript oidc.OpenIdClientService類代碼示例

本文整理匯總了TypeScript中@toxicable/oidc.OpenIdClientService的典型用法代碼示例。如果您正苦於以下問題:TypeScript OpenIdClientService類的具體用法?TypeScript OpenIdClientService怎麽用?TypeScript OpenIdClientService使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了OpenIdClientService類的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: ngOnInit

  ngOnInit(): void {
    this.oidc.init().subscribe(() => {}, error => console.warn(error));

    let defaultTitle = 'Pass Past';
    Observable.combineLatest(
      this.store.select(state => state.courses.course.selected),
      this.store.select(state => state.courses.paper.selected),
      this.store.select(state => state.courses.exam.selected)
    ).subscribe((selectedItems) => {
      let course = selectedItems[0];
      let paper = selectedItems[1];
      let exam = selectedItems[2];

      let title = `${course ? course.code : ''} ${paper ? paper.name : ''} ${exam ? exam.year : ''} ${exam ? exam.semester : ''}`;
      let oldTitle = this.title.getTitle();
      let equalTitles = title === oldTitle;

      if (title.trim() === '') {
        if (oldTitle !== defaultTitle) {
          this.title.setTitle(defaultTitle);
        }
      } else {
        if (title !== oldTitle) {
          this.title.setTitle(title);
        }
      }

    });
  }
開發者ID:Toxicable,項目名稱:PassPast,代碼行數:29,代碼來源:app.component.ts

示例2: login

  login(provider: string) {
    this.loadingBar.doWithLoader(this.oidc.loginExternal(provider))
      .do(() => {
        this.examHub.stop();
        this.examHub.start();
      })
      .subscribe(x => this.alert.sendSuccess('Successfully logged in'));

  }
開發者ID:Toxicable,項目名稱:PassPast,代碼行數:9,代碼來源:login.component.ts

示例3:

      .flatMap(loggedIn => {
        if (loggedIn) {
          this.alertService.sendError('Unauthorized');
          this.router.navigate(['unauthorized']);
          return Observable.of(false);
        }

        return this.oidc.isInRole(role)
          .map(isInRole => {
            if (!isInRole) {
              this.alertService.sendError('Unauthorized');
              this.router.navigate(['unauthorized']);
              return false;
            }
            return true;
          });

      })
開發者ID:Toxicable,項目名稱:PassPast,代碼行數:18,代碼來源:auth-guard.service.ts

示例4: logout

 logout() {
   this.oidc.logout();
 }
開發者ID:Toxicable,項目名稱:PassPast,代碼行數:3,代碼來源:header.component.ts

示例5: registerGoogle

 registerGoogle() {
   this.oidc.registerExternal('google')
     .subscribe(x => {
       this.alert.sendSuccess('Successfully registered');
     });
 }
開發者ID:Toxicable,項目名稱:PassPast,代碼行數:6,代碼來源:register.component.ts

示例6: registerFacebook

 registerFacebook() {
   this.oidc.registerExternal('facebook')
     .subscribe(x => {
       this.alert.sendSuccess('Successfully registered');
     });
 }
開發者ID:Toxicable,項目名稱:PassPast,代碼行數:6,代碼來源:register.component.ts


注:本文中的@toxicable/oidc.OpenIdClientService類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。