2016-09-24 03:23:26 +09:00
|
|
|
import PureRenderMixin from 'react-addons-pure-render-mixin';
|
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
2016-10-10 05:19:15 +09:00
|
|
|
import DropdownMenu from '../../../components/dropdown_menu';
|
2016-09-24 03:23:26 +09:00
|
|
|
|
|
|
|
const ActionBar = React.createClass({
|
|
|
|
|
|
|
|
propTypes: {
|
|
|
|
account: ImmutablePropTypes.map.isRequired,
|
|
|
|
me: React.PropTypes.number.isRequired,
|
2016-10-04 01:49:52 +09:00
|
|
|
onFollow: React.PropTypes.func.isRequired,
|
2016-10-25 00:11:02 +09:00
|
|
|
onBlock: React.PropTypes.func.isRequired,
|
|
|
|
onMention: React.PropTypes.func.isRequired
|
2016-09-24 03:23:26 +09:00
|
|
|
},
|
|
|
|
|
|
|
|
mixins: [PureRenderMixin],
|
|
|
|
|
|
|
|
render () {
|
|
|
|
const { account, me } = this.props;
|
2016-10-02 22:14:26 +09:00
|
|
|
|
2016-10-10 05:19:15 +09:00
|
|
|
let menu = [];
|
2016-09-24 03:23:26 +09:00
|
|
|
|
2016-10-25 00:11:02 +09:00
|
|
|
menu.push({ text: 'Mention', action: this.props.onMention });
|
|
|
|
|
2016-09-24 03:23:26 +09:00
|
|
|
if (account.get('id') === me) {
|
2016-10-14 09:45:20 +09:00
|
|
|
menu.push({ text: 'Edit profile', href: '/settings/profile' });
|
2016-10-10 05:19:15 +09:00
|
|
|
} else if (account.getIn(['relationship', 'blocking'])) {
|
|
|
|
menu.push({ text: 'Unblock', action: this.props.onBlock });
|
|
|
|
} else if (account.getIn(['relationship', 'following'])) {
|
|
|
|
menu.push({ text: 'Unfollow', action: this.props.onFollow });
|
|
|
|
menu.push({ text: 'Block', action: this.props.onBlock });
|
|
|
|
} else {
|
|
|
|
menu.push({ text: 'Follow', action: this.props.onFollow });
|
|
|
|
menu.push({ text: 'Block', action: this.props.onBlock });
|
2016-09-24 03:23:26 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
2016-10-10 05:19:15 +09:00
|
|
|
<div style={{ borderTop: '1px solid #363c4b', borderBottom: '1px solid #363c4b', lineHeight: '36px', overflow: 'hidden', flex: '0 0 auto', display: 'flex' }}>
|
2016-10-25 00:11:02 +09:00
|
|
|
<div style={{ padding: '10px', flex: '1 1 auto' }}>
|
|
|
|
<DropdownMenu items={menu} icon='bars' size={24} />
|
|
|
|
</div>
|
|
|
|
|
2016-10-10 05:19:15 +09:00
|
|
|
<div style={{ flex: '1 1 auto', display: 'flex', lineHeight: '18px' }}>
|
2016-10-25 00:11:02 +09:00
|
|
|
<div style={{ overflow: 'hidden', width: '80px', borderLeft: '1px solid #363c4b', padding: '10px', paddingRight: '5px' }}>
|
2016-10-10 05:19:15 +09:00
|
|
|
<span style={{ display: 'block', textTransform: 'uppercase', fontSize: '11px', color: '#616b86' }}>Posts</span>
|
|
|
|
<span style={{ display: 'block', fontSize: '15px', fontWeight: '500', color: '#fff' }}>{account.get('statuses_count')}</span>
|
|
|
|
</div>
|
|
|
|
|
2016-10-25 00:11:02 +09:00
|
|
|
<div style={{ overflow: 'hidden', width: '80px', borderLeft: '1px solid #363c4b', padding: '10px 5px' }}>
|
2016-10-10 05:19:15 +09:00
|
|
|
<span style={{ display: 'block', textTransform: 'uppercase', fontSize: '11px', color: '#616b86' }}>Follows</span>
|
|
|
|
<span style={{ display: 'block', fontSize: '15px', fontWeight: '500', color: '#fff' }}>{account.get('following_count')}</span>
|
|
|
|
</div>
|
|
|
|
|
2016-10-25 00:11:02 +09:00
|
|
|
<div style={{ overflow: 'hidden', width: '80px', padding: '10px 5px', borderLeft: '1px solid #363c4b' }}>
|
2016-10-10 05:19:15 +09:00
|
|
|
<span style={{ display: 'block', textTransform: 'uppercase', fontSize: '11px', color: '#616b86' }}>Followers</span>
|
|
|
|
<span style={{ display: 'block', fontSize: '15px', fontWeight: '500', color: '#fff' }}>{account.get('followers_count')}</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
2016-09-24 03:23:26 +09:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
},
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
export default ActionBar;
|