|
|
@ -9,6 +9,7 @@ import { useSelectedConversationKey } from '../../state/selectors/selectedConver
|
|
|
|
import { MIME } from '../../types';
|
|
|
|
import { MIME } from '../../types';
|
|
|
|
import { AttachmentTypeWithPath } from '../../types/Attachment';
|
|
|
|
import { AttachmentTypeWithPath } from '../../types/Attachment';
|
|
|
|
import { saveAttachmentToDisk } from '../../util/attachmentsUtil';
|
|
|
|
import { saveAttachmentToDisk } from '../../util/attachmentsUtil';
|
|
|
|
|
|
|
|
import { saveURLAsFile } from '../../util/saveURLAsFile';
|
|
|
|
|
|
|
|
|
|
|
|
export interface MediaItemType {
|
|
|
|
export interface MediaItemType {
|
|
|
|
objectURL?: string;
|
|
|
|
objectURL?: string;
|
|
|
@ -24,10 +25,11 @@ export interface MediaItemType {
|
|
|
|
type Props = {
|
|
|
|
type Props = {
|
|
|
|
media: Array<MediaItemType>;
|
|
|
|
media: Array<MediaItemType>;
|
|
|
|
selectedIndex?: number;
|
|
|
|
selectedIndex?: number;
|
|
|
|
|
|
|
|
onClose?: () => void;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
export const LightboxGallery = (props: Props) => {
|
|
|
|
export const LightboxGallery = (props: Props) => {
|
|
|
|
const { media, selectedIndex = -1 } = props;
|
|
|
|
const { media, selectedIndex = -1, onClose } = props;
|
|
|
|
const [currentIndex, setCurrentIndex] = useState(-1);
|
|
|
|
const [currentIndex, setCurrentIndex] = useState(-1);
|
|
|
|
const selectedConversation = useSelectedConversationKey();
|
|
|
|
const selectedConversation = useSelectedConversationKey();
|
|
|
|
|
|
|
|
|
|
|
@ -40,6 +42,9 @@ export const LightboxGallery = (props: Props) => {
|
|
|
|
}, []);
|
|
|
|
}, []);
|
|
|
|
|
|
|
|
|
|
|
|
const selectedMedia = media[currentIndex];
|
|
|
|
const selectedMedia = media[currentIndex];
|
|
|
|
|
|
|
|
const objectURL = selectedMedia?.objectURL || 'images/alert-outline.svg';
|
|
|
|
|
|
|
|
const isDataBlob = objectURL.startsWith('data:');
|
|
|
|
|
|
|
|
|
|
|
|
const firstIndex = 0;
|
|
|
|
const firstIndex = 0;
|
|
|
|
const lastIndex = media.length - 1;
|
|
|
|
const lastIndex = media.length - 1;
|
|
|
|
|
|
|
|
|
|
|
@ -55,12 +60,22 @@ export const LightboxGallery = (props: Props) => {
|
|
|
|
}, [currentIndex, lastIndex]);
|
|
|
|
}, [currentIndex, lastIndex]);
|
|
|
|
|
|
|
|
|
|
|
|
const handleSave = useCallback(() => {
|
|
|
|
const handleSave = useCallback(() => {
|
|
|
|
if (!selectedConversation) {
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
const mediaItem = media[currentIndex];
|
|
|
|
const mediaItem = media[currentIndex];
|
|
|
|
void saveAttachmentToDisk({ ...mediaItem, conversationId: selectedConversation });
|
|
|
|
|
|
|
|
}, [currentIndex, media, selectedConversation]);
|
|
|
|
if (isDataBlob && mediaItem.objectURL) {
|
|
|
|
|
|
|
|
saveURLAsFile({
|
|
|
|
|
|
|
|
filename: mediaItem.attachment.fileName,
|
|
|
|
|
|
|
|
url: mediaItem.objectURL,
|
|
|
|
|
|
|
|
document,
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
if (!selectedConversation) {
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void saveAttachmentToDisk({ ...mediaItem, conversationId: selectedConversation });
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}, [currentIndex, isDataBlob, media, selectedConversation]);
|
|
|
|
|
|
|
|
|
|
|
|
useKey(
|
|
|
|
useKey(
|
|
|
|
'ArrowRight',
|
|
|
|
'ArrowRight',
|
|
|
@ -68,7 +83,7 @@ export const LightboxGallery = (props: Props) => {
|
|
|
|
onNext?.();
|
|
|
|
onNext?.();
|
|
|
|
},
|
|
|
|
},
|
|
|
|
undefined,
|
|
|
|
undefined,
|
|
|
|
[currentIndex]
|
|
|
|
[onNext, currentIndex]
|
|
|
|
);
|
|
|
|
);
|
|
|
|
useKey(
|
|
|
|
useKey(
|
|
|
|
'ArrowLeft',
|
|
|
|
'ArrowLeft',
|
|
|
@ -76,18 +91,21 @@ export const LightboxGallery = (props: Props) => {
|
|
|
|
onPrevious?.();
|
|
|
|
onPrevious?.();
|
|
|
|
},
|
|
|
|
},
|
|
|
|
undefined,
|
|
|
|
undefined,
|
|
|
|
[currentIndex]
|
|
|
|
[onPrevious, currentIndex]
|
|
|
|
);
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
useKey(
|
|
|
|
useKey(
|
|
|
|
'Escape',
|
|
|
|
'Escape',
|
|
|
|
() => {
|
|
|
|
() => {
|
|
|
|
dispatch(updateLightBoxOptions(null));
|
|
|
|
dispatch(updateLightBoxOptions(null));
|
|
|
|
|
|
|
|
if (onClose) {
|
|
|
|
|
|
|
|
onClose();
|
|
|
|
|
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
undefined,
|
|
|
|
undefined,
|
|
|
|
[currentIndex]
|
|
|
|
[currentIndex, updateLightBoxOptions, dispatch, onClose]
|
|
|
|
);
|
|
|
|
);
|
|
|
|
if (!selectedConversation) {
|
|
|
|
|
|
|
|
|
|
|
|
if (!isDataBlob && !selectedConversation) {
|
|
|
|
return null;
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
@ -95,7 +113,7 @@ export const LightboxGallery = (props: Props) => {
|
|
|
|
if (currentIndex === -1) {
|
|
|
|
if (currentIndex === -1) {
|
|
|
|
return null;
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
const objectURL = selectedMedia?.objectURL || 'images/alert-outline.svg';
|
|
|
|
|
|
|
|
const { attachment } = selectedMedia;
|
|
|
|
const { attachment } = selectedMedia;
|
|
|
|
|
|
|
|
|
|
|
|
const caption = attachment?.caption;
|
|
|
|
const caption = attachment?.caption;
|
|
|
|