2016-09-22 20:58:35 +02:00
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import PureRenderMixin from 'react-addons-pure-render-mixin';
|
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
|
|
|
import {
|
|
|
|
fetchAccount,
|
|
|
|
followAccount,
|
|
|
|
unfollowAccount,
|
2016-10-03 18:49:52 +02:00
|
|
|
blockAccount,
|
|
|
|
unblockAccount,
|
2016-09-22 20:58:35 +02:00
|
|
|
fetchAccountTimeline,
|
|
|
|
expandAccountTimeline
|
|
|
|
} from '../../actions/accounts';
|
2016-10-24 17:11:02 +02:00
|
|
|
import { mentionCompose } from '../../actions/compose';
|
2016-09-22 20:58:35 +02:00
|
|
|
import Header from './components/header';
|
2016-09-23 20:23:26 +02:00
|
|
|
import {
|
2016-10-08 00:01:22 +02:00
|
|
|
getAccountTimeline,
|
|
|
|
getAccount
|
|
|
|
} from '../../selectors';
|
2016-10-06 22:47:35 +02:00
|
|
|
import LoadingIndicator from '../../components/loading_indicator';
|
2016-09-23 20:23:26 +02:00
|
|
|
import ActionBar from './components/action_bar';
|
2016-10-07 16:00:11 +02:00
|
|
|
import Column from '../ui/components/column';
|
2016-10-19 18:20:19 +02:00
|
|
|
import ColumnBackButton from '../../components/column_back_button';
|
2016-09-18 18:18:46 +02:00
|
|
|
|
2016-09-16 00:21:51 +02:00
|
|
|
const mapStateToProps = (state, props) => ({
|
2016-10-08 00:01:22 +02:00
|
|
|
account: getAccount(state, Number(props.params.accountId)),
|
2016-09-23 20:23:26 +02:00
|
|
|
me: state.getIn(['timelines', 'me'])
|
2016-09-16 00:21:51 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
const Account = React.createClass({
|
|
|
|
|
|
|
|
propTypes: {
|
|
|
|
params: React.PropTypes.object.isRequired,
|
|
|
|
dispatch: React.PropTypes.func.isRequired,
|
2016-09-18 18:18:46 +02:00
|
|
|
account: ImmutablePropTypes.map,
|
2016-10-09 20:18:54 +02:00
|
|
|
me: React.PropTypes.number.isRequired
|
2016-09-16 00:21:51 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
mixins: [PureRenderMixin],
|
|
|
|
|
|
|
|
componentWillMount () {
|
2016-09-18 18:18:46 +02:00
|
|
|
this.props.dispatch(fetchAccount(Number(this.props.params.accountId)));
|
2016-09-16 00:21:51 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
componentWillReceiveProps(nextProps) {
|
|
|
|
if (nextProps.params.accountId !== this.props.params.accountId && nextProps.params.accountId) {
|
2016-09-18 18:44:52 +02:00
|
|
|
this.props.dispatch(fetchAccount(Number(nextProps.params.accountId)));
|
2016-09-16 00:21:51 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2016-09-18 18:18:46 +02:00
|
|
|
handleFollow () {
|
2016-10-02 15:14:26 +02:00
|
|
|
if (this.props.account.getIn(['relationship', 'following'])) {
|
|
|
|
this.props.dispatch(unfollowAccount(this.props.account.get('id')));
|
|
|
|
} else {
|
|
|
|
this.props.dispatch(followAccount(this.props.account.get('id')));
|
|
|
|
}
|
2016-09-16 00:21:51 +02:00
|
|
|
},
|
|
|
|
|
2016-10-03 18:49:52 +02:00
|
|
|
handleBlock () {
|
|
|
|
if (this.props.account.getIn(['relationship', 'blocking'])) {
|
|
|
|
this.props.dispatch(unblockAccount(this.props.account.get('id')));
|
|
|
|
} else {
|
|
|
|
this.props.dispatch(blockAccount(this.props.account.get('id')));
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2016-10-24 17:11:02 +02:00
|
|
|
handleMention () {
|
|
|
|
this.props.dispatch(mentionCompose(this.props.account));
|
|
|
|
},
|
|
|
|
|
2016-09-16 00:21:51 +02:00
|
|
|
render () {
|
2016-10-09 20:18:54 +02:00
|
|
|
const { account, me } = this.props;
|
2016-09-16 00:21:51 +02:00
|
|
|
|
|
|
|
if (account === null) {
|
2016-10-07 16:00:11 +02:00
|
|
|
return (
|
|
|
|
<Column>
|
|
|
|
<LoadingIndicator />
|
|
|
|
</Column>
|
|
|
|
);
|
2016-09-16 00:21:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
2016-10-07 16:00:11 +02:00
|
|
|
<Column>
|
2016-10-19 18:20:19 +02:00
|
|
|
<ColumnBackButton />
|
2016-10-16 17:09:00 +02:00
|
|
|
<Header account={account} me={me} />
|
2016-10-09 20:18:54 +02:00
|
|
|
|
2016-10-24 17:11:02 +02:00
|
|
|
<ActionBar account={account} me={me} onFollow={this.handleFollow} onBlock={this.handleBlock} onMention={this.handleMention} />
|
2016-10-09 20:18:54 +02:00
|
|
|
|
2016-10-16 17:09:00 +02:00
|
|
|
{this.props.children}
|
2016-10-07 16:00:11 +02:00
|
|
|
</Column>
|
2016-09-16 00:21:51 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
export default connect(mapStateToProps)(Account);
|