mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
* PLT-5860 Updated copyright date in about modal * PLT-5860 Updated copyright notice in JSX files * PLT-5860 Updated copyright notice in go files * Fixed misc copyright dates * Fixed component snapshots
148 lines
4.7 KiB
JavaScript
148 lines
4.7 KiB
JavaScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
import Constants from 'utils/constants.jsx';
|
|
import {Tooltip, OverlayTrigger} from 'react-bootstrap';
|
|
import * as GlobalActions from 'actions/global_actions.jsx';
|
|
|
|
import {FormattedMessage} from 'react-intl';
|
|
|
|
import React from 'react';
|
|
|
|
export default class SearchResultsHeader extends React.Component {
|
|
constructor(props) {
|
|
super(props);
|
|
|
|
this.handleClose = this.handleClose.bind(this);
|
|
this.toggleSize = this.toggleSize.bind(this);
|
|
}
|
|
|
|
handleClose(e) {
|
|
e.preventDefault();
|
|
|
|
GlobalActions.toggleSideBarAction(false);
|
|
|
|
this.props.shrink();
|
|
}
|
|
|
|
toggleSize(e) {
|
|
e.preventDefault();
|
|
this.props.toggleSize();
|
|
}
|
|
|
|
render() {
|
|
var title = (
|
|
<FormattedMessage
|
|
id='search_header.results'
|
|
defaultMessage='Search Results'
|
|
/>
|
|
);
|
|
|
|
const closeSidebarTooltip = (
|
|
<Tooltip id='closeSidebarTooltip'>
|
|
<FormattedMessage
|
|
id='rhs_header.closeSidebarTooltip'
|
|
defaultMessage='Close Sidebar'
|
|
/>
|
|
</Tooltip>
|
|
);
|
|
|
|
const expandSidebarTooltip = (
|
|
<Tooltip id='expandSidebarTooltip'>
|
|
<FormattedMessage
|
|
id='rhs_header.expandSidebarTooltip'
|
|
defaultMessage='Expand Sidebar'
|
|
/>
|
|
</Tooltip>
|
|
);
|
|
|
|
const shrinkSidebarTooltip = (
|
|
<Tooltip id='shrinkSidebarTooltip'>
|
|
<FormattedMessage
|
|
id='rhs_header.shrinkSidebarTooltip'
|
|
defaultMessage='Shrink Sidebar'
|
|
/>
|
|
</Tooltip>
|
|
);
|
|
|
|
if (this.props.isMentionSearch) {
|
|
title = (
|
|
<FormattedMessage
|
|
id='search_header.title2'
|
|
defaultMessage='Recent Mentions'
|
|
/>
|
|
);
|
|
} else if (this.props.isFlaggedPosts) {
|
|
title = (
|
|
<FormattedMessage
|
|
id='search_header.title3'
|
|
defaultMessage='Flagged Posts'
|
|
/>
|
|
);
|
|
} else if (this.props.isPinnedPosts) {
|
|
title = (
|
|
<FormattedMessage
|
|
id='search_header.title4'
|
|
defaultMessage='Pinned posts in {channelDisplayName}'
|
|
values={{
|
|
channelDisplayName: this.props.channelDisplayName
|
|
}}
|
|
/>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<div className='sidebar--right__header'>
|
|
<span className='sidebar--right__title'>{title}</span>
|
|
<div className='pull-right'>
|
|
<button
|
|
type='button'
|
|
className='sidebar--right__expand'
|
|
aria-label='Expand'
|
|
onClick={this.toggleSize}
|
|
>
|
|
<OverlayTrigger
|
|
delayShow={Constants.OVERLAY_TIME_DELAY}
|
|
placement='top'
|
|
overlay={expandSidebarTooltip}
|
|
>
|
|
<i className='fa fa-expand'/>
|
|
</OverlayTrigger>
|
|
<OverlayTrigger
|
|
delayShow={Constants.OVERLAY_TIME_DELAY}
|
|
placement='top'
|
|
overlay={shrinkSidebarTooltip}
|
|
>
|
|
<i className='fa fa-compress'/>
|
|
</OverlayTrigger>
|
|
</button>
|
|
<button
|
|
type='button'
|
|
className='sidebar--right__close'
|
|
aria-label='Close'
|
|
title='Close'
|
|
onClick={this.handleClose}
|
|
>
|
|
<OverlayTrigger
|
|
delayShow={Constants.OVERLAY_TIME_DELAY}
|
|
placement='top'
|
|
overlay={closeSidebarTooltip}
|
|
>
|
|
<i className='fa fa-sign-out'/>
|
|
</OverlayTrigger>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
SearchResultsHeader.propTypes = {
|
|
isMentionSearch: React.PropTypes.bool,
|
|
toggleSize: React.PropTypes.func,
|
|
shrink: React.PropTypes.func,
|
|
isFlaggedPosts: React.PropTypes.bool,
|
|
isPinnedPosts: React.PropTypes.bool,
|
|
channelDisplayName: React.PropTypes.string.isRequired
|
|
};
|