mirror of
https://github.com/csunny/DB-GPT.git
synced 2025-07-25 13:06:53 +00:00
Co-authored-by: Fangyin Cheng <staneyffer@gmail.com> Co-authored-by: 谨欣 <echo.cmy@antgroup.com> Co-authored-by: 严志勇 <yanzhiyong@tiansuixiansheng.com> Co-authored-by: yanzhiyong <932374019@qq.com>
28 lines
896 B
TypeScript
28 lines
896 B
TypeScript
import { CredentialResponse, IdConfiguration } from 'google-one-tap';
|
|
|
|
export default function googleOneTap(
|
|
{ client_id, auto_select = false, cancel_on_tap_outside = false, context = 'signin' }: IdConfiguration,
|
|
callback: (response: CredentialResponse) => void,
|
|
otherOptions?: Omit<IdConfiguration, 'client_id'>,
|
|
) {
|
|
const contextValue = ['signin', 'signup', 'use'].includes(context) ? context : 'signin';
|
|
if (!client_id) {
|
|
throw new Error('client_id is required');
|
|
}
|
|
if (typeof window !== 'undefined' && window.document) {
|
|
try {
|
|
window.google.accounts.id.initialize({
|
|
client_id: client_id,
|
|
callback: callback,
|
|
auto_select: auto_select,
|
|
cancel_on_tap_outside: cancel_on_tap_outside,
|
|
context: contextValue,
|
|
...otherOptions,
|
|
});
|
|
window.google.accounts.id.prompt();
|
|
} catch {
|
|
/* empty */
|
|
}
|
|
}
|
|
}
|