All files / web/src/providers ai-providers.tsx

97.5% Statements 156/160
95.65% Branches 22/23
85.71% Functions 12/14
97.5% Lines 156/160

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254                1x 1x           1x   1x     1x 1x 1x 1x 48x 1x 1x 1x                                                                         1x           1x 46x 46x     46x 46x 46x     46x 46x 46x 46x 46x 46x 46x 46x 46x 46x 46x     46x 46x 46x   5x 5x 5x 5x 5x 5x 5x 5x 46x 1x 1x 1x 1x 1x 1x 46x     46x 46x 2x 2x 2x     2x 46x   1x 1x 1x 1x 1x 1x 1x 1x 46x 1x 1x 1x 1x 1x 1x 46x     46x 46x 46x   1x 1x 1x 1x 1x 1x 1x 1x 46x 1x 1x 1x 1x 1x 1x 46x     46x 46x 1x 1x 46x 46x   46x 46x 1x 1x 46x 46x   46x 1x 1x 1x 46x     46x 46x 6x 6x 46x 46x   46x 46x 2x 2x 46x 46x   46x 46x 2x 2x 46x 46x   46x   46x 46x 46x 46x     46x 46x     46x 46x 46x     46x 46x 46x 46x 46x 46x     46x 46x 46x 46x   46x 46x 46x 46x   46x   1x 46x 46x         46x 46x  
'use client';
 
import type {
  AIProviderConfig,
  AIProviderConfigCreateParams,
  AIProviderConfigQueryParams,
  AIProviderConfigUpdateParams,
} from '@shared/types/data/ai-provider';
import { useMutation, useQuery, useQueryClient } from '@tanstack/react-query';
import {
  createAIProvider,
  deleteAIProvider,
  getAIProviderAPIKeys,
  updateAIProvider,
} from '@web/api/v1/super-agents/ai-providers';
import { useToast } from '@web/hooks/use-toast';
import type React from 'react';
import { createContext, useCallback, useContext, useState } from 'react';
 
// Query keys for React Query caching
export const aiProvidersQueryKeys = {
  all: ['ai-providers'] as const,
  lists: () => [...aiProvidersQueryKeys.all, 'list'] as const,
  list: (params: AIProviderConfigQueryParams) =>
    [...aiProvidersQueryKeys.lists(), params] as const,
  details: () => [...aiProvidersQueryKeys.all, 'detail'] as const,
  detail: (id: string) => [...aiProvidersQueryKeys.details(), id] as const,
};
 
interface AIProvidersContextType {
  // Query state
  aiProviderConfigs: AIProviderConfig[];
  isLoading: boolean;
  error: Error | null;
  refetch: () => void;
 
  // Query parameters
  queryParams: AIProviderConfigQueryParams;
  setQueryParams: (params: AIProviderConfigQueryParams) => void;
 
  // Mutation functions
  createAPIKey: (
    params: AIProviderConfigCreateParams,
  ) => Promise<AIProviderConfig>;
  updateAPIKey: (
    id: string,
    params: AIProviderConfigUpdateParams,
  ) => Promise<void>;
  deleteAPIKey: (id: string) => Promise<void>;
 
  // Separate mutation states
  isCreating: boolean;
  isUpdating: boolean;
  isDeleting: boolean;
  createError: Error | null;
  updateError: Error | null;
  deleteError: Error | null;
 
  // Helper functions
  getAPIKeyById: (id: string) => AIProviderConfig | undefined;
  getAPIKeysByProvider: (provider: string) => AIProviderConfig[];
  refreshAPIKeys: () => void;
}
 
const AIProvidersContext = createContext<AIProvidersContextType | null>(null);
 
interface AIProvidersProviderProps {
  children: React.ReactNode;
}
 
export function AIProvidersProvider({ children }: AIProvidersProviderProps) {
  const { toast } = useToast();
  const queryClient = useQueryClient();
 
  // Query parameters state
  const [queryParams, setQueryParams] = useState<AIProviderConfigQueryParams>({
    limit: 50,
  });
 
  // Fetch API keys query
  const {
    data: apiKeys = [],
    isLoading,
    error,
    refetch,
  } = useQuery({
    queryKey: aiProvidersQueryKeys.list(queryParams),
    queryFn: () => getAIProviderAPIKeys(queryParams),
    staleTime: 5 * 60 * 1000, // 5 minutes
    gcTime: 10 * 60 * 1000, // 10 minutes
  });
 
  // Create API key mutation
  const createMutation = useMutation({
    mutationFn: createAIProvider,
    onSuccess: async (newAPIKey) => {
      // Wait for queries to be invalidated before proceeding
      await queryClient.invalidateQueries({
        queryKey: aiProvidersQueryKeys.lists(),
      });
      toast({
        title: 'API Key Created',
        description: `API key "${newAPIKey.name}" has been created successfully.`,
      });
    },
    onError: (error) => {
      toast({
        title: 'Failed to Create API Key',
        description: error.message,
        variant: 'destructive',
      });
    },
  });
 
  // Update API key mutation
  const updateMutation = useMutation({
    mutationFn: ({
      id,
      params,
    }: {
      id: string;
      params: AIProviderConfigUpdateParams;
    }) => updateAIProvider(id, params),
    onSuccess: async () => {
      // Wait for queries to be invalidated before proceeding
      await queryClient.invalidateQueries({
        queryKey: aiProvidersQueryKeys.lists(),
      });
      toast({
        title: 'API Key Updated',
        description: 'API key has been updated successfully.',
      });
    },
    onError: (error) => {
      toast({
        title: 'Failed to Update API Key',
        description: error.message,
        variant: 'destructive',
      });
    },
  });
 
  // Delete API key mutation
  const deleteMutation = useMutation({
    mutationFn: deleteAIProvider,
    onSuccess: async () => {
      // Wait for queries to be invalidated before proceeding
      await queryClient.invalidateQueries({
        queryKey: aiProvidersQueryKeys.lists(),
      });
      toast({
        title: 'API Key Deleted',
        description: 'API key has been deleted successfully.',
      });
    },
    onError: (error) => {
      toast({
        title: 'Failed to Delete API Key',
        description: error.message,
        variant: 'destructive',
      });
    },
  });
 
  // Helper functions
  const getAPIKeyById = useCallback(
    (id: string): AIProviderConfig | undefined => {
      return apiKeys.find((apiKey) => apiKey.id === id);
    },
    [apiKeys],
  );
 
  const getAPIKeysByProvider = useCallback(
    (provider: string): AIProviderConfig[] => {
      return apiKeys.filter((apiKey) => apiKey.ai_provider === provider);
    },
    [apiKeys],
  );
 
  const refreshAPIKeys = useCallback(() => {
    queryClient.invalidateQueries({
      queryKey: aiProvidersQueryKeys.lists(),
    });
  }, [queryClient]);
 
  // Mutation wrapper functions
  const createAPIKey = useCallback(
    async (params: AIProviderConfigCreateParams): Promise<AIProviderConfig> => {
      return await createMutation.mutateAsync(params);
    },
    [createMutation],
  );
 
  const updateAPIKey = useCallback(
    async (id: string, params: AIProviderConfigUpdateParams): Promise<void> => {
      await updateMutation.mutateAsync({ id, params });
    },
    [updateMutation],
  );
 
  const deleteAPIKey = useCallback(
    async (id: string): Promise<void> => {
      await deleteMutation.mutateAsync(id);
    },
    [deleteMutation],
  );
 
  const contextValue: AIProvidersContextType = {
    // Query state
    aiProviderConfigs: apiKeys,
    isLoading,
    error,
    refetch,
 
    // Query parameters
    queryParams,
    setQueryParams,
 
    // Mutation functions
    createAPIKey,
    updateAPIKey,
    deleteAPIKey,
 
    // Mutation states
    isCreating: createMutation.isPending,
    isUpdating: updateMutation.isPending,
    isDeleting: deleteMutation.isPending,
    createError: createMutation.error,
    updateError: updateMutation.error,
    deleteError: deleteMutation.error,
 
    // Helper functions
    getAPIKeyById,
    getAPIKeysByProvider,
    refreshAPIKeys,
  };
 
  return (
    <AIProvidersContext.Provider value={contextValue}>
      {children}
    </AIProvidersContext.Provider>
  );
}
 
export function useAIProviders(): AIProvidersContextType {
  const context = useContext(AIProvidersContext);
  if (!context) {
    throw new Error(
      'useAIProviderAPIKeys must be used within an AIProviderAPIKeysProvider',
    );
  }
  return context;
}