-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bind all methods of Auth0VueClient to this #110
Merged
Merged
Changes from 3 commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,7 +48,24 @@ export class Auth0Plugin implements Auth0VueClient { | |
constructor( | ||
private clientOptions: Auth0VueClientOptions, | ||
private pluginOptions?: Auth0PluginOptions | ||
) {} | ||
) { | ||
const plugin = this; | ||
|
||
// Vue Plugins can have issues when passing around the instance to `provide` | ||
// Therefor we need to bind all methods correctly to `this`. | ||
this.loginWithRedirect = this.loginWithRedirect.bind(plugin); | ||
this.loginWithPopup = this.loginWithPopup.bind(plugin); | ||
this.logout = this.logout.bind(plugin); | ||
this.getAccessTokenSilently = this.getAccessTokenSilently.bind(plugin); | ||
this.getAccessTokenWithPopup = this.getAccessTokenWithPopup.bind(plugin); | ||
this.checkSession = this.checkSession.bind(plugin); | ||
this.handleRedirectCallback = this.handleRedirectCallback.bind(plugin); | ||
this.buildAuthorizeUrl = this.buildAuthorizeUrl.bind(plugin); | ||
this.buildLogoutUrl = this.buildLogoutUrl.bind(plugin); | ||
this.__checkSession = this.__checkSession.bind(plugin); | ||
this.__refreshState = this.__refreshState.bind(plugin); | ||
this.__proxy = this.__proxy.bind(plugin); | ||
} | ||
|
||
install(app: App) { | ||
this._client = new Auth0Client({ | ||
|
@@ -148,7 +165,7 @@ export class Auth0Plugin implements Auth0VueClient { | |
} | ||
} | ||
|
||
async __refreshState() { | ||
private async __refreshState() { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Made this private as it shouldnt be public |
||
this._isAuthenticated.value = await this._client.isAuthenticated(); | ||
this._user.value = await this._client.getUser(); | ||
this._idTokenClaims.value = await this._client.getIdTokenClaims(); | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just a question, is there a dynamic way we can do this (e.g. find all functions that are direct members of
this
and bind it)? I can just see this being missed later; if we add new methods later we're likely to forget to add it to this list and run into issues when someone tries to use it.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated the PR to do it more dynamic.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Very cool