|
@ -17,6 +17,7 @@ class Item extends React.PureComponent { |
|
|
|
|
|
|
|
|
static propTypes = { |
|
|
static propTypes = { |
|
|
attachment: ImmutablePropTypes.map.isRequired, |
|
|
attachment: ImmutablePropTypes.map.isRequired, |
|
|
|
|
|
lang: PropTypes.string, |
|
|
standalone: PropTypes.bool, |
|
|
standalone: PropTypes.bool, |
|
|
index: PropTypes.number.isRequired, |
|
|
index: PropTypes.number.isRequired, |
|
|
size: PropTypes.number.isRequired, |
|
|
size: PropTypes.number.isRequired, |
|
@ -78,7 +79,7 @@ class Item extends React.PureComponent { |
|
|
}; |
|
|
}; |
|
|
|
|
|
|
|
|
render () { |
|
|
render () { |
|
|
const { attachment, index, size, standalone, displayWidth, visible } = this.props; |
|
|
|
|
|
|
|
|
const { attachment, lang, index, size, standalone, displayWidth, visible } = this.props; |
|
|
|
|
|
|
|
|
let width = 50; |
|
|
let width = 50; |
|
|
let height = 100; |
|
|
let height = 100; |
|
@ -134,7 +135,7 @@ class Item extends React.PureComponent { |
|
|
if (attachment.get('type') === 'unknown') { |
|
|
if (attachment.get('type') === 'unknown') { |
|
|
return ( |
|
|
return ( |
|
|
<div className={classNames('media-gallery__item', { standalone })} key={attachment.get('id')} style={{ left: left, top: top, right: right, bottom: bottom, width: `${width}%`, height: `${height}%` }}> |
|
|
<div className={classNames('media-gallery__item', { standalone })} key={attachment.get('id')} style={{ left: left, top: top, right: right, bottom: bottom, width: `${width}%`, height: `${height}%` }}> |
|
|
<a className='media-gallery__item-thumbnail' href={attachment.get('remote_url') || attachment.get('url')} style={{ cursor: 'pointer' }} title={attachment.get('description')} target='_blank' rel='noopener noreferrer'> |
|
|
|
|
|
|
|
|
<a className='media-gallery__item-thumbnail' href={attachment.get('remote_url') || attachment.get('url')} style={{ cursor: 'pointer' }} title={attachment.get('description')} lang={lang} target='_blank' rel='noopener noreferrer'> |
|
|
<Blurhash |
|
|
<Blurhash |
|
|
hash={attachment.get('blurhash')} |
|
|
hash={attachment.get('blurhash')} |
|
|
className='media-gallery__preview' |
|
|
className='media-gallery__preview' |
|
@ -174,6 +175,7 @@ class Item extends React.PureComponent { |
|
|
sizes={sizes} |
|
|
sizes={sizes} |
|
|
alt={attachment.get('description')} |
|
|
alt={attachment.get('description')} |
|
|
title={attachment.get('description')} |
|
|
title={attachment.get('description')} |
|
|
|
|
|
lang={lang} |
|
|
style={{ objectPosition: `${x}% ${y}%` }} |
|
|
style={{ objectPosition: `${x}% ${y}%` }} |
|
|
onLoad={this.handleImageLoad} |
|
|
onLoad={this.handleImageLoad} |
|
|
/> |
|
|
/> |
|
@ -188,6 +190,7 @@ class Item extends React.PureComponent { |
|
|
className='media-gallery__item-gifv-thumbnail' |
|
|
className='media-gallery__item-gifv-thumbnail' |
|
|
aria-label={attachment.get('description')} |
|
|
aria-label={attachment.get('description')} |
|
|
title={attachment.get('description')} |
|
|
title={attachment.get('description')} |
|
|
|
|
|
lang={lang} |
|
|
role='application' |
|
|
role='application' |
|
|
src={attachment.get('url')} |
|
|
src={attachment.get('url')} |
|
|
onClick={this.handleClick} |
|
|
onClick={this.handleClick} |
|
@ -227,6 +230,7 @@ class MediaGallery extends React.PureComponent { |
|
|
sensitive: PropTypes.bool, |
|
|
sensitive: PropTypes.bool, |
|
|
standalone: PropTypes.bool, |
|
|
standalone: PropTypes.bool, |
|
|
media: ImmutablePropTypes.list.isRequired, |
|
|
media: ImmutablePropTypes.list.isRequired, |
|
|
|
|
|
lang: PropTypes.string, |
|
|
size: PropTypes.object, |
|
|
size: PropTypes.object, |
|
|
height: PropTypes.number.isRequired, |
|
|
height: PropTypes.number.isRequired, |
|
|
onOpenMedia: PropTypes.func.isRequired, |
|
|
onOpenMedia: PropTypes.func.isRequired, |
|
@ -310,9 +314,8 @@ class MediaGallery extends React.PureComponent { |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
render () { |
|
|
render () { |
|
|
const { media, intl, sensitive, height, defaultWidth, standalone, autoplay } = this.props; |
|
|
|
|
|
|
|
|
const { media, lang, intl, sensitive, height, defaultWidth, standalone, autoplay } = this.props; |
|
|
const { visible } = this.state; |
|
|
const { visible } = this.state; |
|
|
|
|
|
|
|
|
const width = this.state.width || defaultWidth; |
|
|
const width = this.state.width || defaultWidth; |
|
|
|
|
|
|
|
|
let children, spoilerButton; |
|
|
let children, spoilerButton; |
|
@ -333,9 +336,9 @@ class MediaGallery extends React.PureComponent { |
|
|
const uncached = media.every(attachment => attachment.get('type') === 'unknown'); |
|
|
const uncached = media.every(attachment => attachment.get('type') === 'unknown'); |
|
|
|
|
|
|
|
|
if (standalone && this.isFullSizeEligible()) { |
|
|
if (standalone && this.isFullSizeEligible()) { |
|
|
children = <Item standalone autoplay={autoplay} onClick={this.handleClick} attachment={media.get(0)} displayWidth={width} visible={visible} />; |
|
|
|
|
|
|
|
|
children = <Item standalone autoplay={autoplay} onClick={this.handleClick} attachment={media.get(0)} lang={lang} displayWidth={width} visible={visible} />; |
|
|
} else { |
|
|
} else { |
|
|
children = media.take(4).map((attachment, i) => <Item key={attachment.get('id')} autoplay={autoplay} onClick={this.handleClick} attachment={attachment} index={i} size={size} displayWidth={width} visible={visible || uncached} />); |
|
|
|
|
|
|
|
|
children = media.take(4).map((attachment, i) => <Item key={attachment.get('id')} autoplay={autoplay} onClick={this.handleClick} attachment={attachment} index={i} lang={lang} size={size} displayWidth={width} visible={visible || uncached} />); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
if (uncached) { |
|
|
if (uncached) { |
|
|