fix thumbnail issues

This commit is contained in:
wass08
2026-02-18 09:49:57 +09:00
parent f1077ad1c8
commit 1cceb50ab6
5 changed files with 32 additions and 15 deletions
@@ -1020,16 +1020,14 @@ export async function uploadProjectThumbnail(
return { success: false, error: 'Not authorized to update this project' }
}
// Generate a unique filename
const timestamp = Date.now()
const filename = `${projectId}/${timestamp}.png`
const filename = `${projectId}/thumbnail.png`
// Upload to Supabase Storage
// Upload to Supabase Storage (upsert to override existing thumbnail)
const { data: uploadData, error: uploadError } = await supabase.storage
.from('project-thumbnails')
.upload(filename, blob, {
contentType: 'image/png',
upsert: false,
upsert: true,
})
if (uploadError) {
@@ -1041,7 +1039,7 @@ export async function uploadProjectThumbnail(
.from('project-thumbnails')
.getPublicUrl(uploadData.path)
const thumbnailUrl = urlData.publicUrl
const thumbnailUrl = `${urlData.publicUrl}?t=${Date.now()}`
// Update the project with the new thumbnail URL
const { error: updateError } = await (supabase
@@ -22,6 +22,7 @@ interface ProjectStore {
fetchActiveProject: () => Promise<void>
setActiveProject: (projectId: string) => Promise<void>
initialize: () => Promise<void>
updateActiveThumbnail: (thumbnailUrl: string) => void
}
export const useProjectStore = create<ProjectStore>((set, get) => ({
@@ -78,6 +79,15 @@ export const useProjectStore = create<ProjectStore>((set, get) => ({
}
},
// Patch the active project's thumbnail URL in place (no refetch)
updateActiveThumbnail: (thumbnailUrl: string) => {
set((state) => ({
activeProject: state.activeProject
? { ...state.activeProject, thumbnail_url: thumbnailUrl }
: null,
}))
},
// Initialize - fetch both projects and active project
initialize: async () => {
set({ isLoading: true })