MediaGallery: Load only once with no attachments to show
This commit is contained in:
parent
1d199cfff6
commit
bc6831a1d2
2 changed files with 19 additions and 5 deletions
|
@ -160,12 +160,24 @@ export function MediaGallery({
|
|||
}, []);
|
||||
|
||||
useEffect(() => {
|
||||
if (media.length > 0 || documents.length > 0) {
|
||||
if (
|
||||
media.length > 0 ||
|
||||
documents.length > 0 ||
|
||||
haveOldestDocument ||
|
||||
haveOldestMedia
|
||||
) {
|
||||
return;
|
||||
}
|
||||
initialLoad(conversationId);
|
||||
loadingRef.current = true;
|
||||
}, [conversationId, initialLoad, media, documents]);
|
||||
}, [
|
||||
conversationId,
|
||||
haveOldestDocument,
|
||||
haveOldestMedia,
|
||||
initialLoad,
|
||||
media,
|
||||
documents,
|
||||
]);
|
||||
|
||||
const previousLoading = usePrevious(loading, loading);
|
||||
if (previousLoading && !loading) {
|
||||
|
|
|
@ -410,12 +410,14 @@ export function reducer(
|
|||
}
|
||||
|
||||
if (action.type === INITIAL_LOAD) {
|
||||
const { payload } = action;
|
||||
|
||||
return {
|
||||
...state,
|
||||
loading: false,
|
||||
...action.payload,
|
||||
haveOldestDocument: false,
|
||||
haveOldestMedia: false,
|
||||
...payload,
|
||||
haveOldestMedia: payload.media.length === 0,
|
||||
haveOldestDocument: payload.documents.length === 0,
|
||||
};
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue