Skip to content
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

feat: ✨ add flag to disable getSession after signIn on local / refresh provider #702

Open
wants to merge 10 commits into
base: main
Choose a base branch
from

Conversation

bitfactory-frank-spee
Copy link

@bitfactory-frank-spee bitfactory-frank-spee commented Mar 5, 2024

πŸ”— Linked issue

#701

❓ Type of change

  • πŸ“– Documentation (updates to the documentation, readme or JSdoc annotations)
  • 🐞 Bug fix (a non-breaking change that fixes an issue)
  • πŸ‘Œ Enhancement (improving an existing functionality like performance)
  • ✨ New feature (a non-breaking change that adds functionality)
  • 🧹 Chore (updates to the build process or auxiliary tools and libraries)
  • ⚠️ Breaking change (fix or feature that would cause existing functionality to change)

πŸ“š Description

See issue for clarification. This adds a flag to the signInOptions named withSession which defaults to true. This makes sure this will be backwards compatible. When withSession === false the getSession method will not be called.

This also includes a bug fix (681fdb0) where refresh was not equal to local provider.

πŸ“ Checklist

  • I have linked an issue or discussion.
  • I have added tests (if possible).
  • I have updated the documentation accordingly.

NOTE: this documentation mentioned withGetSession before and not withSession as decided to be the name later.

@phoenix-ru
Copy link
Collaborator

Hi @bitfactory-frank-spee , thanks for your contribution, it looks good to me.

I will come back to it after #694 , so that we can ensure that it's functionally good.

@phoenix-ru
Copy link
Collaborator

@bitfactory-frank-spee Could you please sync your PR with the current main?

@phoenix-ru
Copy link
Collaborator

bump @bitfactory-frank-spee

@bitfactory-frank-spee
Copy link
Author

@phoenix-ru I will update it this week πŸ‘

@bitfactory-frank-spee
Copy link
Author

@bitfactory-frank-spee Could you please sync your PR with the current main?

Done πŸš€

@zoey-kaiser zoey-kaiser added enhancement An improvement that needs to be added provider-local An issue with the local provider provider-refresh An issue with the refresh provider labels May 9, 2024
Copy link
Member

@zoey-kaiser zoey-kaiser left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi @bitfactory-frank-spee πŸ‘‹

Very close to being done! I have one minor renaming request and then we should be good to go, to release this in 0.8!

@zoey-kaiser
Copy link
Member

Hi @bitfactory-frank-spee πŸ‘‹

We just released 0.8.0, so I would begin looking into getting this PR merged in the next release. Could you please merge main and we can then do a final round of reviews 😊

Copy link
Member

@zoey-kaiser zoey-kaiser left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just some typings missing 😊

await nextTick(getSession)
const { callbackUrl, redirect = true, external, withSession = true } = signInOptions ?? {}

if (withSession) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could you please add type support for the new withSession option? Please also consider, that you will need to account for the fact that this value is only available for the local and refresh providers and should therefore not be added to the signIn function of the authjs provider.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi Zoey. Sorry it took a while. In my mind I responded somewhere. I can add typing.

But can you direct / help me to how I do this "account for the fact that this value is only available for the local and refresh providers and should therefore not be added to the signIn function of the authjs provider"? Because I have no idea what you mean here.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

So where do I add the typing support?

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

And how do I make sure this is not added to the signIn function of the authjs provider?

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@zoey-kaiser
Copy link
Member

Closing as this PR has gone stale. If someone else would like to take over the PR, feel free to fork the fixes and open a new PR 😊

@Mucaccino
Copy link

I need this. Really this was gone stale?

@bitfactory-frank-spee
Copy link
Author

I need this. Really this was gone stale?

Ahh, I now see that I needed to respond to this, and that I didn't. I have now: #702 (comment)

@zoey-kaiser zoey-kaiser reopened this Oct 22, 2024
@bitfactory-frank-spee
Copy link
Author

I merged the current main into this PR and fixed the conflicts as the local and refresh provider are merged in the new release. I also fixed the documentation.

*
* @default true
*/
withSession?: boolean
}

export interface SignUpOptions extends SecondarySignInOptions {

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This interface is odd IMHO. Because I never see this used in the code with any of the properties of the SecondarySignInOptions interface. It is just used next to a property which uses SecondarySignInOptions. But I could miss something which is there somewhere.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement An improvement that needs to be added provider-local An issue with the local provider provider-refresh An issue with the refresh provider
Projects
None yet
Development

Successfully merging this pull request may close these issues.

feat: ✨ add flag to disable getSession after signIn on local / refresh provider
5 participants