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,178 @@
import { useState, useEffect, useCallback, useRef } from 'react';
import { apiClient } from '../api/client';
export interface PersonaTaskStatus {
task_id: string;
status: string; // 'pending', 'running', 'completed', 'failed'
progress: number; // 0-100
current_step: string;
progress_messages: Array<{
timestamp: string;
message: string;
progress?: number;
}>;
result?: any;
error?: string;
created_at: string;
updated_at: string;
}
export interface UsePersonaPollingOptions {
interval?: number; // Polling interval in milliseconds
maxAttempts?: number; // Maximum number of polling attempts
onProgress?: (message: string, progress: number) => void; // Callback for progress updates
onComplete?: (result: any) => void; // Callback when task completes
onError?: (error: string) => void; // Callback when task fails
}
export interface UsePersonaPollingReturn {
isPolling: boolean;
currentStatus: string;
progress: number;
currentStep: string;
progressMessages: Array<{ timestamp: string; message: string; progress?: number }>;
result: any;
error: string | null;
startPolling: (taskId: string) => void;
stopPolling: () => void;
}
export function usePersonaPolling(options: UsePersonaPollingOptions = {}): UsePersonaPollingReturn {
const {
interval = 2000, // 2 seconds default
maxAttempts = 0, // No timeout - poll until backend says done
onProgress,
onComplete,
onError
} = options;
const [isPolling, setIsPolling] = useState(false);
const [currentStatus, setCurrentStatus] = useState<string>('idle');
const [progress, setProgress] = useState<number>(0);
const [currentStep, setCurrentStep] = useState<string>('');
const [progressMessages, setProgressMessages] = useState<Array<{ timestamp: string; message: string; progress?: number }>>([]);
const [result, setResult] = useState<any>(null);
const [error, setError] = useState<string | null>(null);
// Debug state changes
useEffect(() => {
console.log('Persona polling state changed:', {
isPolling,
currentStatus,
progress,
currentStep,
progressCount: progressMessages.length
});
}, [isPolling, currentStatus, progress, currentStep, progressMessages.length]);
const intervalRef = useRef<NodeJS.Timeout | null>(null);
const attemptsRef = useRef(0);
const currentTaskIdRef = useRef<string | null>(null);
const stopPolling = useCallback(() => {
console.log('stopPersonaPolling called');
if (intervalRef.current) {
clearInterval(intervalRef.current);
intervalRef.current = null;
}
console.log('Setting isPolling to false');
setIsPolling(false);
attemptsRef.current = 0;
currentTaskIdRef.current = null;
}, []);
const startPolling = useCallback((taskId: string) => {
console.log('startPersonaPolling called with taskId:', taskId);
if (isPolling) {
console.log('Already polling, stopping first');
stopPolling();
}
currentTaskIdRef.current = taskId;
console.log('Setting isPolling to true');
setIsPolling(true);
setCurrentStatus('pending');
setProgress(0);
setCurrentStep('Initializing...');
setProgressMessages([]);
setResult(null);
setError(null);
attemptsRef.current = 0;
const poll = async () => {
if (!currentTaskIdRef.current) {
stopPolling();
return;
}
try {
const response = await apiClient.get(`/api/onboarding/step4/persona-task/${currentTaskIdRef.current}`);
const status: PersonaTaskStatus = response.data;
console.log('Persona polling status update:', status);
setCurrentStatus(status.status);
setProgress(status.progress);
setCurrentStep(status.current_step);
// Update progress messages
if (status.progress_messages && status.progress_messages.length > 0) {
console.log('Progress messages received:', status.progress_messages);
setProgressMessages(status.progress_messages);
// Call onProgress with the latest message
const latestMessage = status.progress_messages[status.progress_messages.length - 1];
console.log('Latest progress message:', latestMessage.message);
onProgress?.(latestMessage.message, status.progress);
}
if (status.status === 'completed') {
setResult(status.result);
onComplete?.(status.result);
stopPolling();
} else if (status.status === 'failed') {
setError(status.error || 'Persona generation failed');
onError?.(status.error || 'Persona generation failed');
stopPolling();
}
attemptsRef.current++;
} catch (err) {
const errorMessage = err instanceof Error ? err.message : 'Unknown error occurred';
console.error('Persona polling error:', errorMessage);
// Only stop polling for actual task failures (404, task not found)
// For network errors, timeouts, etc., continue polling
if (errorMessage.includes('404') || errorMessage.includes('Task not found')) {
setError('Task not found - it may have expired or been cleaned up');
onError?.('Task not found - it may have expired or been cleaned up');
stopPolling();
}
// For other errors (timeouts, network issues), continue polling
// The backend will eventually complete or fail, and we'll catch it
}
};
// Start polling immediately, then at intervals
poll();
intervalRef.current = setInterval(poll, interval);
}, [isPolling, interval, onProgress, onComplete, onError, stopPolling]);
// Cleanup on unmount
useEffect(() => {
return () => {
stopPolling();
};
}, [stopPolling]);
return {
isPolling,
currentStatus,
progress,
currentStep,
progressMessages,
result,
error,
startPolling,
stopPolling
};
}