|
|
|
@ -30,6 +30,8 @@ const componentMap = {
|
|
|
|
|
'LIST': ListTimeline,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const shouldHideFAB = path => path.match(/^\/statuses\//);
|
|
|
|
|
|
|
|
|
|
const messages = defineMessages({
|
|
|
|
|
publish: { id: 'compose_form.publish', defaultMessage: 'Toot' },
|
|
|
|
|
});
|
|
|
|
@ -158,7 +160,7 @@ export default class ColumnsArea extends ImmutablePureComponent {
|
|
|
|
|
this.pendingIndex = null;
|
|
|
|
|
|
|
|
|
|
if (singleColumn) {
|
|
|
|
|
const floatingActionButton = this.context.router.history.location.pathname === '/statuses/new' ? null : <Link key='floating-action-button' to='/statuses/new' className='floating-action-button' aria-label={intl.formatMessage(messages.publish)}><i className='fa fa-pencil' /></Link>;
|
|
|
|
|
const floatingActionButton = shouldHideFAB(this.context.router.history.location.pathname) ? null : <Link key='floating-action-button' to='/statuses/new' className='floating-action-button' aria-label={intl.formatMessage(messages.publish)}><i className='fa fa-pencil' /></Link>;
|
|
|
|
|
|
|
|
|
|
return columnIndex !== -1 ? [
|
|
|
|
|
<ReactSwipeableViews key='content' index={columnIndex} onChangeIndex={this.handleSwipe} onTransitionEnd={this.handleAnimationEnd} animateTransitions={shouldAnimate} springConfig={{ duration: '400ms', delay: '0s', easeFunction: 'ease' }} style={{ height: '100%' }}>
|
|
|
|
|