2023-05-28 14:38:10 +00:00
|
|
|
import PropTypes from 'prop-types';
|
2023-05-28 12:18:23 +00:00
|
|
|
import { PureComponent } from 'react';
|
2023-05-28 14:38:10 +00:00
|
|
|
|
2022-02-24 23:34:33 +00:00
|
|
|
import { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
|
2023-05-28 14:38:10 +00:00
|
|
|
|
|
|
|
import { Helmet } from 'react-helmet';
|
|
|
|
import { NavLink, Switch, Route } from 'react-router-dom';
|
|
|
|
|
2022-02-24 23:34:33 +00:00
|
|
|
import { connect } from 'react-redux';
|
2023-05-28 14:38:10 +00:00
|
|
|
|
2022-02-24 23:34:33 +00:00
|
|
|
import Column from 'flavours/glitch/components/column';
|
|
|
|
import ColumnHeader from 'flavours/glitch/components/column_header';
|
2023-05-28 14:38:10 +00:00
|
|
|
import Search from 'flavours/glitch/features/compose/containers/search_container';
|
2023-07-08 18:00:12 +00:00
|
|
|
import { trendsEnabled } from 'flavours/glitch/initial_state';
|
2023-05-28 14:38:10 +00:00
|
|
|
|
2022-02-24 23:34:33 +00:00
|
|
|
import Links from './links';
|
2023-05-28 14:38:10 +00:00
|
|
|
import SearchResults from './results';
|
2022-02-24 23:34:33 +00:00
|
|
|
import Statuses from './statuses';
|
|
|
|
import Suggestions from './suggestions';
|
2023-05-28 14:38:10 +00:00
|
|
|
import Tags from './tags';
|
|
|
|
|
|
|
|
|
2022-02-24 23:34:33 +00:00
|
|
|
|
|
|
|
const messages = defineMessages({
|
|
|
|
title: { id: 'explore.title', defaultMessage: 'Explore' },
|
|
|
|
searchResults: { id: 'explore.search_results', defaultMessage: 'Search results' },
|
|
|
|
});
|
|
|
|
|
|
|
|
const mapStateToProps = state => ({
|
|
|
|
layout: state.getIn(['meta', 'layout']),
|
2023-07-08 18:00:12 +00:00
|
|
|
isSearching: state.getIn(['search', 'submitted']) || !trendsEnabled,
|
2022-02-24 23:34:33 +00:00
|
|
|
});
|
|
|
|
|
2023-05-28 12:18:23 +00:00
|
|
|
class Explore extends PureComponent {
|
2022-02-24 23:34:33 +00:00
|
|
|
|
|
|
|
static contextTypes = {
|
2022-10-04 18:13:23 +00:00
|
|
|
identity: PropTypes.object,
|
2022-02-24 23:34:33 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static propTypes = {
|
|
|
|
intl: PropTypes.object.isRequired,
|
|
|
|
multiColumn: PropTypes.bool,
|
|
|
|
isSearching: PropTypes.bool,
|
|
|
|
};
|
|
|
|
|
|
|
|
handleHeaderClick = () => {
|
|
|
|
this.column.scrollTop();
|
2023-02-03 19:52:07 +00:00
|
|
|
};
|
2022-02-24 23:34:33 +00:00
|
|
|
|
|
|
|
setRef = c => {
|
|
|
|
this.column = c;
|
2023-02-03 19:52:07 +00:00
|
|
|
};
|
2022-02-24 23:34:33 +00:00
|
|
|
|
2022-11-17 07:54:43 +00:00
|
|
|
render() {
|
2022-10-04 18:13:23 +00:00
|
|
|
const { intl, multiColumn, isSearching } = this.props;
|
|
|
|
const { signedIn } = this.context.identity;
|
2022-02-24 23:34:33 +00:00
|
|
|
|
|
|
|
return (
|
|
|
|
<Column bindToDocument={!multiColumn} ref={this.setRef} label={intl.formatMessage(messages.title)}>
|
2022-10-04 18:13:23 +00:00
|
|
|
<ColumnHeader
|
|
|
|
icon={isSearching ? 'search' : 'hashtag'}
|
|
|
|
title={intl.formatMessage(isSearching ? messages.searchResults : messages.title)}
|
|
|
|
onClick={this.handleHeaderClick}
|
|
|
|
multiColumn={multiColumn}
|
|
|
|
/>
|
|
|
|
|
|
|
|
<div className='explore__search-header'>
|
|
|
|
<Search />
|
|
|
|
</div>
|
2022-02-24 23:34:33 +00:00
|
|
|
|
2023-06-05 15:32:24 +00:00
|
|
|
<div className='scrollable scrollable--flex' data-nosnippet>
|
2022-02-24 23:34:33 +00:00
|
|
|
{isSearching ? (
|
|
|
|
<SearchResults />
|
|
|
|
) : (
|
2022-12-15 15:20:46 +00:00
|
|
|
<>
|
2022-02-24 23:34:33 +00:00
|
|
|
<div className='account__section-headline'>
|
2022-12-15 15:20:46 +00:00
|
|
|
<NavLink exact to='/explore'>
|
|
|
|
<FormattedMessage tagName='div' id='explore.trending_statuses' defaultMessage='Posts' />
|
|
|
|
</NavLink>
|
2023-04-28 06:54:20 +00:00
|
|
|
|
2022-12-15 15:20:46 +00:00
|
|
|
<NavLink exact to='/explore/tags'>
|
|
|
|
<FormattedMessage tagName='div' id='explore.trending_tags' defaultMessage='Hashtags' />
|
|
|
|
</NavLink>
|
2023-04-28 06:54:20 +00:00
|
|
|
|
2022-12-15 15:20:46 +00:00
|
|
|
{signedIn && (
|
|
|
|
<NavLink exact to='/explore/suggestions'>
|
2023-04-28 06:54:20 +00:00
|
|
|
<FormattedMessage tagName='div' id='explore.suggested_follows' defaultMessage='People' />
|
2022-12-15 15:20:46 +00:00
|
|
|
</NavLink>
|
|
|
|
)}
|
2023-04-28 06:54:20 +00:00
|
|
|
|
|
|
|
<NavLink exact to='/explore/links'>
|
|
|
|
<FormattedMessage tagName='div' id='explore.trending_links' defaultMessage='News' />
|
|
|
|
</NavLink>
|
2022-02-24 23:34:33 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<Switch>
|
|
|
|
<Route path='/explore/tags' component={Tags} />
|
|
|
|
<Route path='/explore/links' component={Links} />
|
|
|
|
<Route path='/explore/suggestions' component={Suggestions} />
|
2023-03-30 08:14:49 +00:00
|
|
|
<Route exact path={['/explore', '/explore/posts', '/search']}>
|
|
|
|
<Statuses multiColumn={multiColumn} />
|
|
|
|
</Route>
|
2022-02-24 23:34:33 +00:00
|
|
|
</Switch>
|
2022-09-29 02:39:33 +00:00
|
|
|
|
|
|
|
<Helmet>
|
2022-10-09 04:08:37 +00:00
|
|
|
<title>{intl.formatMessage(messages.title)}</title>
|
2022-10-20 12:35:29 +00:00
|
|
|
<meta name='robots' content={isSearching ? 'noindex' : 'all'} />
|
2022-09-29 02:39:33 +00:00
|
|
|
</Helmet>
|
2022-12-15 15:20:46 +00:00
|
|
|
</>
|
2022-02-24 23:34:33 +00:00
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
</Column>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2023-03-24 22:15:25 +00:00
|
|
|
|
|
|
|
export default connect(mapStateToProps)(injectIntl(Explore));
|