2017-06-03 19:39:38 -04:00
|
|
|
import React from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import classNames from 'classnames';
|
2017-07-25 20:01:27 -04:00
|
|
|
import { FormattedMessage, injectIntl, defineMessages } from 'react-intl';
|
2019-01-31 18:14:05 -05:00
|
|
|
import Icon from 'mastodon/components/icon';
|
2017-06-03 19:39:38 -04:00
|
|
|
|
2017-07-25 20:01:27 -04:00
|
|
|
const messages = defineMessages({
|
|
|
|
show: { id: 'column_header.show_settings', defaultMessage: 'Show settings' },
|
|
|
|
hide: { id: 'column_header.hide_settings', defaultMessage: 'Hide settings' },
|
2017-07-27 18:54:48 -04:00
|
|
|
moveLeft: { id: 'column_header.moveLeft_settings', defaultMessage: 'Move column to the left' },
|
|
|
|
moveRight: { id: 'column_header.moveRight_settings', defaultMessage: 'Move column to the right' },
|
2017-07-25 20:01:27 -04:00
|
|
|
});
|
|
|
|
|
2018-09-14 11:59:48 -04:00
|
|
|
export default @injectIntl
|
|
|
|
class ColumnHeader extends React.PureComponent {
|
2017-06-03 19:39:38 -04:00
|
|
|
|
|
|
|
static contextTypes = {
|
|
|
|
router: PropTypes.object,
|
|
|
|
};
|
|
|
|
|
|
|
|
static propTypes = {
|
2017-07-25 20:01:27 -04:00
|
|
|
intl: PropTypes.object.isRequired,
|
2018-03-11 04:52:59 -04:00
|
|
|
title: PropTypes.node,
|
|
|
|
icon: PropTypes.string,
|
2017-06-03 19:39:38 -04:00
|
|
|
active: PropTypes.bool,
|
|
|
|
multiColumn: PropTypes.bool,
|
2018-03-11 04:52:59 -04:00
|
|
|
extraButton: PropTypes.node,
|
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,
|
|
|
|
};
|
|
|
|
|
2018-12-18 10:43:50 -05:00
|
|
|
historyBack = () => {
|
|
|
|
if (window.history && window.history.length === 1) {
|
|
|
|
this.context.router.history.push('/');
|
|
|
|
} else {
|
|
|
|
this.context.router.history.goBack();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-03 19:39:38 -04:00
|
|
|
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 = () => {
|
2018-12-18 10:43:50 -05:00
|
|
|
this.historyBack();
|
2017-06-03 19:39:38 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
handleTransitionEnd = () => {
|
|
|
|
this.setState({ animating: false });
|
|
|
|
}
|
|
|
|
|
2018-12-18 10:43:50 -05:00
|
|
|
handlePin = () => {
|
|
|
|
if (!this.props.pinned) {
|
|
|
|
this.historyBack();
|
|
|
|
}
|
|
|
|
this.props.onPin();
|
|
|
|
}
|
|
|
|
|
2017-06-03 19:39:38 -04:00
|
|
|
render () {
|
2018-12-18 10:43:50 -05:00
|
|
|
const { title, icon, active, children, pinned, multiColumn, extraButton, showBackButton, intl: { formatMessage } } = 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}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (multiColumn && pinned) {
|
2019-01-31 18:14:05 -05:00
|
|
|
pinButton = <button key='pin-button' className='text-btn column-header__setting-btn' onClick={this.handlePin}><Icon id='times' /> <FormattedMessage id='column_header.unpin' defaultMessage='Unpin' /></button>;
|
2017-06-03 19:39:38 -04:00
|
|
|
|
|
|
|
moveButtons = (
|
|
|
|
<div key='move-buttons' className='column-header__setting-arrows'>
|
2019-01-31 18:14:05 -05:00
|
|
|
<button title={formatMessage(messages.moveLeft)} aria-label={formatMessage(messages.moveLeft)} className='text-btn column-header__setting-btn' onClick={this.handleMoveLeft}><Icon id='chevron-left' /></button>
|
|
|
|
<button title={formatMessage(messages.moveRight)} aria-label={formatMessage(messages.moveRight)} className='text-btn column-header__setting-btn' onClick={this.handleMoveRight}><Icon id='chevron-right' /></button>
|
2017-06-03 19:39:38 -04:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
} else if (multiColumn) {
|
2019-01-31 18:14:05 -05:00
|
|
|
pinButton = <button key='pin-button' className='text-btn column-header__setting-btn' onClick={this.handlePin}><Icon id='plus' /> <FormattedMessage id='column_header.pin' defaultMessage='Pin' /></button>;
|
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'>
|
2019-01-31 18:14:05 -05:00
|
|
|
<Icon id='chevron-left' className='column-back-button__icon' fixedWidth />
|
2017-06-03 19:39:38 -04:00
|
|
|
<FormattedMessage id='column_back_button.label' defaultMessage='Back' />
|
|
|
|
</button>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
const collapsedContent = [
|
|
|
|
extraContent,
|
|
|
|
];
|
|
|
|
|
|
|
|
if (multiColumn) {
|
|
|
|
collapsedContent.push(moveButtons);
|
|
|
|
collapsedContent.push(pinButton);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (children || multiColumn) {
|
2019-01-31 18:14:05 -05:00
|
|
|
collapseButton = <button className={collapsibleButtonClassName} title={formatMessage(collapsed ? messages.show : messages.hide)} aria-label={formatMessage(collapsed ? messages.show : messages.hide)} aria-pressed={collapsed ? 'false' : 'true'} onClick={this.handleToggleClick}><Icon id='sliders' /></button>;
|
2017-06-03 19:39:38 -04:00
|
|
|
}
|
|
|
|
|
2018-03-11 04:52:59 -04:00
|
|
|
const hasTitle = icon && title;
|
|
|
|
|
2017-06-03 19:39:38 -04:00
|
|
|
return (
|
2017-06-12 14:02:17 -04:00
|
|
|
<div className={wrapperClassName}>
|
2018-01-14 22:33:06 -05:00
|
|
|
<h1 className={buttonClassName}>
|
2018-03-11 04:52:59 -04:00
|
|
|
{hasTitle && (
|
|
|
|
<button onClick={this.handleTitleClick}>
|
2019-01-31 18:14:05 -05:00
|
|
|
<Icon id={icon} fixedWidth className='column-header__icon' />
|
2018-03-11 04:52:59 -04:00
|
|
|
{title}
|
|
|
|
</button>
|
|
|
|
)}
|
|
|
|
|
|
|
|
{!hasTitle && backButton}
|
2017-06-03 19:39:38 -04:00
|
|
|
|
|
|
|
<div className='column-header__buttons'>
|
2018-03-11 04:52:59 -04:00
|
|
|
{hasTitle && backButton}
|
|
|
|
{extraButton}
|
2017-06-03 19:39:38 -04:00
|
|
|
{collapseButton}
|
|
|
|
</div>
|
2017-07-27 18:54:48 -04:00
|
|
|
</h1>
|
2017-06-03 19:39:38 -04:00
|
|
|
|
2017-09-29 22:29:56 -04:00
|
|
|
<div className={collapsibleClassName} tabIndex={collapsed ? -1 : null} 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}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|