Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

fix: fix the return type of signinCallback #1490

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/oidc-client-ts.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -975,7 +975,7 @@ export class UserManager {
readonly settings: UserManagerSettingsStore;
// (undocumented)
protected _signin(args: CreateSigninRequestArgs, handle: IWindow, verifySub?: string): Promise<User>;
signinCallback(url?: string): Promise<User | void>;
signinCallback(url?: string): Promise<User | undefined>;
// (undocumented)
protected _signinEnd(url: string, verifySub?: string): Promise<User>;
signinPopup(args?: SigninPopupArgs): Promise<User>;
Expand Down
9 changes: 6 additions & 3 deletions src/UserManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -365,18 +365,21 @@ export class UserManager {
*
* @throws `Error` If request_type is unknown or signout cannot be processed.
*/
public async signinCallback(url = window.location.href): Promise<User | void> {
public async signinCallback(url = window.location.href): Promise<User | undefined> {
const { state } = await this._client.readSigninResponseState(url);
switch (state.request_type) {
case "si:r":
return await this.signinRedirectCallback(url);
case "si:p":
return await this.signinPopupCallback(url);
await this.signinPopupCallback(url);
break;
case "si:s":
return await this.signinSilentCallback(url);
await this.signinSilentCallback(url);
break;
default:
throw new Error("invalid response_type in state");
}
return undefined;
}

/**
Expand Down
Loading