|
|
@ -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}
|
|
|
|