gab-social/app/javascript/gabsocial/components/modal/media_modal.js

288 lines
8.1 KiB
JavaScript
Raw Normal View History

import React from 'react'
import PropTypes from 'prop-types'
2020-03-27 22:57:03 +00:00
import { defineMessages, injectIntl } from 'react-intl'
import ReactSwipeableViews from 'react-swipeable-views'
import ImmutablePropTypes from 'react-immutable-proptypes'
import ImmutablePureComponent from 'react-immutable-pure-component'
2020-05-01 06:50:27 +01:00
import { CX } from '../../constants'
2020-03-27 22:57:03 +00:00
import Video from '../video'
import ExtendedVideoPlayer from '../extended_video_player'
import Button from '../button'
import ImageLoader from '../image_loader'
import Pagination from '../pagination'
2019-07-02 08:10:25 +01:00
2020-05-01 06:50:27 +01:00
export const previewState = 'previewMediaModal'
2020-04-23 07:13:29 +01:00
2019-07-02 08:10:25 +01:00
class MediaModal extends ImmutablePureComponent {
static contextTypes = {
router: PropTypes.object,
2020-05-01 06:50:27 +01:00
}
2019-07-02 08:10:25 +01:00
state = {
index: null,
navigationHidden: false,
2020-05-01 06:50:27 +01:00
}
2019-07-02 08:10:25 +01:00
handleSwipe = (index) => {
2020-05-01 06:50:27 +01:00
this.setState({ index: index % this.props.media.size })
2019-07-02 08:10:25 +01:00
}
handleNextClick = () => {
2020-05-01 06:50:27 +01:00
this.setState({ index: (this.getIndex() + 1) % this.props.media.size })
2019-07-02 08:10:25 +01:00
}
handlePrevClick = () => {
2020-05-01 06:50:27 +01:00
this.setState({ index: (this.props.media.size + this.getIndex() - 1) % this.props.media.size })
2019-07-02 08:10:25 +01:00
}
handleChangeIndex = (i) => {
this.setState({ index: i % this.props.media.size })
2019-07-02 08:10:25 +01:00
}
handleKeyDown = (e) => {
2020-05-01 06:50:27 +01:00
switch (e.key) {
case 'ArrowLeft':
this.handlePrevClick()
e.preventDefault()
e.stopPropagation()
break
case 'ArrowRight':
this.handleNextClick()
e.preventDefault()
e.stopPropagation()
break
2019-07-02 08:10:25 +01:00
}
}
2020-05-01 06:50:27 +01:00
componentDidMount() {
window.addEventListener('keydown', this.handleKeyDown, false)
2019-07-02 08:10:25 +01:00
if (this.context.router) {
2020-05-01 06:50:27 +01:00
const history = this.context.router.history
2019-07-02 08:10:25 +01:00
2020-05-01 06:50:27 +01:00
history.push(history.location.pathname, previewState)
2019-07-02 08:10:25 +01:00
this.unlistenHistory = history.listen(() => {
2020-05-01 06:50:27 +01:00
this.props.onClose()
})
2019-07-02 08:10:25 +01:00
}
}
2020-05-01 06:50:27 +01:00
componentWillUnmount() {
window.removeEventListener('keydown', this.handleKeyDown)
2019-07-02 08:10:25 +01:00
if (this.context.router) {
2020-05-01 06:50:27 +01:00
this.unlistenHistory()
2019-07-02 08:10:25 +01:00
if (this.context.router.history.location.state === previewState) {
2020-05-01 06:50:27 +01:00
this.context.router.history.goBack()
2019-07-02 08:10:25 +01:00
}
}
}
2020-05-01 06:50:27 +01:00
getIndex() {
return this.state.index !== null ? this.state.index : this.props.index
2019-07-02 08:10:25 +01:00
}
toggleNavigation = () => {
this.setState(prevState => ({
navigationHidden: !prevState.navigationHidden,
2020-05-01 06:50:27 +01:00
}))
}
2019-07-02 08:10:25 +01:00
handleStatusClick = e => {
if (e.button === 0 && !(e.ctrlKey || e.metaKey)) {
2020-05-01 06:50:27 +01:00
e.preventDefault()
this.context.router.history.push(`/${this.props.status.getIn(['account', 'acct'])}/posts/${this.props.status.get('id')}`)
2019-07-02 08:10:25 +01:00
}
}
2020-05-01 06:50:27 +01:00
render() {
const {
media,
status,
intl,
onClose,
} = this.props
const { navigationHidden } = this.state
const index = this.getIndex()
2019-07-02 08:10:25 +01:00
const content = media.map((image) => {
2020-05-01 06:50:27 +01:00
const width = image.getIn(['meta', 'original', 'width']) || null
const height = image.getIn(['meta', 'original', 'height']) || null
2019-07-02 08:10:25 +01:00
if (image.get('type') === 'image') {
return (
<ImageLoader
previewSrc={image.get('preview_url')}
src={image.get('url')}
width={width}
height={height}
alt={image.get('description')}
key={image.get('url')}
onClick={this.toggleNavigation}
/>
2020-05-01 06:50:27 +01:00
)
2019-07-02 08:10:25 +01:00
} else if (image.get('type') === 'video') {
2020-05-01 06:50:27 +01:00
const { time } = this.props
2019-07-02 08:10:25 +01:00
return (
<Video
preview={image.get('preview_url')}
blurhash={image.get('blurhash')}
src={image.get('url')}
width={image.get('width')}
height={image.get('height')}
startTime={time || 0}
onCloseVideo={onClose}
detailed
alt={image.get('description')}
key={image.get('url')}
/>
2020-05-01 06:50:27 +01:00
)
2019-07-02 08:10:25 +01:00
} else if (image.get('type') === 'gifv') {
return (
<ExtendedVideoPlayer
src={image.get('url')}
muted
controls={false}
width={width}
height={height}
key={image.get('preview_url')}
alt={image.get('description')}
onClick={this.toggleNavigation}
/>
2020-05-01 06:50:27 +01:00
)
2019-07-02 08:10:25 +01:00
}
2020-05-01 06:50:27 +01:00
return null
}).toArray()
2019-07-02 08:10:25 +01:00
// 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 = {
width: '100%',
height: '100%',
2020-05-02 07:25:55 +01:00
alignItems: 'center',
display: 'flex',
justifyContent: 'center',
2020-05-01 06:50:27 +01:00
}
2019-07-02 08:10:25 +01:00
2020-05-01 06:50:27 +01:00
const navigationClasses = CX({
d: 1,
2020-05-01 06:50:27 +01:00
displayNone: navigationHidden,
})
2019-07-02 08:10:25 +01:00
return (
<div className={[_s.d, _s.w100PC, _s.h100PC, _s.aiCenter, _s.jcCenter].join(' ')}>
2019-07-02 08:10:25 +01:00
<div
className={[_s.d, _s.posAbs, _s.top0, _s.right0, _s.bottom0, _s.left0].join(' ')}
2019-07-02 08:10:25 +01:00
role='presentation'
onClick={onClose}
>
<ReactSwipeableViews
style={swipeableViewsStyle}
2020-05-01 06:50:27 +01:00
containerStyle={{
alignItems: 'center',
2020-05-02 07:25:55 +01:00
width: '100%',
height: '100%',
}}
slideStyle={{
height: '100%',
2020-05-01 06:50:27 +01:00
}}
2019-07-02 08:10:25 +01:00
onChangeIndex={this.handleSwipe}
onSwitching={this.handleSwitching}
index={index}
>
{content}
</ReactSwipeableViews>
</div>
2020-05-01 06:50:27 +01:00
<div className={navigationClasses}>
<div className={[_s.posFixed, _s.top0, _s.right0, _s.mt10, _s.mr10, _s.saveAreaInsetPT, _s.saveAreaInsetPR].join(' ')}>
<Button
title={intl.formatMessage(messages.close)}
icon='close'
backgroundColor='black'
onClick={onClose}
iconSize='14px'
className={_s.py15}
/>
</div>
2019-07-02 08:10:25 +01:00
{
media.size > 1 &&
<Button
tabIndex='0'
backgroundColor='black'
className={[_s.py15, _s.posFixed, _s.top50PC, _s.left0, _s.mt10, _s.ml10].join(' ')}
onClick={this.handlePrevClick}
aria-label={intl.formatMessage(messages.previous)}
icon='arrow-left'
iconSize='18px'
/>
}
{
media.size > 1 &&
<Button
tabIndex='0'
backgroundColor='black'
className={[_s.py15, _s.posFixed, _s.top50PC, _s.right0, _s.mt10, _s.mr10].join(' ')}
onClick={this.handleNextClick}
aria-label={intl.formatMessage(messages.next)}
icon='arrow-right'
iconSize='18px'
/>
}
2019-07-02 08:10:25 +01:00
2020-05-01 06:50:27 +01:00
{ /** : todo :
status &&
2019-07-02 08:10:25 +01:00
<div className={classNames('media-modal__meta', { 'media-modal__meta--shifted': media.size > 1 })}>
2019-08-13 16:54:29 +01:00
<a href={status.get('url')} onClick={this.handleStatusClick}>
{intl.formatMessage(messages.viewContext)}
</a>
2019-07-02 08:10:25 +01:00
</div>
2020-05-01 06:50:27 +01:00
*/
}
2019-07-02 08:10:25 +01:00
</div>
2020-05-01 06:50:27 +01:00
{
media.size > 1 &&
<div className={[_s.d, _s.posAbs, _s.bottom0, _s.mb15].join(' ')}>
<div className={[_s.d, _s.saveAreaInsetMB, _s.bgBlackOpaque, _s.circle, _s.py10, _s.px15].join(' ')}>
<Pagination
count={media.size}
activeIndex={index}
onClick={this.handleChangeIndex}
/>
</div>
</div>
}
2019-07-02 08:10:25 +01:00
</div>
2020-05-01 06:50:27 +01:00
)
2019-07-02 08:10:25 +01:00
}
}
const messages = defineMessages({
close: { id: 'lightbox.close', defaultMessage: 'Close' },
previous: { id: 'lightbox.previous', defaultMessage: 'Previous' },
next: { id: 'lightbox.next', defaultMessage: 'Next' },
viewContext: { id: 'lightbox.view_context', defaultMessage: 'View context' },
})
MediaModal.propTypes = {
media: ImmutablePropTypes.list.isRequired,
status: ImmutablePropTypes.map,
index: PropTypes.number.isRequired,
onClose: PropTypes.func.isRequired,
intl: PropTypes.object.isRequired,
}
export default injectIntl(MediaModal)