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

211 lines
6.7 KiB
JavaScript
Raw Normal View History

2020-02-21 00:57:29 +00:00
import { Fragment } from 'react'
2020-05-02 07:25:55 +01:00
import { injectIntl, defineMessages } from 'react-intl'
2020-02-21 00:57:29 +00:00
import { NavLink } from 'react-router-dom'
import ImmutablePropTypes from 'react-immutable-proptypes'
import ImmutablePureComponent from 'react-immutable-pure-component'
2020-04-02 04:17:21 +01:00
import classNames from 'classnames/bind'
2020-03-25 03:08:43 +00:00
import { openPopover } from '../actions/popover'
import { openModal } from '../actions/modal'
2020-04-22 06:00:11 +01:00
import { me } from '../initial_state'
2020-02-21 00:57:29 +00:00
import RelativeTimestamp from './relative_timestamp'
import DisplayName from './display_name'
import Text from './text'
import DotTextSeperator from './dot_text_seperator'
import Icon from './icon'
import Button from './button'
import Avatar from './avatar'
2020-05-02 07:25:55 +01:00
const messages = defineMessages({
2020-05-04 19:44:37 +01:00
edited: { id: 'status.edited', defaultMessage: 'Edited' },
2020-05-02 07:25:55 +01:00
public_short: { id: 'privacy.public.short', defaultMessage: 'Public' },
public_long: { id: 'privacy.public.long', defaultMessage: 'Visible for anyone on or off Gab' },
unlisted_short: { id: 'privacy.unlisted.short', defaultMessage: 'Unlisted' },
unlisted_long: { id: 'privacy.unlisted.long', defaultMessage: 'Do not show in public timelines' },
private_long: { id: 'privacy.private.long', defaultMessage: 'Visible for your followers only' },
})
2020-04-02 04:17:21 +01:00
const cx = classNames.bind(_s)
2020-03-26 03:11:32 +00:00
const mapDispatchToProps = (dispatch) => ({
2020-03-27 22:57:03 +00:00
onOpenStatusRevisionsPopover(status) {
dispatch(openModal('STATUS_REVISIONS', {
status,
}))
},
2020-03-26 03:11:32 +00:00
onOpenStatusOptionsPopover(targetRef, status) {
dispatch(openPopover('STATUS_OPTIONS', {
targetRef,
status,
position: 'top',
}))
},
})
2020-03-25 03:08:43 +00:00
export default
2020-05-02 07:25:55 +01:00
@injectIntl
2020-03-26 03:11:32 +00:00
@connect(null, mapDispatchToProps)
2020-03-25 03:08:43 +00:00
class StatusHeader extends ImmutablePureComponent {
2020-02-21 00:57:29 +00:00
static propTypes = {
2020-05-02 07:25:55 +01:00
intl: PropTypes.object.isRequired,
2020-02-21 00:57:29 +00:00
status: ImmutablePropTypes.map,
2020-03-27 22:57:03 +00:00
onOpenStatusRevisionsPopover: PropTypes.func.isRequired,
2020-03-26 03:11:32 +00:00
onOpenStatusOptionsPopover: PropTypes.func.isRequired,
2020-04-02 04:17:21 +01:00
reduced: PropTypes.bool,
2020-02-21 00:57:29 +00:00
}
2020-03-26 03:11:32 +00:00
handleOpenStatusOptionsPopover = () => {
this.props.onOpenStatusOptionsPopover(this.statusOptionsButton, this.props.status)
2020-02-21 00:57:29 +00:00
}
2020-03-26 03:11:32 +00:00
handleOpenStatusEdits = () => {
2020-03-27 22:57:03 +00:00
this.props.onOpenStatusRevisionsPopover(this.props.status)
2020-02-21 00:57:29 +00:00
}
2020-03-25 03:08:43 +00:00
setStatusOptionsButton = n => {
this.statusOptionsButton = n
2020-02-21 00:57:29 +00:00
}
render() {
2020-05-02 07:25:55 +01:00
const {
intl,
reduced,
status,
} = this.props
2020-02-21 00:57:29 +00:00
2020-04-24 04:17:27 +01:00
const statusUrl = `/${status.getIn(['account', 'acct'])}/posts/${status.get('id')}`
2020-02-21 00:57:29 +00:00
2020-04-02 04:17:21 +01:00
const containerClasses = cx({
default: 1,
px15: 1,
py10: !reduced,
pb10: reduced,
})
const avatarSize = reduced ? 20 : 46
2020-05-02 07:25:55 +01:00
const visibility = status.get('visibility')
let visibilityIcon
let visibilityText
if (visibility === 'private') {
visibilityIcon = 'lock-filled'
visibilityText = intl.formatMessage(messages.private_long)
} else if (visibility === 'unlisted') {
visibilityIcon = 'unlock-filled'
visibilityText = `${intl.formatMessage(messages.unlisted_short)} - ${intl.formatMessage(messages.unlisted_long)}`
} else {
visibilityIcon = 'globe'
visibilityText = `${intl.formatMessage(messages.public_short)} - ${intl.formatMessage(messages.public_long)}`
}
2020-04-02 04:17:21 +01:00
2020-02-21 00:57:29 +00:00
return (
2020-04-02 04:17:21 +01:00
<div className={containerClasses}>
2020-03-11 23:56:18 +00:00
<div className={[_s.default, _s.flexRow, _s.mt5].join(' ')}>
2020-02-21 00:57:29 +00:00
2020-04-02 04:17:21 +01:00
{
!reduced &&
<NavLink
to={`/${status.getIn(['account', 'acct'])}`}
title={status.getIn(['account', 'acct'])}
className={[_s.default, _s.mr10].join(' ')}
>
<Avatar account={status.get('account')} size={avatarSize} />
</NavLink>
}
2020-02-21 00:57:29 +00:00
2020-03-11 23:56:18 +00:00
<div className={[_s.default, _s.alignItemsStart, _s.flexGrow1, _s.mt5].join(' ')}>
2020-02-21 00:57:29 +00:00
<div className={[_s.default, _s.flexRow, _s.width100PC, _s.alignItemsStart].join(' ')}>
<NavLink
className={[_s.default, _s.flexRow, _s.alignItemsStart, _s.noUnderline].join(' ')}
to={`/${status.getIn(['account', 'acct'])}`}
title={status.getIn(['account', 'acct'])}
>
2020-04-24 04:17:27 +01:00
<DisplayName account={status.get('account')} noRelationship />
2020-02-21 00:57:29 +00:00
</NavLink>
2020-04-02 04:17:21 +01:00
{
2020-04-22 06:00:11 +01:00
!reduced && !!me &&
2020-04-02 04:17:21 +01:00
<Button
2020-04-23 07:13:29 +01:00
isText
2020-04-02 04:17:21 +01:00
backgroundColor='none'
color='none'
icon='ellipsis'
2020-04-23 07:13:29 +01:00
iconSize='20px'
2020-04-29 23:32:49 +01:00
iconClassName={_s.fillSecondary}
2020-04-24 04:17:27 +01:00
className={_s.mlAuto}
2020-04-02 04:17:21 +01:00
onClick={this.handleOpenStatusOptionsPopover}
buttonRef={this.setStatusOptionsButton}
/>
}
2020-02-21 00:57:29 +00:00
</div>
<div className={[_s.default, _s.flexRow, _s.alignItemsCenter, _s.lineHeight15].join(' ')}>
<Button
2020-04-23 07:13:29 +01:00
isText
2020-02-21 00:57:29 +00:00
underlineOnHover
backgroundColor='none'
color='none'
to={statusUrl}
>
<Text size='small' color='secondary'>
<RelativeTimestamp timestamp={status.get('created_at')} />
</Text>
</Button>
<DotTextSeperator />
2020-05-02 07:25:55 +01:00
<span title={visibilityText} className={[_s.default, _s.displayInline, _s.ml5].join(' ')}>
<Icon id={visibilityIcon} size='12px' className={[_s.default, _s.fillSecondary].join(' ')} />
</span>
2020-02-21 00:57:29 +00:00
{
!!status.get('group') &&
<Fragment>
<DotTextSeperator />
<Button
2020-04-23 07:13:29 +01:00
isText
2020-02-21 00:57:29 +00:00
underlineOnHover
backgroundColor='none'
color='none'
to={`/groups/${status.getIn(['group', 'id'])}`}
2020-03-11 23:56:18 +00:00
className={_s.ml5}
2020-02-21 00:57:29 +00:00
>
<Text size='small' color='secondary'>
{status.getIn(['group', 'title'])}
</Text>
</Button>
</Fragment>
}
{
status.get('revised_at') !== null &&
<Fragment>
<DotTextSeperator />
<Button
2020-04-23 07:13:29 +01:00
isText
2020-02-21 00:57:29 +00:00
underlineOnHover
backgroundColor='none'
color='none'
onClick={this.handleOpenStatusEdits}
2020-03-11 23:56:18 +00:00
className={_s.ml5}
2020-02-21 00:57:29 +00:00
>
<Text size='small' color='secondary'>
2020-05-04 19:44:37 +01:00
{intl.formatMessage(messages.edited)}
2020-02-21 00:57:29 +00:00
</Text>
</Button>
</Fragment>
}
</div>
</div>
</div>
</div>
)
}
}