firebaseui-web-react icon indicating copy to clipboard operation
firebaseui-web-react copied to clipboard

Is this project maintained?

Open ghost opened this issue 2 years ago • 7 comments

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

ghost avatar Dec 13 '22 08:12 ghost

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

tylim88 avatar Mar 17 '23 09:03 tylim88

No, this project appears to be dead.

joshkautz avatar Mar 26 '23 01:03 joshkautz

@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 avatar Apr 28 '24 06:04 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 ???

tylim88 avatar Apr 28 '24 16:04 tylim88

@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 avatar Apr 28 '24 18:04 hitautodestruct

@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

tylim88 avatar Apr 28 '24 18:04 tylim88

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

hortynz avatar Jul 22 '24 21:07 hortynz