💫 add loading animation

show loading indicator in continue with provider if is pressed and hide indicator if something failed
This commit is contained in:
2025-08-26 10:29:48 +07:00
parent 07f86c005e
commit d82945123a

View File

@ -30,6 +30,8 @@ const OAuthProviders = () => {
})();
}, []);
const [loadingButton, setLoadingButton] = useState(false);
/**
* Start the authentication process using oAuth by sending the endpoint URL to the backend for processing.
*
@ -37,10 +39,13 @@ const OAuthProviders = () => {
*/
const startOauthProcess = async (providerRequestEndpoint: string) => {
try {
setLoadingButton(true);
(await requestOauthUrl(
providerRequestEndpoint
)) as ResponseRequestOauthUrl;
} catch (err) {
setLoadingButton(false);
console.error(err);
}
};
@ -57,6 +62,7 @@ const OAuthProviders = () => {
variant="bordered"
startContent={<Icon icon={provider.icon} />}
onPress={() => startOauthProcess(provider.req_endpoint)}
isLoading={loadingButton}
>
Continue with {provider.name}
</Button>