fix(auth): add captcha auto-refresh via ApolloLink (#12758)
- Introduced `createCaptchaRefreshLink` to trigger captcha token refresh automatically. - Removed redundant manual captcha refresh calls and integrated it into Apollo Provider.
This commit is contained in:
@ -0,0 +1,19 @@
|
||||
import { ApolloLink } from '@apollo/client';
|
||||
|
||||
export const createCaptchaRefreshLink = (
|
||||
requestFreshCaptchaToken: () => void,
|
||||
) => {
|
||||
return new ApolloLink((operation, forward) => {
|
||||
const { variables } = operation;
|
||||
|
||||
const hasCaptchaToken = variables && 'captchaToken' in variables;
|
||||
|
||||
return forward(operation).map((response) => {
|
||||
if (hasCaptchaToken) {
|
||||
requestFreshCaptchaToken();
|
||||
}
|
||||
|
||||
return response;
|
||||
});
|
||||
});
|
||||
};
|
||||
Reference in New Issue
Block a user