Files
vibe-kanban/frontend/src/hooks/useProfiles.ts
Louis Knight-Webb 870a166c38 Batch A: Fix high-priority 'any' types in core files (vibe-kanban) (#1310)
* Perfect! All type checks pass. Here's a summary of the completed fixes:

##  Batch A Complete: Fixed all 'any' types in 7 core files

### Summary of Changes

**1. useLogStream.ts** - Typed WebSocket patches
- `patches.forEach((patch: any)` → `const patches = data.JsonPatch as Array<{ value?: PatchType }>`

**2. api.ts** - Typed request body
- `const requestBody: any = {}` → `const requestBody: { editor_type?: EditorType } = {}`

**3. NextActionCard.tsx** - Used proper domain type
- `task?: any` → `task?: TaskWithAttemptStatus`

**4. PendingApprovalEntry.tsx** - Safe error handling
- `catch (e: any)` → `catch (e: unknown)` with proper narrowing

**5. useProfiles.ts** - Typed JSON values
- `parsedProfiles: any | null` → `parsedProfiles: JsonValue | null`
- `queryClient.setQueryData(['profiles'], (old: any)` → typed with `<{ content: string; path: string }>`

**6. useProcessRetry.ts** - Typed executor actions
- `const typ: any = details?.executor_action?.typ as any` → `const typ: ExecutorActionType | undefined`
- Removed unnecessary `as any` cast on version field

**7. DisplayConversationEntry.tsx** - Created ActionLike helper type
- Removed local `type JsonValue = any`
- Imported `JsonValue` and `TaskWithAttemptStatus` from shared/types
- Created minimal `ActionLike` type for ToolCallCard compatibility
- Typed all component props and variables properly

All changes passed frontend and backend type checks ✓

* Cleanup script changes for task attempt 1b9207c2-6291-4bea-b06d-b4702f99f9ee

* Perfect! Updated the `ActionLike` type to use `CommandRunResult` from shared types, which is cleaner and more aligned with the domain model. All type checks pass ✓

* Excellent! All checks pass. Let me create a summary of what we accomplished:

##  Refactor Complete: Simplified ToolCallCard by Passing Full Entry

### Summary of Changes

**Removed the ActionLike workaround** and made the code significantly simpler and more readable:

### Before (Complex with ActionLike bridge):
```typescript
// Helper type to bridge ExecutorAction and ActionType
type ActionLike = Partial<{
  action: string;
  arguments: JsonValue;
  result: CommandRunResult;
  tool_name: string;
  message: string;
  summary: string;
}>;

// Multiple props with conversions at call sites
<ToolCallCard
  entryType={toolEntry}
  entryContent={entry.content}
  defaultExpanded={defaultExpanded}
  statusAppearance={statusAppearance}
  forceExpanded={isPendingApproval}
  linkifyUrls={isGithubCliSetup}
/>
```

### After (Simple with unified entry):
```typescript
// Just pass the entry - ToolCallCard handles everything
<ToolCallCard
  entry={entry}
  expansionKey={expansionKey}
  forceExpanded={isPendingApproval}
/>
```

### Key Improvements

1. **Simpler Props**: Changed from 8+ props to just 3 (`entry`, `expansionKey`, `forceExpanded`)
2. **Removed ActionLike**: Eliminated the bridge type that was papering over type differences
3. **Centralized Logic**: All normalization logic now lives inside ToolCallCard where it belongs
4. **Type Safety**: Uses proper type narrowing (`'entry_type' in entry`) instead of type casts
5. **Better Readability**: Call sites are now trivial - just pass the entry

### Files Changed
- `DisplayConversationEntry.tsx`:
  - Removed ActionLike helper type
  - Updated ToolCallCard component to accept unified entry prop
  - Simplified both call sites (ProcessStartPayload and NormalizedEntry)
  - Moved linkifyUrls, defaultExpanded logic into ToolCallCard

All type checks pass ✓

* Cleanup script changes for task attempt 1b9207c2-6291-4bea-b06d-b4702f99f9ee
2025-11-17 22:19:44 +00:00

74 lines
1.8 KiB
TypeScript

import { useMemo } from 'react';
import { useQuery, useMutation, useQueryClient } from '@tanstack/react-query';
import { profilesApi } from '@/lib/api';
import type { JsonValue } from 'shared/types';
export type UseProfilesReturn = {
// data
profilesContent: string;
parsedProfiles: JsonValue | null;
profilesPath: string;
// status
isLoading: boolean;
isError: boolean;
error: unknown;
isSaving: boolean;
// actions
refetch: () => void;
save: (content: string) => Promise<void>;
saveParsed: (obj: unknown) => Promise<void>;
};
export function useProfiles(): UseProfilesReturn {
const queryClient = useQueryClient();
const { data, isLoading, isError, error, refetch } = useQuery({
queryKey: ['profiles'],
queryFn: () => profilesApi.load(),
staleTime: 1000 * 60, // 1 minute cache
});
const { mutateAsync: saveMutation, isPending: isSaving } = useMutation({
mutationFn: (content: string) => profilesApi.save(content),
onSuccess: (_, content) => {
// Optimistically update cache with new content
queryClient.setQueryData<{ content: string; path: string }>(
['profiles'],
(old) => (old ? { ...old, content } : old)
);
},
});
const save = async (content: string): Promise<void> => {
await saveMutation(content);
};
const parsedProfiles = useMemo(() => {
if (!data?.content) return null;
try {
return JSON.parse(data.content);
} catch {
return null;
}
}, [data?.content]);
const saveParsed = async (obj: unknown) => {
await save(JSON.stringify(obj, null, 2));
};
return {
profilesContent: data?.content ?? '',
parsedProfiles,
profilesPath: data?.path ?? '',
isLoading,
isError,
error,
isSaving,
refetch,
save,
saveParsed,
};
}