mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
fix when deleting first image in list
This commit is contained in:
parent
8c58a180de
commit
c0ad5bc4a4
@ -117,20 +117,7 @@ export const addRequestedSingleImageDeletionListener = (startAppListening: AppSt
|
|||||||
}
|
}
|
||||||
|
|
||||||
dispatch(isModalOpenChanged(false));
|
dispatch(isModalOpenChanged(false));
|
||||||
|
|
||||||
const state = getState();
|
const state = getState();
|
||||||
const lastSelectedImage = state.gallery.selection[state.gallery.selection.length - 1]?.image_name;
|
|
||||||
|
|
||||||
if (imageDTO && imageDTO?.image_name === lastSelectedImage) {
|
|
||||||
const baseQueryArgs = selectListImagesQueryArgs(state);
|
|
||||||
const { data } = imagesApi.endpoints.listImages.select(baseQueryArgs)(state);
|
|
||||||
|
|
||||||
if (data && data.items[0]) {
|
|
||||||
dispatch(imageSelected(data.items[0]));
|
|
||||||
} else {
|
|
||||||
dispatch(imageSelected(null));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// We need to reset the features where the image is in use - none of these work if their image(s) don't exist
|
// We need to reset the features where the image is in use - none of these work if their image(s) don't exist
|
||||||
if (imageUsage.isCanvasImage) {
|
if (imageUsage.isCanvasImage) {
|
||||||
@ -155,6 +142,20 @@ export const addRequestedSingleImageDeletionListener = (startAppListening: AppSt
|
|||||||
if (wasImageDeleted) {
|
if (wasImageDeleted) {
|
||||||
dispatch(api.util.invalidateTags([{ type: 'Board', id: imageDTO.board_id ?? 'none' }]));
|
dispatch(api.util.invalidateTags([{ type: 'Board', id: imageDTO.board_id ?? 'none' }]));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const lastSelectedImage = state.gallery.selection[state.gallery.selection.length - 1]?.image_name;
|
||||||
|
|
||||||
|
if (imageDTO && imageDTO?.image_name === lastSelectedImage) {
|
||||||
|
const baseQueryArgs = selectListImagesQueryArgs(state);
|
||||||
|
const { data } = imagesApi.endpoints.listImages.select(baseQueryArgs)(state);
|
||||||
|
|
||||||
|
if (data && data.items) {
|
||||||
|
const newlySelectedImage = data?.items.find(img => img.image_name !== imageDTO?.image_name)
|
||||||
|
dispatch(imageSelected(newlySelectedImage || null));
|
||||||
|
} else {
|
||||||
|
dispatch(imageSelected(null));
|
||||||
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user