signal-desktop/ts/components/Lightbox.tsx

351 lines
7.6 KiB
TypeScript
Raw Normal View History

// tslint:disable:react-a11y-anchors
2018-04-15 03:27:03 +00:00
import React from 'react';
2018-04-15 04:27:30 +00:00
import classNames from 'classnames';
2018-04-25 22:15:57 +00:00
import is from '@sindresorhus/is';
import * as GoogleChrome from '../util/GoogleChrome';
import * as MIME from '../types/MIME';
2018-04-15 03:27:03 +00:00
import { Localizer } from '../types/Util';
2018-07-18 00:15:34 +00:00
const Colors = {
TEXT_SECONDARY: '#bbb',
ICON_SECONDARY: '#ccc',
};
const colorSVG = (url: string, color: string) => {
return {
WebkitMask: `url(${url}) no-repeat center`,
WebkitMaskSize: '100%',
backgroundColor: color,
};
};
2018-04-15 03:27:03 +00:00
interface Props {
close: () => void;
2018-04-25 22:15:57 +00:00
contentType: MIME.MIMEType | undefined;
i18n: Localizer;
objectURL: string;
onNext?: () => void;
onPrevious?: () => void;
2018-04-25 22:15:57 +00:00
onSave?: () => void;
2018-04-15 03:27:03 +00:00
}
2018-04-26 23:13:05 +00:00
const CONTROLS_WIDTH = 50;
const CONTROLS_SPACING = 10;
2018-04-15 03:27:03 +00:00
const styles = {
container: {
2018-04-15 04:27:30 +00:00
display: 'flex',
2018-04-26 15:50:54 +00:00
flexDirection: 'column',
2018-04-15 04:27:30 +00:00
position: 'absolute',
left: 0,
right: 0,
top: 0,
bottom: 0,
backgroundColor: 'rgba(0, 0, 0, 0.9)',
2018-04-26 15:50:54 +00:00
} as React.CSSProperties,
mainContainer: {
display: 'flex',
flexDirection: 'row',
2018-04-26 23:13:05 +00:00
flexGrow: 1,
2018-04-26 15:50:54 +00:00
paddingTop: 40,
paddingLeft: 40,
paddingRight: 40,
paddingBottom: 0,
2018-04-15 04:27:30 +00:00
} as React.CSSProperties,
objectContainer: {
flexGrow: 1,
2018-04-15 04:27:30 +00:00
display: 'inline-flex',
justifyContent: 'center',
} as React.CSSProperties,
2018-05-08 01:31:31 +00:00
object: {
flexGrow: 1,
flexShrink: 0,
maxWidth: '100%',
maxHeight: '100%',
objectFit: 'contain',
} as React.CSSProperties,
2018-04-26 23:13:05 +00:00
controlsOffsetPlaceholder: {
width: CONTROLS_WIDTH,
marginRight: CONTROLS_SPACING,
flexShrink: 0,
},
2018-04-15 04:27:30 +00:00
controls: {
2018-04-26 23:13:05 +00:00
width: CONTROLS_WIDTH,
2018-04-15 04:27:30 +00:00
flexShrink: 0,
display: 'flex',
flexDirection: 'column',
2018-04-26 23:13:05 +00:00
marginLeft: CONTROLS_SPACING,
2018-04-15 04:57:12 +00:00
} as React.CSSProperties,
2018-04-26 15:50:54 +00:00
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,
},
2018-04-15 03:27:03 +00:00
};
2018-04-15 04:27:30 +00:00
interface IconButtonProps {
onClick?: () => void;
2018-04-26 15:50:54 +00:00
style?: React.CSSProperties;
type: 'save' | 'close' | 'previous' | 'next';
2018-04-15 04:27:30 +00:00
}
2018-04-26 15:50:54 +00:00
const IconButton = ({ onClick, style, type }: IconButtonProps) => {
const clickHandler = (event: React.MouseEvent<HTMLAnchorElement>): void => {
event.preventDefault();
if (!onClick) {
return;
}
onClick();
};
return (
<a
href="#"
onClick={clickHandler}
className={classNames('iconButton', type)}
role="button"
2018-04-26 15:50:54 +00:00
style={style}
/>
);
};
2018-04-15 04:27:30 +00:00
2018-04-26 15:50:54 +00:00
const IconButtonPlaceholder = () => (
<div style={styles.iconButtonPlaceholder} />
);
const Icon = ({
onClick,
url,
}: {
onClick?: (
event: React.MouseEvent<HTMLImageElement | HTMLDivElement>
) => void;
url: string;
}) => (
<div
style={{
2018-05-08 01:31:31 +00:00
...styles.object,
...colorSVG(url, Colors.ICON_SECONDARY),
maxWidth: 200,
}}
onClick={onClick}
role="button"
/>
);
export class Lightbox extends React.Component<Props> {
2018-04-15 06:53:19 +00:00
private containerRef: HTMLDivElement | null = null;
private videoRef: HTMLVideoElement | null = null;
private captureVideoBound: (element: HTMLVideoElement) => void;
private playVideoBound: () => void;
constructor(props: Props) {
super(props);
this.captureVideoBound = this.captureVideo.bind(this);
this.playVideoBound = this.playVideo.bind(this);
}
2018-04-15 06:53:19 +00:00
2018-04-15 04:50:18 +00:00
public componentDidMount() {
const useCapture = true;
document.addEventListener('keyup', this.onKeyUp, useCapture);
this.playVideo();
2018-04-15 04:50:18 +00:00
}
2018-04-24 16:08:18 +00:00
public componentWillUnmount() {
2018-04-15 04:50:18 +00:00
const useCapture = true;
document.removeEventListener('keyup', this.onKeyUp, useCapture);
}
public captureVideo(element: HTMLVideoElement) {
this.videoRef = element;
}
public playVideo() {
if (!this.videoRef) {
return;
}
if (this.videoRef.paused) {
// tslint:disable-next-line no-floating-promises
this.videoRef.play();
} else {
this.videoRef.pause();
}
}
2018-04-15 03:27:03 +00:00
public render() {
const {
contentType,
objectURL,
onNext,
onPrevious,
onSave,
i18n,
} = this.props;
2018-04-15 03:27:03 +00:00
return (
<div
style={styles.container}
onClick={this.onContainerClick}
ref={this.setContainerRef}
role="dialog"
>
2018-04-26 15:50:54 +00:00
<div style={styles.mainContainer}>
2018-04-26 23:13:05 +00:00
<div style={styles.controlsOffsetPlaceholder} />
2018-04-26 15:50:54 +00:00
<div style={styles.objectContainer}>
{!is.undefined(contentType)
? this.renderObject({ objectURL, contentType, i18n })
2018-04-26 15:50:54 +00:00
: null}
</div>
<div style={styles.controls}>
<IconButton type="close" onClick={this.onClose} />
2018-04-26 20:48:08 +00:00
{onSave ? (
2018-04-26 15:50:54 +00:00
<IconButton
type="save"
2018-04-26 20:48:08 +00:00
onClick={onSave}
2018-04-26 15:50:54 +00:00
style={styles.saveButton}
/>
) : null}
</div>
2018-04-15 04:27:30 +00:00
</div>
2018-04-26 15:50:54 +00:00
<div style={styles.navigationContainer}>
2018-04-26 20:48:08 +00:00
{onPrevious ? (
<IconButton type="previous" onClick={onPrevious} />
2018-04-26 15:50:54 +00:00
) : (
<IconButtonPlaceholder />
)}
2018-04-26 20:48:08 +00:00
{onNext ? (
<IconButton type="next" onClick={onNext} />
2018-04-26 15:50:54 +00:00
) : (
<IconButtonPlaceholder />
)}
2018-04-15 04:27:30 +00:00
</div>
2018-04-15 03:27:03 +00:00
</div>
);
}
2018-04-15 04:50:18 +00:00
2018-04-25 22:15:57 +00:00
private renderObject = ({
objectURL,
contentType,
i18n,
2018-04-25 22:15:57 +00:00
}: {
objectURL: string;
contentType: MIME.MIMEType;
i18n: Localizer;
2018-04-25 22:15:57 +00:00
}) => {
const isImageTypeSupported = GoogleChrome.isImageTypeSupported(contentType);
if (isImageTypeSupported) {
2018-04-25 22:15:57 +00:00
return (
<img
alt={i18n('lightboxImageAlt')}
2018-05-08 01:31:31 +00:00
style={styles.object}
2018-04-25 22:15:57 +00:00
src={objectURL}
onClick={this.onObjectClick}
/>
);
}
const isVideoTypeSupported = GoogleChrome.isVideoTypeSupported(contentType);
if (isVideoTypeSupported) {
2018-04-25 22:15:57 +00:00
return (
<video
role="button"
ref={this.captureVideoBound}
onClick={this.playVideoBound}
controls={true}
style={styles.object}
>
2018-04-25 22:15:57 +00:00
<source src={objectURL} />
</video>
);
}
const isUnsupportedImageType =
!isImageTypeSupported && MIME.isImage(contentType);
const isUnsupportedVideoType =
!isVideoTypeSupported && MIME.isVideo(contentType);
if (isUnsupportedImageType || isUnsupportedVideoType) {
return (
<Icon
url={isUnsupportedVideoType ? 'images/video.svg' : 'images/image.svg'}
onClick={this.onObjectClick}
/>
);
}
2018-04-25 22:15:57 +00:00
// tslint:disable-next-line no-console
console.log('Lightbox: Unexpected content type', { contentType });
return <Icon onClick={this.onObjectClick} url="images/file.svg" />;
2018-04-25 22:15:57 +00:00
};
2018-04-15 05:48:21 +00:00
private setContainerRef = (value: HTMLDivElement) => {
this.containerRef = value;
};
2018-04-15 05:48:21 +00:00
private onClose = () => {
2018-04-24 20:12:11 +00:00
const { close } = this.props;
if (!close) {
return;
}
close();
2018-04-15 05:48:21 +00:00
};
2018-04-15 04:50:18 +00:00
private onKeyUp = (event: KeyboardEvent) => {
const { onNext, onPrevious } = this.props;
switch (event.key) {
case 'Escape':
this.onClose();
break;
case 'ArrowLeft':
if (onPrevious) {
onPrevious();
}
break;
case 'ArrowRight':
if (onNext) {
onNext();
}
break;
default:
2018-04-15 04:50:18 +00:00
}
2018-04-15 04:57:12 +00:00
};
2018-04-15 05:48:21 +00:00
private onContainerClick = (event: React.MouseEvent<HTMLDivElement>) => {
if (event.target !== this.containerRef) {
return;
}
this.onClose();
};
2018-04-15 05:48:21 +00:00
private onObjectClick = (
event: React.MouseEvent<HTMLImageElement | HTMLDivElement>
) => {
2018-04-15 05:48:21 +00:00
event.stopPropagation();
this.onClose();
};
2018-04-15 03:27:03 +00:00
}