|
@ -29,7 +29,7 @@ export default class DetailedStatus extends ImmutablePureComponent { |
|
|
}; |
|
|
}; |
|
|
|
|
|
|
|
|
handleAccountClick = (e) => { |
|
|
handleAccountClick = (e) => { |
|
|
if (e.button === 0) { |
|
|
|
|
|
|
|
|
if (e.button === 0 && !(e.ctrlKey || e.altKey || e.metaKey)) { |
|
|
e.preventDefault(); |
|
|
e.preventDefault(); |
|
|
this.context.router.history.push(`/accounts/${this.props.status.getIn(['account', 'id'])}`); |
|
|
this.context.router.history.push(`/accounts/${this.props.status.getIn(['account', 'id'])}`); |
|
|
} |
|
|
} |
|
@ -37,6 +37,15 @@ export default class DetailedStatus extends ImmutablePureComponent { |
|
|
e.stopPropagation(); |
|
|
e.stopPropagation(); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
parseClick = (e, destination) => { |
|
|
|
|
|
if (e.button === 0 && !(e.ctrlKey || e.altKey || e.metaKey)) { |
|
|
|
|
|
e.preventDefault(); |
|
|
|
|
|
this.context.router.history.push(destination); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
e.stopPropagation(); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
handleOpenVideo = (media, startTime) => { |
|
|
handleOpenVideo = (media, startTime) => { |
|
|
this.props.onOpenVideo(media, startTime); |
|
|
this.props.onOpenVideo(media, startTime); |
|
|
} |
|
|
} |
|
@ -122,6 +131,7 @@ export default class DetailedStatus extends ImmutablePureComponent { |
|
|
expanded={expanded} |
|
|
expanded={expanded} |
|
|
collapsed={false} |
|
|
collapsed={false} |
|
|
onExpandedToggle={onToggleHidden} |
|
|
onExpandedToggle={onToggleHidden} |
|
|
|
|
|
parseClick={this.parseClick} |
|
|
/> |
|
|
/> |
|
|
|
|
|
|
|
|
<div className='detailed-status__meta'> |
|
|
<div className='detailed-status__meta'> |
|
|