Added YouTube Creator scene building flow documentation

This commit is contained in:
ajaysi
2025-12-21 17:15:23 +05:30
parent 1d745c9bc8
commit 59913bffa9
51 changed files with 7478 additions and 631 deletions

View File

@@ -1,4 +1,4 @@
import { useState, useCallback } from 'react';
import { useState, useCallback, useRef } from 'react';
import { checkPreflight, PreflightOperation, PreflightCheckResponse } from '../services/billingService';
export interface UsePreflightCheckOptions {
@@ -6,17 +6,77 @@ export interface UsePreflightCheckOptions {
onAllowed?: (response: PreflightCheckResponse) => void;
}
// Global cache for preflight checks to prevent duplicate API calls
const preflightCache = new Map<string, { response: PreflightCheckResponse; timestamp: number }>();
const CACHE_TTL = 30000; // 30 seconds cache TTL
// Generate cache key from operation
const getCacheKey = (operation: PreflightOperation): string => {
return `${operation.provider}_${operation.operation_type}_${operation.tokens_requested || 0}`;
};
// Check if cached response is still valid
const isCacheValid = (timestamp: number): boolean => {
return Date.now() - timestamp < CACHE_TTL;
};
export const usePreflightCheck = (options?: UsePreflightCheckOptions) => {
const [isChecking, setIsChecking] = useState(false);
const [lastCheck, setLastCheck] = useState<PreflightCheckResponse | null>(null);
const [error, setError] = useState<string | null>(null);
const checkingRef = useRef<Set<string>>(new Set()); // Track ongoing checks to prevent duplicates
const check = useCallback(async (operation: PreflightOperation): Promise<PreflightCheckResponse> => {
const cacheKey = getCacheKey(operation);
// Check cache first
const cached = preflightCache.get(cacheKey);
if (cached && isCacheValid(cached.timestamp)) {
setLastCheck(cached.response);
return cached.response;
}
// Prevent duplicate concurrent checks for the same operation
if (checkingRef.current.has(cacheKey)) {
// Wait for existing check to complete
return new Promise((resolve) => {
const checkInterval = setInterval(() => {
const cached = preflightCache.get(cacheKey);
if (cached && isCacheValid(cached.timestamp)) {
clearInterval(checkInterval);
setLastCheck(cached.response);
resolve(cached.response);
}
}, 100);
// Timeout after 5 seconds
setTimeout(() => {
clearInterval(checkInterval);
resolve({
can_proceed: true,
estimated_cost: 0,
operations: [],
total_cost: 0,
usage_summary: null,
cached: false,
} as PreflightCheckResponse);
}, 5000);
});
}
checkingRef.current.add(cacheKey);
setIsChecking(true);
setError(null);
try {
const response = await checkPreflight(operation);
// Cache the response
preflightCache.set(cacheKey, {
response,
timestamp: Date.now(),
});
setLastCheck(response);
if (!response.can_proceed) {
@@ -53,6 +113,7 @@ export const usePreflightCheck = (options?: UsePreflightCheckOptions) => {
return blockedResponse;
} finally {
setIsChecking(false);
checkingRef.current.delete(cacheKey);
}
}, [options]);