300 lines
8.4 KiB
TypeScript
300 lines
8.4 KiB
TypeScript
|
import classNames from 'clsx';
|
||
|
import React, { useEffect, useState } from 'react';
|
||
|
import { defineMessages, useIntl, FormattedMessage } from 'react-intl';
|
||
|
import { useHistory } from 'react-router-dom';
|
||
|
import ReactSwipeableViews from 'react-swipeable-views';
|
||
|
|
||
|
import ExtendedVideoPlayer from 'soapbox/components/extended_video_player';
|
||
|
import Icon from 'soapbox/components/icon';
|
||
|
import IconButton from 'soapbox/components/icon_button';
|
||
|
import Audio from 'soapbox/features/audio';
|
||
|
import Video from 'soapbox/features/video';
|
||
|
|
||
|
import ImageLoader from './image-loader';
|
||
|
|
||
|
import type { List as ImmutableList } from 'immutable';
|
||
|
import type { Account, Attachment, Status } from 'soapbox/types/entities';
|
||
|
|
||
|
const messages = defineMessages({
|
||
|
close: { id: 'lightbox.close', defaultMessage: 'Close' },
|
||
|
previous: { id: 'lightbox.previous', defaultMessage: 'Previous' },
|
||
|
next: { id: 'lightbox.next', defaultMessage: 'Next' },
|
||
|
});
|
||
|
|
||
|
interface IMediaModal {
|
||
|
media: ImmutableList<Attachment>,
|
||
|
status: Status,
|
||
|
account: Account,
|
||
|
index: number,
|
||
|
time?: number,
|
||
|
onClose: () => void,
|
||
|
}
|
||
|
|
||
|
const MediaModal: React.FC<IMediaModal> = (props) => {
|
||
|
const {
|
||
|
media,
|
||
|
status,
|
||
|
account,
|
||
|
onClose,
|
||
|
time = 0,
|
||
|
} = props;
|
||
|
|
||
|
const intl = useIntl();
|
||
|
const history = useHistory();
|
||
|
|
||
|
const [index, setIndex] = useState<number | null>(null);
|
||
|
const [navigationHidden, setNavigationHidden] = useState(false);
|
||
|
|
||
|
const handleSwipe = (index: number) => {
|
||
|
setIndex(index % media.size);
|
||
|
};
|
||
|
|
||
|
const handleNextClick = () => {
|
||
|
setIndex((getIndex() + 1) % media.size);
|
||
|
};
|
||
|
|
||
|
const handlePrevClick = () => {
|
||
|
setIndex((media.size + getIndex() - 1) % media.size);
|
||
|
};
|
||
|
|
||
|
const handleChangeIndex: React.MouseEventHandler<HTMLButtonElement> = (e) => {
|
||
|
const index = Number(e.currentTarget.getAttribute('data-index'));
|
||
|
setIndex(index % media.size);
|
||
|
};
|
||
|
|
||
|
const handleKeyDown = (e: KeyboardEvent) => {
|
||
|
switch (e.key) {
|
||
|
case 'ArrowLeft':
|
||
|
handlePrevClick();
|
||
|
e.preventDefault();
|
||
|
e.stopPropagation();
|
||
|
break;
|
||
|
case 'ArrowRight':
|
||
|
handleNextClick();
|
||
|
e.preventDefault();
|
||
|
e.stopPropagation();
|
||
|
break;
|
||
|
}
|
||
|
};
|
||
|
|
||
|
useEffect(() => {
|
||
|
window.addEventListener('keydown', handleKeyDown, false);
|
||
|
|
||
|
return () => {
|
||
|
window.removeEventListener('keydown', handleKeyDown);
|
||
|
};
|
||
|
}, []);
|
||
|
|
||
|
const getIndex = () => {
|
||
|
return index !== null ? index : props.index;
|
||
|
};
|
||
|
|
||
|
const toggleNavigation = () => {
|
||
|
setNavigationHidden(!navigationHidden);
|
||
|
};
|
||
|
|
||
|
const handleStatusClick: React.MouseEventHandler = e => {
|
||
|
if (e.button === 0 && !(e.ctrlKey || e.metaKey)) {
|
||
|
e.preventDefault();
|
||
|
history.push(`/@${account.acct}/posts/${status.id}`);
|
||
|
onClose();
|
||
|
}
|
||
|
};
|
||
|
|
||
|
const handleCloserClick: React.MouseEventHandler = ({ currentTarget }) => {
|
||
|
const whitelist = ['zoomable-image'];
|
||
|
const activeSlide = document.querySelector('.media-modal .react-swipeable-view-container > div[aria-hidden="false"]');
|
||
|
|
||
|
const isClickOutside = currentTarget === activeSlide || !activeSlide?.contains(currentTarget);
|
||
|
const isWhitelisted = whitelist.some(w => currentTarget.classList.contains(w));
|
||
|
|
||
|
if (isClickOutside || isWhitelisted) {
|
||
|
onClose();
|
||
|
}
|
||
|
};
|
||
|
|
||
|
let pagination: React.ReactNode[] = [];
|
||
|
|
||
|
const leftNav = media.size > 1 && (
|
||
|
<button
|
||
|
tabIndex={0}
|
||
|
className='media-modal__nav media-modal__nav--left'
|
||
|
onClick={handlePrevClick}
|
||
|
aria-label={intl.formatMessage(messages.previous)}
|
||
|
>
|
||
|
<Icon src={require('@tabler/icons/arrow-left.svg')} />
|
||
|
</button>
|
||
|
);
|
||
|
|
||
|
const rightNav = media.size > 1 && (
|
||
|
<button
|
||
|
tabIndex={0}
|
||
|
className='media-modal__nav media-modal__nav--right'
|
||
|
onClick={handleNextClick}
|
||
|
aria-label={intl.formatMessage(messages.next)}
|
||
|
>
|
||
|
<Icon src={require('@tabler/icons/arrow-right.svg')} />
|
||
|
</button>
|
||
|
);
|
||
|
|
||
|
if (media.size > 1) {
|
||
|
pagination = media.toArray().map((item, i) => {
|
||
|
const classes = ['media-modal__button'];
|
||
|
if (i === getIndex()) {
|
||
|
classes.push('media-modal__button--active');
|
||
|
}
|
||
|
return (
|
||
|
<li className='media-modal__page-dot' key={i}>
|
||
|
<button
|
||
|
tabIndex={0}
|
||
|
className={classes.join(' ')}
|
||
|
onClick={handleChangeIndex}
|
||
|
data-index={i}
|
||
|
>
|
||
|
{i + 1}
|
||
|
</button>
|
||
|
</li>
|
||
|
);
|
||
|
});
|
||
|
}
|
||
|
|
||
|
const isMultiMedia = media.map((image) => {
|
||
|
if (image.type !== 'image') {
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
return false;
|
||
|
}).toArray();
|
||
|
|
||
|
const content = media.map(attachment => {
|
||
|
const width = (attachment.meta.getIn(['original', 'width']) || undefined) as number | undefined;
|
||
|
const height = (attachment.meta.getIn(['original', 'height']) || undefined) as number | undefined;
|
||
|
|
||
|
const link = (status && account && (
|
||
|
<a href={status.url} onClick={handleStatusClick}>
|
||
|
<FormattedMessage id='lightbox.view_context' defaultMessage='View context' />
|
||
|
</a>
|
||
|
));
|
||
|
|
||
|
if (attachment.type === 'image') {
|
||
|
return (
|
||
|
<ImageLoader
|
||
|
previewSrc={attachment.preview_url}
|
||
|
src={attachment.url}
|
||
|
width={width}
|
||
|
height={height}
|
||
|
alt={attachment.description}
|
||
|
key={attachment.url}
|
||
|
onClick={toggleNavigation}
|
||
|
/>
|
||
|
);
|
||
|
} else if (attachment.type === 'video') {
|
||
|
return (
|
||
|
<Video
|
||
|
preview={attachment.preview_url}
|
||
|
blurhash={attachment.blurhash}
|
||
|
src={attachment.url}
|
||
|
width={width}
|
||
|
height={height}
|
||
|
startTime={time}
|
||
|
onCloseVideo={onClose}
|
||
|
detailed
|
||
|
link={link}
|
||
|
alt={attachment.description}
|
||
|
key={attachment.url}
|
||
|
/>
|
||
|
);
|
||
|
} else if (attachment.type === 'audio') {
|
||
|
return (
|
||
|
<Audio
|
||
|
src={attachment.url}
|
||
|
alt={attachment.description}
|
||
|
poster={attachment.preview_url !== attachment.url ? attachment.preview_url : (status.getIn(['account', 'avatar_static']))}
|
||
|
backgroundColor={attachment.meta.getIn(['colors', 'background'])}
|
||
|
foregroundColor={attachment.meta.getIn(['colors', 'foreground'])}
|
||
|
accentColor={attachment.meta.getIn(['colors', 'accent'])}
|
||
|
duration={attachment.meta.getIn(['original', 'duration'], 0)}
|
||
|
key={attachment.url}
|
||
|
/>
|
||
|
);
|
||
|
} else if (attachment.type === 'gifv') {
|
||
|
return (
|
||
|
<ExtendedVideoPlayer
|
||
|
src={attachment.url}
|
||
|
muted
|
||
|
controls={false}
|
||
|
width={width}
|
||
|
link={link}
|
||
|
height={height}
|
||
|
key={attachment.preview_url}
|
||
|
alt={attachment.description}
|
||
|
onClick={toggleNavigation}
|
||
|
/>
|
||
|
);
|
||
|
}
|
||
|
|
||
|
return null;
|
||
|
}).toArray();
|
||
|
|
||
|
// you can't use 100vh, because the viewport height is taller
|
||
|
// than the visible part of the document in some mobile
|
||
|
// browsers when it's address bar is visible.
|
||
|
// https://developers.google.com/web/updates/2016/12/url-bar-resizing
|
||
|
const swipeableViewsStyle: React.CSSProperties = {
|
||
|
width: '100%',
|
||
|
height: '100%',
|
||
|
};
|
||
|
|
||
|
const containerStyle: React.CSSProperties = {
|
||
|
alignItems: 'center', // center vertically
|
||
|
};
|
||
|
|
||
|
const navigationClassName = classNames('media-modal__navigation', {
|
||
|
'media-modal__navigation--hidden': navigationHidden,
|
||
|
});
|
||
|
|
||
|
return (
|
||
|
<div className='modal-root__modal media-modal'>
|
||
|
<div
|
||
|
className='media-modal__closer'
|
||
|
role='presentation'
|
||
|
onClick={handleCloserClick}
|
||
|
>
|
||
|
<ReactSwipeableViews
|
||
|
style={swipeableViewsStyle}
|
||
|
containerStyle={containerStyle}
|
||
|
onChangeIndex={handleSwipe}
|
||
|
index={getIndex()}
|
||
|
>
|
||
|
{content}
|
||
|
</ReactSwipeableViews>
|
||
|
</div>
|
||
|
|
||
|
<div className={navigationClassName}>
|
||
|
<IconButton
|
||
|
className='media-modal__close'
|
||
|
title={intl.formatMessage(messages.close)}
|
||
|
src={require('@tabler/icons/x.svg')}
|
||
|
onClick={onClose}
|
||
|
/>
|
||
|
|
||
|
{leftNav}
|
||
|
{rightNav}
|
||
|
|
||
|
{(status && !isMultiMedia[getIndex()]) && (
|
||
|
<div className={classNames('media-modal__meta', { 'media-modal__meta--shifted': media.size > 1 })}>
|
||
|
<a href={status.url} onClick={handleStatusClick}>
|
||
|
<FormattedMessage id='lightbox.view_context' defaultMessage='View context' />
|
||
|
</a>
|
||
|
</div>
|
||
|
)}
|
||
|
|
||
|
<ul className='media-modal__pagination'>
|
||
|
{pagination}
|
||
|
</ul>
|
||
|
</div>
|
||
|
</div>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export default MediaModal;
|