gab-social/app/javascript/gabsocial/components/profile_navigation_bar.js

45 lines
1.3 KiB
JavaScript
Raw Normal View History

import React from 'react'
import PropTypes from 'prop-types'
2020-05-09 03:17:19 +01:00
import BackButton from './back_button'
import Heading from './heading'
class ProfileNavigationBar extends React.PureComponent {
2020-05-09 03:17:19 +01:00
render() {
const { titleHTML } = this.props
2020-05-09 03:17:19 +01:00
return (
<div className={[_s._, _s.z4, _s.minH53PX, _s.w100PC].join(' ')}>
<div className={[_s._, _s.minH53PX, _s.bgNavigation, _s.aiCenter, _s.z3, _s.top0, _s.right0, _s.left0, _s.posFixed].join(' ')} >
2020-05-09 03:17:19 +01:00
<div className={[_s._, _s.flexRow, _s.saveAreaInsetPT, _s.saveAreaInsetPL, _s.saveAreaInsetPR, _s.w100PC].join(' ')}>
2020-05-09 03:17:19 +01:00
<BackButton
className={[_s.minH53PX, _s.pl10, _s.pr10].join(' ')}
2020-05-10 04:26:58 +01:00
iconSize='18px'
2020-05-09 03:17:19 +01:00
iconClassName={[_s.mr5, _s.fillNavigation].join(' ')}
/>
<div className={[_s._, _s.minH53PX, _s.jcCenter, _s.mrAuto].join(' ')}>
2020-05-09 03:17:19 +01:00
<Heading size='h1'>
<span className={[_s.textOverflowEllipsis, _s.colorNavigation].join(' ')}>
<div dangerouslySetInnerHTML={{ __html: titleHTML }} />
2020-05-09 03:17:19 +01:00
</span>
</Heading>
</div>
</div>
</div>
</div>
)
}
}
ProfileNavigationBar.propTypes = {
titleHTML: PropTypes.string,
showBackBtn: PropTypes.bool,
}
export default ProfileNavigationBar