fix: return to qr view on profile modal when exiting the lightbox

pull/3137/head
yougotwill 8 months ago
parent 29d4f8497c
commit 7f2660e615

@ -352,7 +352,7 @@ export const EditProfileDialog = () => {
<YourSessionIDSelectable /> <YourSessionIDSelectable />
<SessionSpinner loading={loading} height={'74px'} /> <SessionSpinner loading={loading} height={'74px'} />
{!loading ? <Spacer2XL /> : null} {!loading ? <Spacer2XL /> : null}
{mode === 'default' || mode === 'qr' ? ( {mode === 'default' || mode === 'qr' || mode === 'lightbox' ? (
<Flex <Flex
container={true} container={true}
justifyContent={mode === 'default' ? 'space-between' : 'center'} justifyContent={mode === 'default' ? 'space-between' : 'center'}

@ -36,7 +36,7 @@ export const QRView = ({
loading={loading} loading={loading}
onClick={(fileName, dataUrl) => { onClick={(fileName, dataUrl) => {
const lightBoxOptions = prepareQRCodeForLightBox(fileName, dataUrl, () => { const lightBoxOptions = prepareQRCodeForLightBox(fileName, dataUrl, () => {
setMode('edit'); setMode('qr');
}); });
window.inboxStore?.dispatch(updateLightBoxOptions(lightBoxOptions)); window.inboxStore?.dispatch(updateLightBoxOptions(lightBoxOptions));
setMode('lightbox'); setMode('lightbox');

@ -28,6 +28,7 @@ type Props = {
onNext?: () => void; onNext?: () => void;
onPrevious?: () => void; onPrevious?: () => void;
onSave?: () => void; onSave?: () => void;
onClose?: () => void;
}; };
const CONTROLS_WIDTH = 50; const CONTROLS_WIDTH = 50;
@ -273,18 +274,25 @@ export const LightboxObject = ({
export const Lightbox = (props: Props) => { export const Lightbox = (props: Props) => {
const renderedRef = useRef<any>(null); const renderedRef = useRef<any>(null);
const dispatch = useDispatch(); const dispatch = useDispatch();
const { caption, contentType, objectURL, onNext, onPrevious, onSave } = props; const { caption, contentType, objectURL, onNext, onPrevious, onSave, onClose } = props;
const onObjectClick = (event: any) => { const onObjectClick = (event: any) => {
event.stopPropagation(); event.stopPropagation();
dispatch(updateLightBoxOptions(null)); dispatch(updateLightBoxOptions(null));
}; };
const handleClose = () => {
if (onClose) {
onClose();
}
dispatch(updateLightBoxOptions(null));
};
const onContainerClick = (event: MouseEvent<HTMLDivElement>) => { const onContainerClick = (event: MouseEvent<HTMLDivElement>) => {
if (renderedRef && event.target === renderedRef.current) { if (renderedRef && event.target === renderedRef.current) {
return; return;
} }
dispatch(updateLightBoxOptions(null)); handleClose();
}; };
return ( return (
@ -306,12 +314,7 @@ export const Lightbox = (props: Props) => {
</div> </div>
<div style={styles.controls as any}> <div style={styles.controls as any}>
<Flex container={true}> <Flex container={true}>
<IconButton <IconButton type="close" onClick={handleClose} />
type="close"
onClick={() => {
dispatch(updateLightBoxOptions(null));
}}
/>
</Flex> </Flex>
{onSave ? <IconButton type="save" onClick={onSave} style={styles.saveButton} /> : null} {onSave ? <IconButton type="save" onClick={onSave} style={styles.saveButton} /> : null}

@ -96,10 +96,10 @@ export const LightboxGallery = (props: Props) => {
useKey( useKey(
'Escape', 'Escape',
() => { () => {
dispatch(updateLightBoxOptions(null));
if (onClose) { if (onClose) {
onClose(); onClose();
} }
dispatch(updateLightBoxOptions(null));
}, },
undefined, undefined,
[currentIndex, updateLightBoxOptions, dispatch, onClose] [currentIndex, updateLightBoxOptions, dispatch, onClose]
@ -122,6 +122,7 @@ export const LightboxGallery = (props: Props) => {
onPrevious={hasPrevious ? onPrevious : undefined} onPrevious={hasPrevious ? onPrevious : undefined}
onNext={hasNext ? onNext : undefined} onNext={hasNext ? onNext : undefined}
onSave={handleSave} onSave={handleSave}
onClose={onClose}
objectURL={objectURL} objectURL={objectURL}
caption={caption} caption={caption}
contentType={selectedMedia.contentType} contentType={selectedMedia.contentType}

Loading…
Cancel
Save