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

305 lines
8.4 KiB
JavaScript
Raw Normal View History

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'
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' },
2019-08-13 16:54:29 +01:00
viewContext: { id: 'lightbox.view_context', defaultMessage: 'View context' },
2020-03-27 22:57:03 +00:00
})
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
2020-02-25 16:04:44 +00:00
export default
@injectIntl
2019-07-02 08:10:25 +01:00
class MediaModal extends ImmutablePureComponent {
static propTypes = {
media: ImmutablePropTypes.list.isRequired,
status: ImmutablePropTypes.map,
index: PropTypes.number.isRequired,
onClose: PropTypes.func.isRequired,
intl: PropTypes.object.isRequired,
2020-05-01 06:50:27 +01:00
}
2019-07-02 08:10:25 +01:00
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
}
updateOnProps = [
'media',
'status',
'index',
]
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 = (e) => {
2020-05-01 06:50:27 +01:00
const index = Number(e.currentTarget.getAttribute('data-index'))
this.setState({ index: index % 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()
let pagination = []
const leftNav = 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'
/>
)
const rightNav = 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
if (media.size > 1) {
pagination = media.map((item, i) => {
2020-05-01 06:50:27 +01:00
const btnClasses = CX({
default: 1,
2020-05-02 07:25:55 +01:00
width10PX: 1,
height10PX: 1,
2020-05-01 06:50:27 +01:00
outlineNone: 1,
circle: 1,
cursorPointer: 1,
2020-05-02 07:25:55 +01:00
colorPrimary: i === index,
lineHeight0825: i === index,
2020-05-01 06:50:27 +01:00
bgPrimaryOpaque: i !== index,
bgPrimary: i === index,
})
2020-05-02 07:25:55 +01:00
const activeText = i === index ? '•' : ''
2020-05-01 06:50:27 +01:00
return (
<li className={[_s.default, _s.px5].join(' ')} key={`media-pagination-${i}`}>
2020-05-02 07:25:55 +01:00
<button tabIndex='0' className={btnClasses} onClick={this.handleChangeIndex} data-index={i}>
{activeText}
</button>
2020-05-01 06:50:27 +01:00
</li>
)
})
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({
default: 1,
displayNone: navigationHidden,
})
2019-07-02 08:10:25 +01:00
return (
2020-05-01 06:50:27 +01:00
<div className={[_s.default, _s.width100PC, _s.height100PC, _s.alignItemsCenter, _s.justifyContentCenter].join(' ')}>
2019-07-02 08:10:25 +01:00
<div
2020-05-02 07:25:55 +01:00
className={[_s.default, _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%',
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}>
<Button
title={intl.formatMessage(messages.close)}
icon='close'
backgroundColor='black'
onClick={onClose}
iconSize='14px'
className={[_s.py15, _s.posFixed, _s.top0, _s.right0, _s.mt10, _s.mr10].join(' ')}
/>
2019-07-02 08:10:25 +01:00
{leftNav}
{rightNav}
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
2020-05-02 07:25:55 +01:00
<ul className={[_s.default, _s.posAbs, _s.bottom0, _s.mb15, _s.flexRow, _s.bgBlackOpaque, _s.circle, _s.py10, _s.px15, _s.listStyleNone].join(' ')}>
2020-05-01 06:50:27 +01:00
{pagination}
</ul>
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
}
}