import React from 'react'; import classNames from 'classnames'; import is from '@sindresorhus/is'; import * as Colors from './styles/Colors'; import * as GoogleChrome from '../util/GoogleChrome'; import * as MIME from '../types/MIME'; import { colorSVG } from '../styles/colorSVG'; interface Props { close: () => void; objectURL: string; contentType: MIME.MIMEType | undefined; onNext?: () => void; onPrevious?: () => void; onSave?: () => void; } const CONTROLS_WIDTH = 50; const CONTROLS_SPACING = 10; const styles = { container: { display: 'flex', flexDirection: 'column', position: 'absolute', left: 0, right: 0, top: 0, bottom: 0, backgroundColor: 'rgba(0, 0, 0, 0.9)', } as React.CSSProperties, mainContainer: { display: 'flex', flexDirection: 'row', flexGrow: 1, paddingTop: 40, paddingLeft: 40, paddingRight: 40, paddingBottom: 0, } as React.CSSProperties, objectContainer: { flexGrow: 1, display: 'inline-flex', justifyContent: 'center', } as React.CSSProperties, object: { flexGrow: 1, flexShrink: 0, maxWidth: '100%', maxHeight: '100%', objectFit: 'contain', } as React.CSSProperties, controlsOffsetPlaceholder: { width: CONTROLS_WIDTH, marginRight: CONTROLS_SPACING, flexShrink: 0, }, controls: { width: CONTROLS_WIDTH, flexShrink: 0, display: 'flex', flexDirection: 'column', marginLeft: CONTROLS_SPACING, } as React.CSSProperties, navigationContainer: { flexShrink: 0, display: 'flex', flexDirection: 'row', justifyContent: 'center', padding: 10, } as React.CSSProperties, saveButton: { marginTop: 10, }, iconButtonPlaceholder: { // Dimensions match `.iconButton`: display: 'inline-block', width: 50, height: 50, }, }; interface IconButtonProps { onClick?: () => void; style?: React.CSSProperties; type: 'save' | 'close' | 'previous' | 'next'; } const IconButton = ({ onClick, style, type }: IconButtonProps) => { const clickHandler = (event: React.MouseEvent): void => { event.preventDefault(); if (!onClick) { return; } onClick(); }; return ( ); }; const IconButtonPlaceholder = () => (
); const Icon = ({ onClick, url, }: { onClick?: ( event: React.MouseEvent ) => void; url: string; }) => (
); export class Lightbox extends React.Component { private containerRef: HTMLDivElement | null = null; public componentDidMount() { const useCapture = true; document.addEventListener('keyup', this.onKeyUp, useCapture); } public componentWillUnmount() { const useCapture = true; document.removeEventListener('keyup', this.onKeyUp, useCapture); } public render() { const { contentType, objectURL, onNext, onPrevious, onSave } = this.props; return (
{!is.undefined(contentType) ? this.renderObject({ objectURL, contentType }) : null}
{onSave ? ( ) : null}
{onPrevious ? ( ) : ( )} {onNext ? ( ) : ( )}
); } private renderObject = ({ objectURL, contentType, }: { objectURL: string; contentType: MIME.MIMEType; }) => { const isImageTypeSupported = GoogleChrome.isImageTypeSupported(contentType); if (isImageTypeSupported) { return ( ); } const isVideoTypeSupported = GoogleChrome.isVideoTypeSupported(contentType); if (isVideoTypeSupported) { return ( ); } const isUnsupportedImageType = !isImageTypeSupported && MIME.isImage(contentType); const isUnsupportedVideoType = !isVideoTypeSupported && MIME.isVideo(contentType); if (isUnsupportedImageType || isUnsupportedVideoType) { return ( ); } // tslint:disable-next-line no-console console.log('Lightbox: Unexpected content type', { contentType }); return ; }; private setContainerRef = (value: HTMLDivElement) => { this.containerRef = value; }; private onClose = () => { const { close } = this.props; if (!close) { return; } close(); }; private onKeyUp = (event: KeyboardEvent) => { const { onClose } = this; const { onNext, onPrevious } = this.props; switch (event.key) { case 'Escape': onClose(); break; case 'ArrowLeft': if (onPrevious) { onPrevious(); } break; case 'ArrowRight': if (onNext) { onNext(); } break; default: break; } }; private onContainerClick = (event: React.MouseEvent) => { if (event.target !== this.containerRef) { return; } this.onClose(); }; private onObjectClick = ( event: React.MouseEvent ) => { event.stopPropagation(); this.onClose(); }; }