2016-09-22 11:58:35 -07: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 09:49:52 -07:00
|
|
|
blockAccount,
|
|
|
|
unblockAccount,
|
2016-09-22 11:58:35 -07:00
|
|
|
fetchAccountTimeline,
|
|
|
|
expandAccountTimeline
|
|
|
|
} from '../../actions/accounts';
|
|
|
|
import Header from './components/header';
|
2016-09-23 11:23:26 -07:00
|
|
|
import {
|
2016-10-07 15:01:22 -07:00
|
|
|
getAccountTimeline,
|
|
|
|
getAccount
|
|
|
|
} from '../../selectors';
|
2016-10-06 13:47:35 -07:00
|
|
|
import LoadingIndicator from '../../components/loading_indicator';
|
2016-09-23 11:23:26 -07:00
|
|
|
import ActionBar from './components/action_bar';
|
2016-10-07 07:00:11 -07:00
|
|
|
import Column from '../ui/components/column';
|
2016-09-18 09:18:46 -07:00
|
|
|
|
2016-09-15 15:21:51 -07:00
|
|
|
const mapStateToProps = (state, props) => ({
|
2016-10-07 15:01:22 -07:00
|
|
|
account: getAccount(state, Number(props.params.accountId)),
|
2016-09-23 11:23:26 -07:00
|
|
|
me: state.getIn(['timelines', 'me'])
|
2016-09-15 15:21:51 -07:00
|
|
|
});
|
|
|
|
|
|
|
|
const Account = React.createClass({
|
|
|
|
|
|
|
|
propTypes: {
|
|
|
|
params: React.PropTypes.object.isRequired,
|
|
|
|
dispatch: React.PropTypes.func.isRequired,
|
2016-09-18 09:18:46 -07:00
|
|
|
account: ImmutablePropTypes.map,
|
2016-10-09 11:18:54 -07:00
|
|
|
me: React.PropTypes.number.isRequired
|
2016-09-15 15:21:51 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
mixins: [PureRenderMixin],
|
|
|
|
|
|
|
|
componentWillMount () {
|
2016-09-18 09:18:46 -07:00
|
|
|
this.props.dispatch(fetchAccount(Number(this.props.params.accountId)));
|
2016-09-15 15:21:51 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
componentWillReceiveProps(nextProps) {
|
|
|
|
if (nextProps.params.accountId !== this.props.params.accountId && nextProps.params.accountId) {
|
2016-09-18 09:44:52 -07:00
|
|
|
this.props.dispatch(fetchAccount(Number(nextProps.params.accountId)));
|
2016-09-15 15:21:51 -07:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2016-09-18 09:18:46 -07:00
|
|
|
handleFollow () {
|
2016-10-02 06:14:26 -07: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-15 15:21:51 -07:00
|
|
|
},
|
|
|
|
|
2016-10-03 09:49:52 -07: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-09-15 15:21:51 -07:00
|
|
|
render () {
|
2016-10-09 11:18:54 -07:00
|
|
|
const { account, me } = this.props;
|
2016-09-15 15:21:51 -07:00
|
|
|
|
|
|
|
if (account === null) {
|
2016-10-07 07:00:11 -07:00
|
|
|
return (
|
|
|
|
<Column>
|
|
|
|
<LoadingIndicator />
|
|
|
|
</Column>
|
|
|
|
);
|
2016-09-15 15:21:51 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
2016-10-07 07:00:11 -07:00
|
|
|
<Column>
|
|
|
|
<div style={{ display: 'flex', flexDirection: 'column', 'flex': '0 0 auto', height: '100%' }}>
|
|
|
|
<Header account={account} />
|
2016-10-09 11:18:54 -07:00
|
|
|
|
2016-10-07 07:00:11 -07:00
|
|
|
<ActionBar account={account} me={me} onFollow={this.handleFollow} onBlock={this.handleBlock} />
|
2016-10-09 11:18:54 -07:00
|
|
|
|
|
|
|
{this.props.children}
|
2016-10-07 07:00:11 -07:00
|
|
|
</div>
|
|
|
|
</Column>
|
2016-09-15 15:21:51 -07:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
export default connect(mapStateToProps)(Account);
|