2020-03-04 22:26:01 +00:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes'
|
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component'
|
|
|
|
import { injectIntl, defineMessages } from 'react-intl'
|
|
|
|
import { expandAccountMediaTimeline } from '../actions/timelines'
|
|
|
|
import { getAccountGallery } from '../selectors'
|
|
|
|
import ColumnIndicator from '../components/column_indicator'
|
|
|
|
import MediaItem from '../components/media_item'
|
|
|
|
import LoadMore from '../components/load_more'
|
|
|
|
import Block from '../components/block'
|
|
|
|
|
|
|
|
const messages = defineMessages({
|
|
|
|
none: { id: 'account_gallery.none', defaultMessage: 'No media to show.' },
|
|
|
|
})
|
|
|
|
|
2020-06-09 00:38:36 +01:00
|
|
|
const mapStateToProps = (state, { account, mediaType }) => {
|
2020-03-04 22:26:01 +00:00
|
|
|
const accountId = !!account ? account.get('id') : -1
|
|
|
|
|
|
|
|
return {
|
|
|
|
accountId,
|
2020-06-09 00:38:36 +01:00
|
|
|
attachments: getAccountGallery(state, accountId, mediaType),
|
2020-03-04 22:26:01 +00:00
|
|
|
isLoading: state.getIn(['timelines', `account:${accountId}:media`, 'isLoading']),
|
|
|
|
hasMore: state.getIn(['timelines', `account:${accountId}:media`, 'hasMore']),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default
|
|
|
|
@connect(mapStateToProps)
|
|
|
|
@injectIntl
|
|
|
|
class AccountGallery extends ImmutablePureComponent {
|
|
|
|
|
|
|
|
static propTypes = {
|
|
|
|
dispatch: PropTypes.func.isRequired,
|
|
|
|
account: ImmutablePropTypes.map,
|
|
|
|
accountId: PropTypes.string,
|
|
|
|
attachments: ImmutablePropTypes.list.isRequired,
|
|
|
|
isLoading: PropTypes.bool,
|
|
|
|
hasMore: PropTypes.bool,
|
|
|
|
intl: PropTypes.object.isRequired,
|
2020-06-09 00:38:36 +01:00
|
|
|
mediaType: PropTypes.oneOf([
|
|
|
|
'photo',
|
|
|
|
'video',
|
|
|
|
]),
|
2020-03-04 22:26:01 +00:00
|
|
|
}
|
|
|
|
|
2020-06-09 00:38:36 +01:00
|
|
|
static defaultProps = {
|
|
|
|
mediaType: 'both'
|
|
|
|
}
|
|
|
|
|
2020-03-04 22:26:01 +00:00
|
|
|
componentDidMount() {
|
2020-06-09 00:38:36 +01:00
|
|
|
const { accountId, mediaType } = this.props
|
2020-03-04 22:26:01 +00:00
|
|
|
|
2020-04-11 23:29:19 +01:00
|
|
|
if (accountId && accountId !== -1) {
|
2020-06-09 00:38:36 +01:00
|
|
|
this.props.dispatch(expandAccountMediaTimeline(accountId, { mediaType }))
|
2020-03-04 22:26:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
componentWillReceiveProps(nextProps) {
|
2020-06-09 00:38:36 +01:00
|
|
|
if (
|
|
|
|
(nextProps.accountId && nextProps.accountId !== this.props.accountId) ||
|
|
|
|
(nextProps.accountId && nextProps.mediaType !== this.props.mediaType)
|
|
|
|
) {
|
|
|
|
this.props.dispatch(expandAccountMediaTimeline(nextProps.accountId, {
|
|
|
|
mediaType: nextProps.mediaType,
|
|
|
|
}))
|
2020-03-04 22:26:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
handleScrollToBottom = () => {
|
|
|
|
if (this.props.hasMore) {
|
|
|
|
this.handleLoadMore(this.props.attachments.size > 0 ? this.props.attachments.last().getIn(['status', 'id']) : undefined)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-09 00:38:36 +01:00
|
|
|
handleScroll = (e) => {
|
2020-03-04 22:26:01 +00:00
|
|
|
const { scrollTop, scrollHeight, clientHeight } = e.target
|
|
|
|
const offset = scrollHeight - scrollTop - clientHeight
|
|
|
|
|
|
|
|
if (150 > offset && !this.props.isLoading) {
|
|
|
|
this.handleScrollToBottom()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-09 00:38:36 +01:00
|
|
|
handleLoadMore = (maxId) => {
|
2020-03-04 22:26:01 +00:00
|
|
|
if (this.props.accountId && this.props.accountId !== -1) {
|
2020-06-09 00:38:36 +01:00
|
|
|
this.props.dispatch(expandAccountMediaTimeline(this.props.accountId, {
|
|
|
|
maxId,
|
|
|
|
mediaType: this.props.mediaType,
|
|
|
|
}))
|
2020-03-04 22:26:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-09 00:38:36 +01:00
|
|
|
handleLoadOlder = (e) => {
|
2020-03-04 22:26:01 +00:00
|
|
|
e.preventDefault()
|
|
|
|
this.handleScrollToBottom()
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
const {
|
|
|
|
attachments,
|
|
|
|
isLoading,
|
|
|
|
hasMore,
|
|
|
|
intl,
|
2020-04-08 02:06:59 +01:00
|
|
|
account,
|
2020-03-04 22:26:01 +00:00
|
|
|
} = this.props
|
|
|
|
|
|
|
|
if (!account) return null
|
|
|
|
|
|
|
|
return (
|
|
|
|
<Block>
|
|
|
|
<div
|
|
|
|
role='feed'
|
|
|
|
onScroll={this.handleScroll}
|
2020-05-14 07:03:22 +01:00
|
|
|
className={[_s.default, _s.flexRow, _s.flexWrap, _s.py5, _s.px5].join(' ')}
|
2020-03-04 22:26:01 +00:00
|
|
|
>
|
|
|
|
|
|
|
|
{
|
2020-04-28 06:33:58 +01:00
|
|
|
attachments.map((attachment, i) => (
|
|
|
|
<MediaItem
|
|
|
|
key={attachment.get('id')}
|
|
|
|
attachment={attachment}
|
|
|
|
account={account}
|
|
|
|
/>
|
2020-03-04 22:26:01 +00:00
|
|
|
))
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
isLoading && attachments.size === 0 &&
|
|
|
|
<ColumnIndicator type='loading' />
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2020-04-28 06:33:58 +01:00
|
|
|
!isLoading && attachments.size === 0 &&
|
|
|
|
<ColumnIndicator type='error' message={intl.formatMessage(messages.none)} />
|
2020-03-04 22:26:01 +00:00
|
|
|
}
|
|
|
|
</div>
|
2020-04-28 06:33:58 +01:00
|
|
|
|
|
|
|
{
|
|
|
|
hasMore && !(isLoading && attachments.size === 0) &&
|
|
|
|
<LoadMore visible={!isLoading} onClick={this.handleLoadOlder} />
|
|
|
|
}
|
2020-03-04 22:26:01 +00:00
|
|
|
</Block>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|