gab-social/app/javascript/gabsocial/layouts/profile_layout.js

135 lines
4.6 KiB
JavaScript
Raw Normal View History

2020-02-28 15:20:47 +00:00
import ImmutablePropTypes from 'react-immutable-proptypes'
import ImmutablePureComponent from 'react-immutable-pure-component'
2020-05-09 03:17:19 +01:00
import { BREAKPOINT_EXTRA_SMALL } from '../constants'
2020-02-24 21:56:07 +00:00
import Sticky from 'react-stickynode'
2020-05-09 03:17:19 +01:00
import { me } from '../initial_state'
import LinkFooter from '../components/link_footer'
import ProfileStatsPanel from '../components/panel/profile_stats_panel'
import ProfileInfoPanel from '../components/panel/profile_info_panel'
import MediaGalleryPanel from '../components/panel/media_gallery_panel'
2020-04-29 23:32:49 +01:00
import NavigationBar from '../components/navigation_bar'
2020-05-09 03:17:19 +01:00
import FooterBar from '../components/footer_bar'
2020-05-03 06:22:49 +01:00
import ProfileHeader from '../components/profile_header'
2020-05-14 07:03:22 +01:00
import FloatingActionButton from '../components/floating_action_button'
2020-05-09 03:17:19 +01:00
import ProfileNavigationBar from '../components/profile_navigation_bar'
import LoggedOutNavigationBar from '../components/logged_out_navigation_bar'
import Responsive from '../features/ui/util/responsive_component';
import Divider from '../components/divider';
2020-03-14 17:31:29 +00:00
2020-02-28 15:20:47 +00:00
export default class ProfileLayout extends ImmutablePureComponent {
2020-04-30 05:34:50 +01:00
2020-02-24 21:56:07 +00:00
static propTypes = {
2020-02-28 15:20:47 +00:00
account: ImmutablePropTypes.map,
2020-05-03 06:22:49 +01:00
children: PropTypes.node.isRequired,
titleHTML: PropTypes.string,
2020-05-10 04:26:58 +01:00
unavailable: PropTypes.bool,
2020-02-24 21:56:07 +00:00
}
render() {
2020-04-11 23:29:19 +01:00
const {
account,
children,
titleHTML,
2020-05-10 04:26:58 +01:00
unavailable,
2020-04-11 23:29:19 +01:00
} = this.props
2020-02-28 15:20:47 +00:00
2020-02-24 21:56:07 +00:00
return (
2020-04-29 23:32:49 +01:00
<div className={[_s.default, _s.width100PC, _s.heightMin100VH, _s.bgTertiary].join(' ')}>
2020-05-09 03:17:19 +01:00
<Responsive max={BREAKPOINT_EXTRA_SMALL}>
{
!!me &&
<ProfileNavigationBar titleHTML={titleHTML} />
2020-05-09 03:17:19 +01:00
}
{
!me &&
<LoggedOutNavigationBar />
}
<main role='main' className={[_s.default, _s.width100PC].join(' ')}>
<div className={[_s.default, _s.width100PC, _s.flexRow, _s.pb15].join(' ')}>
<div className={[_s.default, _s.width100PC, _s.flexRow, _s.justifyContentSpaceBetween].join(' ')}>
<div className={[_s.default, _s.z1, _s.width100PC, _s.alignItemsCenter].join(' ')}>
<ProfileHeader account={account}>
<ProfileInfoPanel account={account} noPanel />
<Divider isSmall />
<ProfileStatsPanel account={account} noPanel />
</ProfileHeader>
<div className={[_s.default, _s.width100PC, , _s.flexRow, _s.justifyContentEnd, _s.py15].join(' ')}>
<div className={[_s.default, _s.width100PC, _s.z1].join(' ')}>
<div className={_s.default}>
{children}
</div>
</div>
</div>
2020-04-29 23:32:49 +01:00
2020-05-09 03:17:19 +01:00
</div>
</div>
2020-04-29 23:32:49 +01:00
2020-03-14 17:31:29 +00:00
2020-05-09 03:17:19 +01:00
</div>
2020-04-29 23:32:49 +01:00
2020-05-14 07:03:22 +01:00
<FloatingActionButton />
2020-05-09 03:17:19 +01:00
</main>
2020-05-14 07:03:22 +01:00
<FooterBar />
2020-05-09 03:17:19 +01:00
</Responsive>
<Responsive min={BREAKPOINT_EXTRA_SMALL}>
{
me &&
<NavigationBar />
}
{
!me &&
<LoggedOutNavigationBar />
}
<main role='main' className={[_s.default, _s.width100PC].join(' ')}>
<div className={[_s.default, _s.width100PC, _s.flexRow, _s.pb15].join(' ')}>
<div className={[_s.default, _s.width100PC, _s.flexRow, _s.justifyContentSpaceBetween].join(' ')}>
<div className={[_s.default, _s.z1, _s.width100PC, _s.alignItemsCenter].join(' ')}>
<ProfileHeader account={account} />
<div className={[_s.default, _s.width1015PX, , _s.flexRow, _s.justifyContentEnd, _s.py15].join(' ')}>
<div className={[_s.default, _s.width340PX, _s.mr15].join(' ')}>
<Sticky top={63} enabled>
<div className={[_s.default, _s.width340PX].join(' ')}>
<ProfileStatsPanel account={account} />
<ProfileInfoPanel account={account} />
2020-05-10 04:26:58 +01:00
{ !unavailable && <MediaGalleryPanel account={account} /> }
2020-05-09 03:17:19 +01:00
<LinkFooter />
</div>
</Sticky>
</div>
<div className={[_s.default, _s.width645PX, _s.z1].join(' ')}>
<div className={_s.default}>
{children}
2020-04-29 23:32:49 +01:00
</div>
</div>
2020-04-11 23:29:19 +01:00
</div>
2020-04-29 23:32:49 +01:00
2020-05-09 03:17:19 +01:00
</div>
2020-04-11 23:29:19 +01:00
</div>
2020-02-24 21:56:07 +00:00
2020-04-29 23:32:49 +01:00
2020-05-09 03:17:19 +01:00
</div>
2020-02-24 21:56:07 +00:00
<FloatingActionButton isDesktop />
2020-05-09 03:17:19 +01:00
</main>
</Responsive>
2020-04-29 23:32:49 +01:00
</div>
2020-02-24 21:56:07 +00:00
)
}
2020-05-09 03:17:19 +01:00
}