2017-05-03 02:04:16 +02:00
|
|
|
import React from 'react';
|
2016-11-16 17:20:52 +01:00
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
2017-04-21 20:05:35 +02:00
|
|
|
import PropTypes from 'prop-types';
|
2021-09-26 05:46:13 +02:00
|
|
|
import { lookupAccount, fetchAccount } from 'flavours/glitch/actions/accounts';
|
2018-05-27 19:10:37 +02:00
|
|
|
import { expandAccountFeaturedTimeline, expandAccountTimeline } from 'flavours/glitch/actions/timelines';
|
2016-11-16 17:20:52 +01:00
|
|
|
import StatusList from '../../components/status_list';
|
|
|
|
import LoadingIndicator from '../../components/loading_indicator';
|
2017-01-30 21:40:55 +01:00
|
|
|
import Column from '../ui/components/column';
|
2019-02-27 13:36:40 +01:00
|
|
|
import ProfileColumnHeader from 'flavours/glitch/features/account/components/profile_column_header';
|
2017-01-30 21:40:55 +01:00
|
|
|
import HeaderContainer from './containers/header_container';
|
2019-10-07 04:33:31 +02:00
|
|
|
import ColumnBackButton from 'flavours/glitch/components/column_back_button';
|
2017-07-11 01:00:14 +02:00
|
|
|
import { List as ImmutableList } from 'immutable';
|
2017-05-03 02:04:16 +02:00
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
2018-11-09 16:47:50 +01:00
|
|
|
import { FormattedMessage } from 'react-intl';
|
2019-04-09 05:02:48 +02:00
|
|
|
import MissingIndicator from 'flavours/glitch/components/missing_indicator';
|
2020-06-14 22:29:40 +02:00
|
|
|
import TimelineHint from 'flavours/glitch/components/timeline_hint';
|
2022-05-10 09:44:35 +02:00
|
|
|
import LimitedAccountHint from './components/limited_account_hint';
|
|
|
|
import { getAccountHidden } from 'flavours/glitch/selectors';
|
2016-10-09 20:18:54 +02:00
|
|
|
|
2020-09-10 00:07:19 +02:00
|
|
|
const emptyList = ImmutableList();
|
|
|
|
|
2021-09-27 07:23:48 +02:00
|
|
|
const mapStateToProps = (state, { params: { acct, id }, withReplies = false }) => {
|
|
|
|
const accountId = id || state.getIn(['accounts_map', acct]);
|
2021-09-26 05:46:13 +02:00
|
|
|
|
|
|
|
if (!accountId) {
|
|
|
|
return {
|
|
|
|
isLoading: true,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-03-16 19:54:00 +01:00
|
|
|
const path = withReplies ? `${accountId}:with_replies` : accountId;
|
|
|
|
|
|
|
|
return {
|
2021-09-26 05:46:13 +02:00
|
|
|
accountId,
|
2020-07-01 23:38:44 +02:00
|
|
|
remote: !!(state.getIn(['accounts', accountId, 'acct']) !== state.getIn(['accounts', accountId, 'username'])),
|
2020-06-14 22:29:40 +02:00
|
|
|
remoteUrl: state.getIn(['accounts', accountId, 'url']),
|
2019-04-09 05:02:48 +02:00
|
|
|
isAccount: !!state.getIn(['accounts', accountId]),
|
2018-03-16 19:54:00 +01:00
|
|
|
statusIds: state.getIn(['timelines', `account:${path}`, 'items'], ImmutableList()),
|
2018-03-16 20:29:42 +01:00
|
|
|
featuredStatusIds: withReplies ? ImmutableList() : state.getIn(['timelines', `account:${accountId}:pinned`, 'items'], ImmutableList()),
|
2018-03-16 19:54:00 +01:00
|
|
|
isLoading: state.getIn(['timelines', `account:${path}`, 'isLoading']),
|
2018-05-27 19:10:37 +02:00
|
|
|
hasMore: state.getIn(['timelines', `account:${path}`, 'hasMore']),
|
2020-09-10 00:07:19 +02:00
|
|
|
suspended: state.getIn(['accounts', accountId, 'suspended'], false),
|
2022-05-10 09:44:35 +02:00
|
|
|
hidden: getAccountHidden(state, accountId),
|
2018-03-16 19:54:00 +01:00
|
|
|
};
|
|
|
|
};
|
2016-10-09 20:18:54 +02:00
|
|
|
|
2020-06-14 22:29:40 +02:00
|
|
|
const RemoteHint = ({ url }) => (
|
2022-05-03 10:59:23 +02:00
|
|
|
<TimelineHint url={url} resource={<FormattedMessage id='timeline_hint.resources.statuses' defaultMessage='Older posts' />} />
|
2020-06-14 22:29:40 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
RemoteHint.propTypes = {
|
|
|
|
url: PropTypes.string.isRequired,
|
|
|
|
};
|
|
|
|
|
2019-09-09 15:16:08 +02:00
|
|
|
export default @connect(mapStateToProps)
|
|
|
|
class AccountTimeline extends ImmutablePureComponent {
|
2016-10-09 20:18:54 +02:00
|
|
|
|
2017-05-12 14:44:10 +02:00
|
|
|
static propTypes = {
|
2021-09-26 05:46:13 +02:00
|
|
|
params: PropTypes.shape({
|
2021-09-27 07:23:48 +02:00
|
|
|
acct: PropTypes.string,
|
|
|
|
id: PropTypes.string,
|
2021-09-26 05:46:13 +02:00
|
|
|
}).isRequired,
|
|
|
|
accountId: PropTypes.string,
|
2017-05-12 14:44:10 +02:00
|
|
|
dispatch: PropTypes.func.isRequired,
|
|
|
|
statusIds: ImmutablePropTypes.list,
|
2018-03-16 20:29:42 +01:00
|
|
|
featuredStatusIds: ImmutablePropTypes.list,
|
2017-05-12 14:44:10 +02:00
|
|
|
isLoading: PropTypes.bool,
|
|
|
|
hasMore: PropTypes.bool,
|
2018-03-16 19:54:00 +01:00
|
|
|
withReplies: PropTypes.bool,
|
2019-04-09 05:02:48 +02:00
|
|
|
isAccount: PropTypes.bool,
|
2020-09-10 00:07:19 +02:00
|
|
|
suspended: PropTypes.bool,
|
2022-05-10 09:44:35 +02:00
|
|
|
hidden: PropTypes.bool,
|
2020-06-14 22:29:40 +02:00
|
|
|
remote: PropTypes.bool,
|
|
|
|
remoteUrl: PropTypes.string,
|
2019-07-19 09:25:22 +02:00
|
|
|
multiColumn: PropTypes.bool,
|
2017-05-12 14:44:10 +02:00
|
|
|
};
|
2016-10-09 20:18:54 +02:00
|
|
|
|
2021-09-26 05:46:13 +02:00
|
|
|
_load () {
|
|
|
|
const { accountId, withReplies, dispatch } = this.props;
|
2018-03-16 20:29:42 +01:00
|
|
|
|
2021-09-26 05:46:13 +02:00
|
|
|
dispatch(fetchAccount(accountId));
|
2021-11-26 05:58:18 +01:00
|
|
|
|
2018-05-27 17:42:54 +02:00
|
|
|
if (!withReplies) {
|
2021-09-26 05:46:13 +02:00
|
|
|
dispatch(expandAccountFeaturedTimeline(accountId));
|
|
|
|
}
|
|
|
|
dispatch(expandAccountTimeline(accountId, { withReplies }));
|
|
|
|
}
|
|
|
|
|
|
|
|
componentDidMount () {
|
|
|
|
const { params: { acct }, accountId, dispatch } = this.props;
|
2021-09-28 13:24:34 +02:00
|
|
|
|
2021-09-26 05:46:13 +02:00
|
|
|
if (accountId) {
|
|
|
|
this._load();
|
|
|
|
} else {
|
|
|
|
dispatch(lookupAccount(acct));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
componentDidUpdate (prevProps) {
|
|
|
|
const { params: { acct }, accountId, dispatch } = this.props;
|
|
|
|
|
|
|
|
if (prevProps.accountId !== accountId && accountId) {
|
|
|
|
this._load();
|
|
|
|
} else if (prevProps.params.acct !== acct) {
|
|
|
|
dispatch(lookupAccount(acct));
|
2018-05-27 17:42:54 +02:00
|
|
|
}
|
2017-04-21 20:05:35 +02:00
|
|
|
}
|
2016-10-09 20:18:54 +02:00
|
|
|
|
2017-05-12 14:44:10 +02:00
|
|
|
componentWillReceiveProps (nextProps) {
|
2021-09-26 05:46:13 +02:00
|
|
|
const { dispatch } = this.props;
|
|
|
|
|
2018-03-16 19:54:00 +01:00
|
|
|
if ((nextProps.params.accountId !== this.props.params.accountId && nextProps.params.accountId) || nextProps.withReplies !== this.props.withReplies) {
|
2021-09-26 05:46:13 +02:00
|
|
|
dispatch(fetchAccount(nextProps.params.accountId));
|
2021-11-26 05:58:18 +01:00
|
|
|
|
2018-05-27 17:42:54 +02:00
|
|
|
if (!nextProps.withReplies) {
|
2021-09-26 05:46:13 +02:00
|
|
|
dispatch(expandAccountFeaturedTimeline(nextProps.params.accountId));
|
2018-05-27 17:42:54 +02:00
|
|
|
}
|
2021-11-26 05:58:18 +01:00
|
|
|
|
2021-09-26 05:46:13 +02:00
|
|
|
dispatch(expandAccountTimeline(nextProps.params.accountId, { withReplies: nextProps.params.withReplies }));
|
2016-10-09 20:18:54 +02:00
|
|
|
}
|
2017-04-21 20:05:35 +02:00
|
|
|
}
|
2016-10-09 20:18:54 +02:00
|
|
|
|
2019-03-08 20:34:31 +01:00
|
|
|
handleHeaderClick = () => {
|
|
|
|
this.column.scrollTop();
|
|
|
|
}
|
|
|
|
|
2018-05-27 19:10:37 +02:00
|
|
|
handleLoadMore = maxId => {
|
2021-09-26 05:46:13 +02:00
|
|
|
this.props.dispatch(expandAccountTimeline(this.props.accountId, { maxId, withReplies: this.props.withReplies }));
|
2017-04-21 20:05:35 +02:00
|
|
|
}
|
2016-10-09 20:18:54 +02:00
|
|
|
|
2019-03-08 20:34:31 +01:00
|
|
|
setRef = c => {
|
|
|
|
this.column = c;
|
|
|
|
}
|
|
|
|
|
2016-10-09 20:18:54 +02:00
|
|
|
render () {
|
2022-05-10 09:44:35 +02:00
|
|
|
const { accountId, statusIds, featuredStatusIds, isLoading, hasMore, suspended, isAccount, hidden, multiColumn, remote, remoteUrl } = this.props;
|
2019-04-09 05:02:48 +02:00
|
|
|
|
|
|
|
if (!isAccount) {
|
|
|
|
return (
|
|
|
|
<Column>
|
2019-10-07 04:33:31 +02:00
|
|
|
<ColumnBackButton multiColumn={multiColumn} />
|
2019-04-09 05:02:48 +02:00
|
|
|
<MissingIndicator />
|
|
|
|
</Column>
|
|
|
|
);
|
|
|
|
}
|
2016-10-24 17:11:02 +02:00
|
|
|
|
2017-01-31 22:34:33 +01:00
|
|
|
if (!statusIds && isLoading) {
|
2017-01-30 21:40:55 +01:00
|
|
|
return (
|
|
|
|
<Column>
|
|
|
|
<LoadingIndicator />
|
|
|
|
</Column>
|
|
|
|
);
|
2016-10-24 17:11:02 +02:00
|
|
|
}
|
2016-10-09 20:18:54 +02:00
|
|
|
|
2020-06-14 22:29:40 +02:00
|
|
|
let emptyMessage;
|
|
|
|
|
2022-05-10 09:44:35 +02:00
|
|
|
const forceEmptyState = suspended || hidden;
|
|
|
|
|
2020-09-10 00:07:19 +02:00
|
|
|
if (suspended) {
|
2020-12-14 09:08:09 +01:00
|
|
|
emptyMessage = <FormattedMessage id='empty_column.account_suspended' defaultMessage='Account suspended' />;
|
2022-05-10 09:44:35 +02:00
|
|
|
} else if (hidden) {
|
|
|
|
emptyMessage = <LimitedAccountHint accountId={accountId} />;
|
2020-09-10 00:07:19 +02:00
|
|
|
} else if (remote && statusIds.isEmpty()) {
|
2020-06-14 22:29:40 +02:00
|
|
|
emptyMessage = <RemoteHint url={remoteUrl} />;
|
|
|
|
} else {
|
2022-05-03 10:59:23 +02:00
|
|
|
emptyMessage = <FormattedMessage id='empty_column.account_timeline' defaultMessage='No posts found' />;
|
2020-06-14 22:29:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const remoteMessage = remote ? <RemoteHint url={remoteUrl} /> : null;
|
|
|
|
|
2017-01-30 21:40:55 +01:00
|
|
|
return (
|
2019-03-08 20:34:31 +01:00
|
|
|
<Column ref={this.setRef} name='account'>
|
2019-08-01 19:17:17 +02:00
|
|
|
<ProfileColumnHeader onClick={this.handleHeaderClick} multiColumn={multiColumn} />
|
2017-01-30 21:40:55 +01:00
|
|
|
|
|
|
|
<StatusList
|
2022-05-10 09:44:35 +02:00
|
|
|
prepend={<HeaderContainer accountId={this.props.accountId} hideTabs={forceEmptyState} />}
|
2018-11-09 16:47:50 +01:00
|
|
|
alwaysPrepend
|
2020-06-14 22:29:40 +02:00
|
|
|
append={remoteMessage}
|
2017-04-24 04:49:08 +02:00
|
|
|
scrollKey='account_timeline'
|
2022-05-10 09:44:35 +02:00
|
|
|
statusIds={forceEmptyState ? emptyList : statusIds}
|
2018-03-16 20:29:42 +01:00
|
|
|
featuredStatusIds={featuredStatusIds}
|
2017-01-30 21:40:55 +01:00
|
|
|
isLoading={isLoading}
|
2022-05-10 09:44:35 +02:00
|
|
|
hasMore={!forceEmptyState && hasMore}
|
2018-05-27 17:46:48 +02:00
|
|
|
onLoadMore={this.handleLoadMore}
|
2020-06-14 22:29:40 +02:00
|
|
|
emptyMessage={emptyMessage}
|
2019-07-19 09:25:22 +02:00
|
|
|
bindToDocument={!multiColumn}
|
2020-01-23 21:32:00 +01:00
|
|
|
timelineId='account'
|
2017-01-30 21:40:55 +01:00
|
|
|
/>
|
|
|
|
</Column>
|
|
|
|
);
|
2016-10-09 20:18:54 +02:00
|
|
|
}
|
|
|
|
|
2017-04-21 20:05:35 +02:00
|
|
|
}
|