ALwrity + Wordpress + Wix + GSC integration

This commit is contained in:
ajaysi
2025-10-08 10:13:14 +05:30
parent 14dfb2e5c0
commit 3bab3450dc
147 changed files with 19815 additions and 17053 deletions

View File

@@ -0,0 +1,128 @@
/**
* Wix Connection Hook
* Manages Wix connection state and operations
*/
import { useState, useEffect, useCallback } from 'react';
import { useAuth } from '@clerk/clerk-react';
import { wixAPI, WixStatus } from '../api/wix';
export const useWixConnection = () => {
const { getToken } = useAuth();
const [status, setStatus] = useState<WixStatus>({
connected: false,
sites: [],
total_sites: 0
});
const [isLoading, setIsLoading] = useState(false);
// Set up auth token getter for Wix API
useEffect(() => {
wixAPI.setAuthTokenGetter(async () => {
try {
const template = process.env.REACT_APP_CLERK_JWT_TEMPLATE;
if (template) {
// @ts-ignore Clerk types allow options object
return await getToken({ template });
}
return await getToken();
} catch {
return null;
}
});
}, [getToken]);
const checkStatus = useCallback(async () => {
setIsLoading(true);
try {
// Check sessionStorage for Wix tokens (like WixTestPage does)
const connectedFlag = sessionStorage.getItem('wix_connected') === 'true';
const tokensRaw = sessionStorage.getItem('wix_tokens');
if (connectedFlag && tokensRaw) {
const tokens = JSON.parse(tokensRaw);
// Try to get actual site information from Wix API
try {
const { createClient, OAuthStrategy } = await import('@wix/sdk');
const wixClient = createClient({
auth: OAuthStrategy({ clientId: '75d88e36-1c76-4009-b769-15f4654556df' })
});
wixClient.auth.setTokens(tokens);
// Get member info to extract site URL
const memberInfo = await wixClient.auth.getMemberInfo();
console.log('Wix member info:', memberInfo);
// Try to extract site URL from member info or use a default
let siteUrl = 'Connected Wix Site';
if (memberInfo?.member?.email) {
// Extract domain from email or use email as identifier
const email = memberInfo.member.email;
const domain = email.split('@')[1];
siteUrl = `https://${domain}`;
}
setStatus({
connected: true,
sites: [{
id: 'wix-site-1',
blog_url: siteUrl,
blog_id: 'wix-blog',
created_at: new Date().toISOString(),
scope: 'BLOG.CREATE-DRAFT,BLOG.PUBLISH,MEDIA.MANAGE'
}],
total_sites: 1
});
} catch (apiError) {
console.log('Wix API error, using fallback:', apiError);
// Fallback if API call fails
setStatus({
connected: true,
sites: [{
id: 'wix-site-1',
blog_url: 'Connected Wix Site',
blog_id: 'wix-blog',
created_at: new Date().toISOString(),
scope: 'BLOG.CREATE-DRAFT,BLOG.PUBLISH,MEDIA.MANAGE'
}],
total_sites: 1
});
}
console.log('Wix status checked: connected via sessionStorage');
} else {
setStatus({
connected: false,
sites: [],
total_sites: 0,
error: 'No Wix connection found'
});
console.log('Wix status checked: not connected');
}
} catch (error) {
console.error('Error checking Wix status:', error);
setStatus({
connected: false,
sites: [],
total_sites: 0,
error: 'Error checking connection status'
});
} finally {
setIsLoading(false);
}
}, []);
// Check status on mount
useEffect(() => {
checkStatus();
}, [checkStatus]);
return {
connected: status.connected,
sites: status.sites,
totalSites: status.total_sites,
isLoading,
checkStatus
};
};