firebaseui-web-react
firebaseui-web-react copied to clipboard
Is this project maintained?
This project appears to be abandoned when looking at the issue below, is it still being maintained? https://github.com/firebase/firebaseui-web-react/pull/173
Currently, considering the behavior of React18, it seemed better to use the following instead. https://github.com/firebase/firebaseui-web
I just go ahead and use https://www.npmjs.com/package/react-social-login-buttons
import { GoogleLoginButton } from 'react-social-login-buttons'
import { GoogleAuthProvider, getAuth, signInWithRedirect } from 'firebase/auth'
const provider = new GoogleAuthProvider()
export const LoginButton = () => {
return (
<GoogleLoginButton
onClick={() => {
signInWithRedirect(getAuth(), provider)
}}
/>
)
}
and I am done
No, this project appears to be dead.
@tylim88 Please note:
Note: Starting June 18 2024, implementing one of the options will be required for redirect sign-in to work on Google Chrome M115+. This is already required on Firefox 109+ and Safari 16.1+.
https://firebase.google.com/docs/auth/web/redirect-best-practices
@tylim88 Please note:
Note: Starting June 18 2024, implementing one of the options will be required for redirect sign-in to work on Google Chrome M115+. This is already required on Firefox 109+ and Safari 16.1+.
https://firebase.google.com/docs/auth/web/redirect-best-practices
@ypraag-cloudinary ???
@tylim88 Please note:
Note: Starting June 18 2024, implementing one of the options will be required for redirect sign-in to work on Google Chrome M115+. This is already required on Firefox 109+ and Safari 16.1+.
https://firebase.google.com/docs/auth/web/redirect-best-practices
@ypraag-cloudinary ???
You mentioned that you use signInWithRedirect. The reference is to an article that states that from 18.06.2024 there may be issues for people that use signInWithRedirect
@tylim88 Please note:
Note: Starting June 18 2024, implementing one of the options will be required for redirect sign-in to work on Google Chrome M115+. This is already required on Firefox 109+ and Safari 16.1+.
https://firebase.google.com/docs/auth/web/redirect-best-practices
@ypraag-cloudinary ???
You mentioned that you use signInWithRedirect. The reference is to an article that states that from 18.06.2024 there may be issues for people that use signInWithRedirect
@hitautodestruct
the point is not signInWithRedirect or sign in with anything the point is to show that you can easily replace this UI (which is dead) with another UI
smh
This project appears to be abandoned when looking at the issue below, is it still being maintained? #173
Currently, considering the behavior of React18, it seemed better to use the following instead. https://github.com/firebase/firebaseui-web
seems that's now dead too: https://github.com/firebase/firebaseui-web/issues/1084