.circleci
.dependabot
.github
app
chewy
controllers
helpers
javascript
fonts
images
mastodon
actions
components
containers
features
account
account_gallery
account_timeline
blocks
community_timeline
compose
direct_timeline
domain_blocks
emoji
favourited_statuses
favourites
follow_requests
followers
following
generic_not_found
getting_started
hashtag_timeline
home_timeline
introduction
keyboard_shortcuts
list_adder
list_editor
list_timeline
lists
mutes
notifications
pinned_statuses
public_timeline
reblogs
report
search
standalone
status
ui
components
__tests__
actions_modal.js
boost_modal.js
bundle.js
bundle_column_error.js
bundle_modal_error.js
column.js
column_header.js
column_link.js
column_loading.js
column_subheading.js
columns_area.js
compose_panel.js
confirmation_modal.js
document_title.js
drawer_loading.js
embed_modal.js
focal_point_modal.js
follow_requests_nav_link.js
image_loader.js
link_footer.js
list_panel.js
media_modal.js
modal_loading.js
modal_root.js
mute_modal.js
navigation_panel.js
notifications_counter_icon.js
report_modal.js
tabs_bar.js
upload_area.js
video_modal.js
zoomable_image.js
containers
util
index.js
video
locales
middleware
reducers
selectors
service_worker
storage
store
utils
api.js
base_polyfills.js
common.js
compare_id.js
extra_polyfills.js
initial_state.js
is_mobile.js
load_polyfills.js
main.js
performance.js
ready.js
rtl.js
scroll.js
settings.js
stream.js
test_setup.js
uuid.js
packs
styles
lib
mailers
models
policies
presenters
serializers
services
validators
views
workers
bin
config
db
dist
lib
log
nanobox
public
spec
streaming
vendor
.buildpacks
.codeclimate.yml
.dockerignore
.editorconfig
.env.nanobox
.env.production.sample
.env.test
.env.vagrant
.eslintignore
.eslintrc.js
.foreman
.gitattributes
.gitignore
.haml-lint.yml
.nanoignore
.nvmrc
.profile
.rspec
.rubocop.yml
.ruby-version
.sass-lint.yml
.slugignore
.yarnclean
AUTHORS.md
Aptfile
CHANGELOG.md
CODE_OF_CONDUCT.md
CONTRIBUTING.md
Capfile
Dockerfile
Gemfile
Gemfile.lock
LICENSE
Procfile
Procfile.dev
README.md
Rakefile
Vagrantfile
app.json
babel.config.js
boxfile.yml
config.ru
crowdin.yml
docker-compose.yml
package.json
postcss.config.js
priv-config
scalingo.json
yarn.lock
* Add "view context" button to media modal when opened from gallery * Add "view context" button to video modal Allow closing the video modal by navigating back in the browser, just like the media modal
244 lines
7.4 KiB
JavaScript
244 lines
7.4 KiB
JavaScript
import React from 'react';
|
|
import ReactSwipeableViews from 'react-swipeable-views';
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
|
import PropTypes from 'prop-types';
|
|
import Video from 'mastodon/features/video';
|
|
import ExtendedVideoPlayer from 'mastodon/components/extended_video_player';
|
|
import classNames from 'classnames';
|
|
import { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
|
|
import IconButton from 'mastodon/components/icon_button';
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
|
import ImageLoader from './image_loader';
|
|
import Icon from 'mastodon/components/icon';
|
|
|
|
const messages = defineMessages({
|
|
close: { id: 'lightbox.close', defaultMessage: 'Close' },
|
|
previous: { id: 'lightbox.previous', defaultMessage: 'Previous' },
|
|
next: { id: 'lightbox.next', defaultMessage: 'Next' },
|
|
});
|
|
|
|
export const previewState = 'previewMediaModal';
|
|
|
|
export default @injectIntl
|
|
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,
|
|
};
|
|
|
|
static contextTypes = {
|
|
router: PropTypes.object,
|
|
};
|
|
|
|
state = {
|
|
index: null,
|
|
navigationHidden: false,
|
|
};
|
|
|
|
handleSwipe = (index) => {
|
|
this.setState({ index: index % this.props.media.size });
|
|
}
|
|
|
|
handleNextClick = () => {
|
|
this.setState({ index: (this.getIndex() + 1) % this.props.media.size });
|
|
}
|
|
|
|
handlePrevClick = () => {
|
|
this.setState({ index: (this.props.media.size + this.getIndex() - 1) % this.props.media.size });
|
|
}
|
|
|
|
handleChangeIndex = (e) => {
|
|
const index = Number(e.currentTarget.getAttribute('data-index'));
|
|
this.setState({ index: index % this.props.media.size });
|
|
}
|
|
|
|
handleKeyDown = (e) => {
|
|
switch(e.key) {
|
|
case 'ArrowLeft':
|
|
this.handlePrevClick();
|
|
e.preventDefault();
|
|
e.stopPropagation();
|
|
break;
|
|
case 'ArrowRight':
|
|
this.handleNextClick();
|
|
e.preventDefault();
|
|
e.stopPropagation();
|
|
break;
|
|
}
|
|
}
|
|
|
|
componentDidMount () {
|
|
window.addEventListener('keydown', this.handleKeyDown, false);
|
|
|
|
if (this.context.router) {
|
|
const history = this.context.router.history;
|
|
|
|
history.push(history.location.pathname, previewState);
|
|
|
|
this.unlistenHistory = history.listen(() => {
|
|
this.props.onClose();
|
|
});
|
|
}
|
|
}
|
|
|
|
componentWillUnmount () {
|
|
window.removeEventListener('keydown', this.handleKeyDown);
|
|
|
|
if (this.context.router) {
|
|
this.unlistenHistory();
|
|
|
|
if (this.context.router.history.location.state === previewState) {
|
|
this.context.router.history.goBack();
|
|
}
|
|
}
|
|
}
|
|
|
|
getIndex () {
|
|
return this.state.index !== null ? this.state.index : this.props.index;
|
|
}
|
|
|
|
toggleNavigation = () => {
|
|
this.setState(prevState => ({
|
|
navigationHidden: !prevState.navigationHidden,
|
|
}));
|
|
};
|
|
|
|
handleStatusClick = e => {
|
|
if (e.button === 0 && !(e.ctrlKey || e.metaKey)) {
|
|
e.preventDefault();
|
|
this.context.router.history.push(`/statuses/${this.props.status.get('id')}`);
|
|
}
|
|
}
|
|
|
|
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' className='media-modal__nav media-modal__nav--left' onClick={this.handlePrevClick} aria-label={intl.formatMessage(messages.previous)}><Icon id='chevron-left' fixedWidth /></button>;
|
|
const rightNav = media.size > 1 && <button tabIndex='0' className='media-modal__nav media-modal__nav--right' onClick={this.handleNextClick} aria-label={intl.formatMessage(messages.next)}><Icon id='chevron-right' fixedWidth /></button>;
|
|
|
|
if (media.size > 1) {
|
|
pagination = media.map((item, i) => {
|
|
const classes = ['media-modal__button'];
|
|
if (i === index) {
|
|
classes.push('media-modal__button--active');
|
|
}
|
|
return (<li className='media-modal__page-dot' key={i}><button tabIndex='0' className={classes.join(' ')} onClick={this.handleChangeIndex} data-index={i}>{i + 1}</button></li>);
|
|
});
|
|
}
|
|
|
|
const content = media.map((image) => {
|
|
const width = image.getIn(['meta', 'original', 'width']) || null;
|
|
const height = image.getIn(['meta', 'original', 'height']) || null;
|
|
|
|
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}
|
|
/>
|
|
);
|
|
} else if (image.get('type') === 'video') {
|
|
const { time } = this.props;
|
|
|
|
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')}
|
|
/>
|
|
);
|
|
} 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}
|
|
/>
|
|
);
|
|
}
|
|
|
|
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 = {
|
|
width: '100%',
|
|
height: '100%',
|
|
};
|
|
|
|
const containerStyle = {
|
|
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={onClose}
|
|
>
|
|
<ReactSwipeableViews
|
|
style={swipeableViewsStyle}
|
|
containerStyle={containerStyle}
|
|
onChangeIndex={this.handleSwipe}
|
|
onSwitching={this.handleSwitching}
|
|
index={index}
|
|
>
|
|
{content}
|
|
</ReactSwipeableViews>
|
|
</div>
|
|
|
|
<div className={navigationClassName}>
|
|
<IconButton className='media-modal__close' title={intl.formatMessage(messages.close)} icon='times' onClick={onClose} size={40} />
|
|
|
|
{leftNav}
|
|
{rightNav}
|
|
|
|
{status && (
|
|
<div className={classNames('media-modal__meta', { 'media-modal__meta--shifted': media.size > 1 })}>
|
|
<a href={status.get('url')} onClick={this.handleStatusClick}><FormattedMessage id='lightbox.view_context' defaultMessage='View context' /></a>
|
|
</div>
|
|
)}
|
|
|
|
<ul className='media-modal__pagination'>
|
|
{pagination}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
}
|