Spaces:
Running
Running
File size: 1,617 Bytes
ac91c3d 0de6d2d ac91c3d 0de6d2d ac91c3d 1538aa3 ac91c3d 0de6d2d ac91c3d 0de6d2d ac91c3d 0de6d2d ac91c3d 0de6d2d ac91c3d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
import {
oauthLoginUrl,
oauthHandleRedirectIfPresent,
whoAmI,
} from '@huggingface/hub';
import { useEffect } from 'react';
import { isDev, testToken } from '../utils/utils';
const login = async () => {
const url = await oauthLoginUrl();
window.location.href = url;
};
export const AuthCard = ({
setHfToken,
hfToken,
}: {
setHfToken: (token: string) => void;
hfToken: string;
}) => {
useEffect(() => {
const checkToken = async () => {
if (isDev) {
console.log({ testToken });
return setHfToken(testToken);
}
const res = await oauthHandleRedirectIfPresent();
console.log('oauthHandleRedirectIfPresent', res);
if (res) {
try {
const myself = await whoAmI({ accessToken: res.accessToken });
console.log('myself', myself);
} catch (e) {
console.log(e);
return setHfToken('');
}
return setHfToken(res.accessToken);
} else {
return setHfToken('');
}
};
checkToken();
}, []);
const isOK = hfToken && hfToken.startsWith('hf_');
return (
<div className="card bg-base-100 w-full shadow-xl">
<div className="card-body">
<h2 className="card-title">
Step 0: Sign in to use Inference Providers
</h2>
<div>
{isOK ? (
<button className="btn">✅ Nice, you are signed in</button>
) : (
<button className="btn btn-primary" onClick={login}>
🤗 Sign in with Hugging Face
</button>
)}
</div>
</div>
</div>
);
};
|