2017-06-04 09:39:38 +10:00
|
|
|
import PropTypes from 'prop-types';
|
2023-05-24 01:15:17 +10:00
|
|
|
import { PureComponent } from 'react';
|
2019-08-01 20:26:58 +10:00
|
|
|
import { createPortal } from 'react-dom';
|
2023-05-24 01:15:17 +10:00
|
|
|
|
2017-07-26 10:01:27 +10:00
|
|
|
import { FormattedMessage, injectIntl, defineMessages } from 'react-intl';
|
2023-05-24 01:15:17 +10:00
|
|
|
|
|
|
|
import classNames from 'classnames';
|
|
|
|
|
2023-05-09 11:11:56 +10:00
|
|
|
import { Icon } from 'mastodon/components/icon';
|
2017-06-04 09:39:38 +10:00
|
|
|
|
2017-07-26 10:01:27 +10:00
|
|
|
const messages = defineMessages({
|
|
|
|
show: { id: 'column_header.show_settings', defaultMessage: 'Show settings' },
|
|
|
|
hide: { id: 'column_header.hide_settings', defaultMessage: 'Hide settings' },
|
2017-07-28 08:54:48 +10: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-26 10:01:27 +10:00
|
|
|
});
|
|
|
|
|
2023-05-23 18:52:27 +10:00
|
|
|
class ColumnHeader extends PureComponent {
|
2017-06-04 09:39:38 +10:00
|
|
|
|
|
|
|
static contextTypes = {
|
|
|
|
router: PropTypes.object,
|
2022-09-29 14:21:51 +10:00
|
|
|
identity: PropTypes.object,
|
2017-06-04 09:39:38 +10:00
|
|
|
};
|
|
|
|
|
|
|
|
static propTypes = {
|
2017-07-26 10:01:27 +10:00
|
|
|
intl: PropTypes.object.isRequired,
|
2018-03-11 19:52:59 +11:00
|
|
|
title: PropTypes.node,
|
|
|
|
icon: PropTypes.string,
|
2017-06-04 09:39:38 +10:00
|
|
|
active: PropTypes.bool,
|
|
|
|
multiColumn: PropTypes.bool,
|
2018-03-11 19:52:59 +11:00
|
|
|
extraButton: PropTypes.node,
|
2017-06-06 01:10:40 +10:00
|
|
|
showBackButton: PropTypes.bool,
|
2017-06-04 09:39:38 +10:00
|
|
|
children: PropTypes.node,
|
|
|
|
pinned: PropTypes.bool,
|
2019-08-01 20:26:58 +10:00
|
|
|
placeholder: PropTypes.bool,
|
2017-06-04 09:39:38 +10:00
|
|
|
onPin: PropTypes.func,
|
|
|
|
onMove: PropTypes.func,
|
|
|
|
onClick: PropTypes.func,
|
2020-01-26 05:40:36 +11:00
|
|
|
appendContent: PropTypes.node,
|
2020-10-13 09:37:21 +11:00
|
|
|
collapseIssues: PropTypes.bool,
|
2017-06-04 09:39:38 +10:00
|
|
|
};
|
|
|
|
|
|
|
|
state = {
|
|
|
|
collapsed: true,
|
|
|
|
animating: false,
|
|
|
|
};
|
|
|
|
|
|
|
|
handleToggleClick = (e) => {
|
|
|
|
e.stopPropagation();
|
|
|
|
this.setState({ collapsed: !this.state.collapsed, animating: true });
|
2023-01-30 11:45:35 +11:00
|
|
|
};
|
2017-06-04 09:39:38 +10:00
|
|
|
|
|
|
|
handleTitleClick = () => {
|
2022-11-07 13:40:04 +11:00
|
|
|
this.props.onClick?.();
|
2023-01-30 11:45:35 +11:00
|
|
|
};
|
2017-06-04 09:39:38 +10:00
|
|
|
|
|
|
|
handleMoveLeft = () => {
|
|
|
|
this.props.onMove(-1);
|
2023-01-30 11:45:35 +11:00
|
|
|
};
|
2017-06-04 09:39:38 +10:00
|
|
|
|
|
|
|
handleMoveRight = () => {
|
|
|
|
this.props.onMove(1);
|
2023-01-30 11:45:35 +11:00
|
|
|
};
|
2017-06-04 09:39:38 +10:00
|
|
|
|
|
|
|
handleBackClick = () => {
|
2023-07-18 01:32:46 +10:00
|
|
|
const { router } = this.context;
|
|
|
|
|
|
|
|
if (router.history.location?.state?.fromMastodon) {
|
|
|
|
router.history.goBack();
|
2023-03-05 09:18:19 +11:00
|
|
|
} else {
|
2023-07-18 01:32:46 +10:00
|
|
|
router.history.push('/');
|
2023-03-05 09:18:19 +11:00
|
|
|
}
|
2023-01-30 11:45:35 +11:00
|
|
|
};
|
2017-06-04 09:39:38 +10:00
|
|
|
|
|
|
|
handleTransitionEnd = () => {
|
|
|
|
this.setState({ animating: false });
|
2023-01-30 11:45:35 +11:00
|
|
|
};
|
2017-06-04 09:39:38 +10:00
|
|
|
|
2018-12-19 02:43:50 +11:00
|
|
|
handlePin = () => {
|
|
|
|
if (!this.props.pinned) {
|
2020-04-02 12:12:10 +11:00
|
|
|
this.context.router.history.replace('/');
|
2018-12-19 02:43:50 +11:00
|
|
|
}
|
2020-04-02 12:12:10 +11:00
|
|
|
|
2018-12-19 02:43:50 +11:00
|
|
|
this.props.onPin();
|
2023-01-30 11:45:35 +11:00
|
|
|
};
|
2018-12-19 02:43:50 +11:00
|
|
|
|
2017-06-04 09:39:38 +10:00
|
|
|
render () {
|
2023-07-18 01:32:46 +10:00
|
|
|
const { router } = this.context;
|
2020-10-13 09:37:21 +11:00
|
|
|
const { title, icon, active, children, pinned, multiColumn, extraButton, showBackButton, intl: { formatMessage }, placeholder, appendContent, collapseIssues } = this.props;
|
2017-06-04 09:39:38 +10:00
|
|
|
const { collapsed, animating } = this.state;
|
|
|
|
|
2017-06-13 04:02:17 +10:00
|
|
|
const wrapperClassName = classNames('column-header__wrapper', {
|
|
|
|
'active': active,
|
|
|
|
});
|
|
|
|
|
2017-06-04 09:39:38 +10: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-02-01 10:14:05 +11: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-04 09:39:38 +10:00
|
|
|
|
|
|
|
moveButtons = (
|
|
|
|
<div key='move-buttons' className='column-header__setting-arrows'>
|
2021-10-01 08:55:51 +10:00
|
|
|
<button title={formatMessage(messages.moveLeft)} aria-label={formatMessage(messages.moveLeft)} className='icon-button column-header__setting-btn' onClick={this.handleMoveLeft}><Icon id='chevron-left' /></button>
|
|
|
|
<button title={formatMessage(messages.moveRight)} aria-label={formatMessage(messages.moveRight)} className='icon-button column-header__setting-btn' onClick={this.handleMoveRight}><Icon id='chevron-right' /></button>
|
2017-06-04 09:39:38 +10:00
|
|
|
</div>
|
|
|
|
);
|
2019-09-20 03:58:26 +10:00
|
|
|
} else if (multiColumn && this.props.onPin) {
|
2019-02-01 10:14:05 +11: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-06 01:10:40 +10:00
|
|
|
}
|
2017-06-04 09:39:38 +10:00
|
|
|
|
2023-07-18 01:32:46 +10:00
|
|
|
if (!pinned && ((multiColumn && router.history.location?.state?.fromMastodon) || showBackButton)) {
|
2017-06-04 09:39:38 +10:00
|
|
|
backButton = (
|
|
|
|
<button onClick={this.handleBackClick} className='column-header__back-button'>
|
2019-02-01 10:14:05 +11:00
|
|
|
<Icon id='chevron-left' className='column-back-button__icon' fixedWidth />
|
2017-06-04 09:39:38 +10:00
|
|
|
<FormattedMessage id='column_back_button.label' defaultMessage='Back' />
|
|
|
|
</button>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
const collapsedContent = [
|
|
|
|
extraContent,
|
|
|
|
];
|
|
|
|
|
|
|
|
if (multiColumn) {
|
|
|
|
collapsedContent.push(pinButton);
|
2021-10-01 08:55:51 +10:00
|
|
|
collapsedContent.push(moveButtons);
|
2017-06-04 09:39:38 +10:00
|
|
|
}
|
|
|
|
|
2022-09-29 14:21:51 +10:00
|
|
|
if (this.context.identity.signedIn && (children || (multiColumn && this.props.onPin))) {
|
2020-10-13 09:37:21 +11:00
|
|
|
collapseButton = (
|
|
|
|
<button
|
|
|
|
className={collapsibleButtonClassName}
|
|
|
|
title={formatMessage(collapsed ? messages.show : messages.hide)}
|
|
|
|
aria-label={formatMessage(collapsed ? messages.show : messages.hide)}
|
|
|
|
onClick={this.handleToggleClick}
|
|
|
|
>
|
|
|
|
<i className='icon-with-badge'>
|
|
|
|
<Icon id='sliders' />
|
|
|
|
{collapseIssues && <i className='icon-with-badge__issue-badge' />}
|
|
|
|
</i>
|
|
|
|
</button>
|
|
|
|
);
|
2017-06-04 09:39:38 +10:00
|
|
|
}
|
|
|
|
|
2018-03-11 19:52:59 +11:00
|
|
|
const hasTitle = icon && title;
|
|
|
|
|
2019-08-01 20:26:58 +10:00
|
|
|
const component = (
|
2017-06-13 04:02:17 +10:00
|
|
|
<div className={wrapperClassName}>
|
2018-01-15 14:33:06 +11:00
|
|
|
<h1 className={buttonClassName}>
|
2018-03-11 19:52:59 +11:00
|
|
|
{hasTitle && (
|
|
|
|
<button onClick={this.handleTitleClick}>
|
2019-02-01 10:14:05 +11:00
|
|
|
<Icon id={icon} fixedWidth className='column-header__icon' />
|
2018-03-11 19:52:59 +11:00
|
|
|
{title}
|
|
|
|
</button>
|
|
|
|
)}
|
|
|
|
|
|
|
|
{!hasTitle && backButton}
|
2017-06-04 09:39:38 +10:00
|
|
|
|
|
|
|
<div className='column-header__buttons'>
|
2018-03-11 19:52:59 +11:00
|
|
|
{hasTitle && backButton}
|
|
|
|
{extraButton}
|
2017-06-04 09:39:38 +10:00
|
|
|
{collapseButton}
|
|
|
|
</div>
|
2017-07-28 08:54:48 +10:00
|
|
|
</h1>
|
2017-06-04 09:39:38 +10:00
|
|
|
|
2017-09-30 12:29:56 +10:00
|
|
|
<div className={collapsibleClassName} tabIndex={collapsed ? -1 : null} onTransitionEnd={this.handleTransitionEnd}>
|
2017-06-25 07:18:11 +10:00
|
|
|
<div className='column-header__collapsible-inner'>
|
2017-06-04 09:39:38 +10:00
|
|
|
{(!collapsed || animating) && collapsedContent}
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-01-26 05:40:36 +11:00
|
|
|
|
|
|
|
{appendContent}
|
2017-06-04 09:39:38 +10:00
|
|
|
</div>
|
|
|
|
);
|
2019-08-01 20:26:58 +10:00
|
|
|
|
|
|
|
if (multiColumn || placeholder) {
|
|
|
|
return component;
|
|
|
|
} else {
|
2019-08-25 23:49:02 +10:00
|
|
|
// The portal container and the component may be rendered to the DOM in
|
|
|
|
// the same React render pass, so the container might not be available at
|
|
|
|
// the time `render()` is called.
|
|
|
|
const container = document.getElementById('tabs-bar__portal');
|
|
|
|
if (container === null) {
|
|
|
|
// The container wasn't available, force a re-render so that the
|
|
|
|
// component can eventually be inserted in the container and not scroll
|
|
|
|
// with the rest of the area.
|
|
|
|
this.forceUpdate();
|
|
|
|
return component;
|
|
|
|
} else {
|
|
|
|
return createPortal(component, container);
|
|
|
|
}
|
2019-08-01 20:26:58 +10:00
|
|
|
}
|
2017-06-04 09:39:38 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2023-03-24 13:17:53 +11:00
|
|
|
|
|
|
|
export default injectIntl(ColumnHeader);
|