import ImmutablePropTypes from 'react-immutable-proptypes'; import PropTypes from 'prop-types'; import IconButton from './icon_button'; import { defineMessages, injectIntl, FormattedMessage } from 'react-intl'; import { isIOS } from '../is_mobile'; const messages = defineMessages({ toggle_visible: { id: 'media_gallery.toggle_visible', defaultMessage: 'Toggle visibility' } }); const outerStyle = { marginTop: '8px', overflow: 'hidden', width: '100%', boxSizing: 'border-box', position: 'relative' }; const spoilerStyle = { textAlign: 'center', height: '100%', cursor: 'pointer', display: 'flex', alignItems: 'center', justifyContent: 'center', flexDirection: 'column' }; const spoilerSpanStyle = { display: 'block', fontSize: '14px', }; const spoilerSubSpanStyle = { display: 'block', fontSize: '11px', fontWeight: '500' }; const spoilerButtonStyle = { position: 'absolute', top: '4px', left: '4px', zIndex: '100' }; const itemStyle = { boxSizing: 'border-box', position: 'relative', float: 'left', border: 'none', display: 'block' }; const thumbStyle = { display: 'block', width: '100%', height: '100%', textDecoration: 'none', backgroundSize: 'cover', cursor: 'zoom-in' }; const gifvThumbStyle = { position: 'relative', zIndex: '1', width: '100%', height: '100%', objectFit: 'cover', top: '50%', transform: 'translateY(-50%)', cursor: 'zoom-in' }; class Item extends React.PureComponent { constructor (props, context) { super(props, context); this.handleClick = this.handleClick.bind(this); } handleClick (e) { const { index, onClick } = this.props; if (e.button === 0) { e.preventDefault(); onClick(index); } e.stopPropagation(); } render () { const { attachment, index, size } = this.props; let width = 50; let height = 100; let top = 'auto'; let left = 'auto'; let bottom = 'auto'; let right = 'auto'; if (size === 1) { width = 100; } if (size === 4 || (size === 3 && index > 0)) { height = 50; } if (size === 2) { if (index === 0) { right = '2px'; } else { left = '2px'; } } else if (size === 3) { if (index === 0) { right = '2px'; } else if (index > 0) { left = '2px'; } if (index === 1) { bottom = '2px'; } else if (index > 1) { top = '2px'; } } else if (size === 4) { if (index === 0 || index === 2) { right = '2px'; } if (index === 1 || index === 3) { left = '2px'; } if (index < 2) { bottom = '2px'; } else { top = '2px'; } } let thumbnail = ''; if (attachment.get('type') === 'image') { thumbnail = ( ); } else if (attachment.get('type') === 'gifv') { const autoPlay = !isIOS() && this.props.autoPlayGif; thumbnail = (
); } return (
{thumbnail}
); } } Item.propTypes = { attachment: ImmutablePropTypes.map.isRequired, index: PropTypes.number.isRequired, size: PropTypes.number.isRequired, onClick: PropTypes.func.isRequired, autoPlayGif: PropTypes.bool.isRequired }; class MediaGallery extends React.PureComponent { constructor (props, context) { super(props, context); this.state = { visible: !props.sensitive }; this.handleOpen = this.handleOpen.bind(this); this.handleClick = this.handleClick.bind(this); } handleOpen (e) { this.setState({ visible: !this.state.visible }); } handleClick (index) { this.props.onOpenMedia(this.props.media, index); } render () { const { media, intl, sensitive } = this.props; let children; if (!this.state.visible) { let warning; if (sensitive) { warning = ; } else { warning = ; } children = (
{warning}
); } else { const size = media.take(4).size; children = media.take(4).map((attachment, i) => ); } return (
{children}
); } } MediaGallery.propTypes = { sensitive: PropTypes.bool, media: ImmutablePropTypes.list.isRequired, height: PropTypes.number.isRequired, onOpenMedia: PropTypes.func.isRequired, intl: PropTypes.object.isRequired, autoPlayGif: PropTypes.bool.isRequired }; export default injectIntl(MediaGallery);