2017-06-03 19:39:38 -04:00
import React from 'react' ;
import PropTypes from 'prop-types' ;
import classNames from 'classnames' ;
import { FormattedMessage } from 'react-intl' ;
2017-06-23 13:36:54 -04:00
export default class ColumnHeader extends React . PureComponent {
2017-06-03 19:39:38 -04:00
static contextTypes = {
router : PropTypes . object ,
} ;
static propTypes = {
2017-07-09 09:02:26 -04:00
title : PropTypes . node . isRequired ,
2017-06-03 19:39:38 -04:00
icon : PropTypes . string . isRequired ,
active : PropTypes . bool ,
multiColumn : PropTypes . bool ,
2017-06-05 11:10:40 -04:00
showBackButton : PropTypes . bool ,
2017-06-03 19:39:38 -04:00
children : PropTypes . node ,
pinned : PropTypes . bool ,
onPin : PropTypes . func ,
onMove : PropTypes . func ,
onClick : PropTypes . func ,
} ;
state = {
collapsed : true ,
animating : false ,
} ;
handleToggleClick = ( e ) => {
e . stopPropagation ( ) ;
this . setState ( { collapsed : ! this . state . collapsed , animating : true } ) ;
}
handleTitleClick = ( ) => {
this . props . onClick ( ) ;
}
handleMoveLeft = ( ) => {
this . props . onMove ( - 1 ) ;
}
handleMoveRight = ( ) => {
this . props . onMove ( 1 ) ;
}
handleBackClick = ( ) => {
2017-07-07 02:27:52 -04:00
// if history is exhausted, or we would leave mastodon, just go to root.
if ( window . history && ( window . history . length === 1 || window . history . length === window . _mastoInitialHistoryLen ) ) {
this . context . router . history . push ( '/' ) ;
} else {
this . context . router . history . goBack ( ) ;
}
2017-06-03 19:39:38 -04:00
}
handleTransitionEnd = ( ) => {
this . setState ( { animating : false } ) ;
}
render ( ) {
2017-06-05 11:10:40 -04:00
const { title , icon , active , children , pinned , onPin , multiColumn , showBackButton } = this . props ;
2017-06-03 19:39:38 -04:00
const { collapsed , animating } = this . state ;
2017-06-12 14:02:17 -04:00
const wrapperClassName = classNames ( 'column-header__wrapper' , {
'active' : active ,
} ) ;
2017-06-03 19:39:38 -04:00
const buttonClassName = classNames ( 'column-header' , {
'active' : active ,
} ) ;
const collapsibleClassName = classNames ( 'column-header__collapsible' , {
'collapsed' : collapsed ,
'animating' : animating ,
} ) ;
const collapsibleButtonClassName = classNames ( 'column-header__button' , {
'active' : ! collapsed ,
} ) ;
let extraContent , pinButton , moveButtons , backButton , collapseButton ;
if ( children ) {
extraContent = (
< div key = 'extra-content' className = 'column-header__collapsible__extra' >
{ children }
< / d i v >
) ;
}
if ( multiColumn && pinned ) {
pinButton = < button key = 'pin-button' className = 'text-btn column-header__setting-btn' onClick = { onPin } > < i className = 'fa fa fa-times' / > < FormattedMessage id = 'column_header.unpin' defaultMessage = 'Unpin' / > < / b u t t o n > ;
moveButtons = (
< div key = 'move-buttons' className = 'column-header__setting-arrows' >
< button className = 'text-btn column-header__setting-btn' onClick = { this . handleMoveLeft } > < i className = 'fa fa-chevron-left' / > < / b u t t o n >
< button className = 'text-btn column-header__setting-btn' onClick = { this . handleMoveRight } > < i className = 'fa fa-chevron-right' / > < / b u t t o n >
< / d i v >
) ;
} else if ( multiColumn ) {
pinButton = < button key = 'pin-button' className = 'text-btn column-header__setting-btn' onClick = { onPin } > < i className = 'fa fa fa-plus' / > < FormattedMessage id = 'column_header.pin' defaultMessage = 'Pin' / > < / b u t t o n > ;
2017-06-05 11:10:40 -04:00
}
2017-06-03 19:39:38 -04:00
2017-06-05 11:10:40 -04:00
if ( ! pinned && ( multiColumn || showBackButton ) ) {
2017-06-03 19:39:38 -04:00
backButton = (
< button onClick = { this . handleBackClick } className = 'column-header__back-button' >
< i className = 'fa fa-fw fa-chevron-left column-back-button__icon' / >
< FormattedMessage id = 'column_back_button.label' defaultMessage = 'Back' / >
< / b u t t o n >
) ;
}
const collapsedContent = [
extraContent ,
] ;
if ( multiColumn ) {
collapsedContent . push ( moveButtons ) ;
collapsedContent . push ( pinButton ) ;
}
if ( children || multiColumn ) {
collapseButton = < button className = { collapsibleButtonClassName } onClick = { this . handleToggleClick } > < i className = 'fa fa-sliders' / > < / b u t t o n > ;
}
return (
2017-06-12 14:02:17 -04:00
< div className = { wrapperClassName } >
2017-06-03 19:39:38 -04:00
< div role = 'button heading' tabIndex = '0' className = { buttonClassName } onClick = { this . handleTitleClick } >
< i className = { ` fa fa-fw fa- ${ icon } column-header__icon ` } / >
{ title }
< div className = 'column-header__buttons' >
{ backButton }
{ collapseButton }
< / d i v >
< / d i v >
< div className = { collapsibleClassName } onTransitionEnd = { this . handleTransitionEnd } >
2017-06-24 17:18:11 -04:00
< div className = 'column-header__collapsible-inner' >
2017-06-03 19:39:38 -04:00
{ ( ! collapsed || animating ) && collapsedContent }
< / d i v >
< / d i v >
< / d i v >
) ;
}
}