48 lines
1.3 KiB
JavaScript
48 lines
1.3 KiB
JavaScript
import { Fragment } from 'react'
|
|
import { NavLink } from 'react-router-dom'
|
|
import ImmutablePropTypes from 'react-immutable-proptypes'
|
|
import ImmutablePureComponent from 'react-immutable-pure-component'
|
|
import { me } from '../initial_state'
|
|
import { makeGetAccount } from '../selectors'
|
|
import GabLogo from '../assets/gab_logo'
|
|
import SidebarSectionItem from './sidebar_section_item'
|
|
|
|
const mapStateToProps = state => {
|
|
const getAccount = makeGetAccount()
|
|
|
|
return {
|
|
account: getAccount(state, me),
|
|
}
|
|
}
|
|
|
|
export default
|
|
@connect(mapStateToProps)
|
|
class SidebarHeader extends ImmutablePureComponent {
|
|
|
|
static propTypes = {
|
|
account: ImmutablePropTypes.map,
|
|
}
|
|
|
|
render() {
|
|
const { account } = this.props
|
|
|
|
return (
|
|
<Fragment>
|
|
<h1 className={[_s.default].join(' ')}>
|
|
<NavLink to='/' aria-label='Gab' className={[_s.default, _s.noSelect, _s.noUnderline, _s.height50PX, _s.justifyContentCenter, _s.cursorPointer, _s.paddingHorizontal10PX].join(' ')}>
|
|
<GabLogo />
|
|
</NavLink>
|
|
</h1>
|
|
|
|
{
|
|
(!!me && !!account) &&
|
|
<SidebarSectionItem
|
|
image={account.get('avatar')}
|
|
title={account.get('acct')}
|
|
to={`/${account.get('acct')}`}
|
|
/>
|
|
}
|
|
</Fragment>
|
|
)
|
|
}
|
|
} |