Merge branch 'worktree-agent-af80e237' into Develop

# Conflicts:
#	.planning/REQUIREMENTS.md
#	.planning/STATE.md
This commit is contained in:
2026-04-05 13:21:56 +02:00
12 changed files with 571 additions and 19 deletions

View File

@@ -0,0 +1,43 @@
import { useMutation, useQuery, useQueryClient } from "@tanstack/react-query";
import { apiGet, apiPut } from "../lib/api";
interface PublicProfile {
id: number;
displayName: string | null;
avatarUrl: string | null;
bio: string | null;
setups: { id: number; name: string; createdAt: string }[];
}
interface UpdateProfileData {
displayName?: string;
avatarUrl?: string | null;
bio?: string;
}
interface ProfileResponse {
id: number;
displayName: string | null;
avatarUrl: string | null;
bio: string | null;
}
export function usePublicProfile(userId: number | null) {
return useQuery({
queryKey: ["profiles", userId],
queryFn: () => apiGet<PublicProfile>(`/api/users/${userId}/profile`),
enabled: userId != null,
});
}
export function useUpdateProfile() {
const queryClient = useQueryClient();
return useMutation({
mutationFn: (data: UpdateProfileData) =>
apiPut<ProfileResponse>("/api/auth/profile", data),
onSuccess: () => {
queryClient.invalidateQueries({ queryKey: ["profiles"] });
queryClient.invalidateQueries({ queryKey: ["auth"] });
},
});
}

View File

@@ -11,6 +11,7 @@ import {
interface SetupListItem {
id: number;
name: string;
isPublic: boolean;
createdAt: string;
updatedAt: string;
itemCount: number;
@@ -38,6 +39,7 @@ interface SetupItemWithCategory {
interface SetupWithItems {
id: number;
name: string;
isPublic: boolean;
createdAt: string;
updatedAt: string;
items: SetupItemWithCategory[];
@@ -76,7 +78,7 @@ export function useCreateSetup() {
export function useUpdateSetup(setupId: number) {
const queryClient = useQueryClient();
return useMutation({
mutationFn: (data: { name?: string }) =>
mutationFn: (data: { name?: string; isPublic?: boolean }) =>
apiPut<SetupListItem>(`/api/setups/${setupId}`, data),
onSuccess: () => {
queryClient.invalidateQueries({ queryKey: ["setups"] });