gab-social/app/javascript/gabsocial/layouts/search_layout.js

217 lines
5.8 KiB
JavaScript
Raw Normal View History

import React from 'react'
import PropTypes from 'prop-types'
import { connect } from 'react-redux'
import { defineMessages, injectIntl } from 'react-intl'
import { me } from '../initial_state'
import {
BREAKPOINT_EXTRA_SMALL,
CX,
} from '../constants'
import Layout from '../layouts/layout'
import PageTitle from '../features/ui/util/page_title'
import DefaultNavigationBar from '../components/navigation_bar/default_navigation_bar'
import FooterBar from '../components/footer_bar'
import SearchNavigationBar from '../components/navigation_bar/search_navigation_bar_xs'
import LoggedOutNavigationBar from '../components/navigation_bar/logged_out_navigation_bar'
import Responsive from '../features/ui/util/responsive_component'
import WrappedBundle from '../features/ui/util/wrapped_bundle'
import Search from '../components/search'
import Pills from '../components/pills'
import {
LinkFooter,
TrendsBreakingPanel,
SearchFilterPanel,
SignUpPanel,
ExploreTimeline,
HashtagTimeline,
SidebarXS,
} from '../features/ui/util/async_components'
class SearchLayout extends React.PureComponent {
state = {
isSearchFocused: false,
currentExploreTabIndex: 0,
}
componentWillMount() {
const { intl } = this.props
this.exploreTabs = [
{
title: 'Explore',
onClick: () => this.setState({ currentExploreTabIndex: 0 }),
component: ExploreTimeline,
},
{
title: '#Election2020',
onClick: () => this.setState({ currentExploreTabIndex: 1 }),
component: HashtagTimeline,
componentParams: { params: { id: 'election2020' } },
},
{
title: '#RiggedElection',
onClick: () => this.setState({ currentExploreTabIndex: 2 }),
component: HashtagTimeline,
componentParams: { params: { id: 'riggedelection' } },
},
{
title: '#StopTheSteal',
onClick: () => this.setState({ currentExploreTabIndex: 3 }),
component: HashtagTimeline,
componentParams: { params: { id: 'stopthesteal' } },
},
]
this.searchTabs = [
{
title: intl.formatMessage(messages.top),
to: '/search',
active: 1,
},
{
title: intl.formatMessage(messages.people),
to: '/search/people',
},
{
title: intl.formatMessage(messages.groups),
to: '/search/groups',
},
{
title: intl.formatMessage(messages.statuses),
to: '/search/statuses',
},
{
title: intl.formatMessage(messages.links),
to: '/search/links',
},
{
title: intl.formatMessage(messages.hashtags),
to: '/search/hashtags',
},
]
}
handleOnToggleSearchExplore = (isSearchFocused) => {
this.setState({ isSearchFocused })
}
render() {
const {
intl,
children,
value,
} = this.props
const {
isSearchFocused,
currentExploreTabIndex,
} = this.state
const activeExploreTab = this.exploreTabs[currentExploreTabIndex];
const activeTabComponent = activeExploreTab.component
const activeTabComponentParams = activeExploreTab.componentParams || {}
const activeExploreTabs = this.exploreTabs.map((tab, i) => {
return {
...tab,
active: i === currentExploreTabIndex,
}
})
const title = intl.formatMessage(messages.search)
const qos = !!value ? value : ''
return (
<React.Fragment>
<Responsive max={BREAKPOINT_EXTRA_SMALL}>
<WrappedBundle component={SidebarXS} />
{
!!me &&
<SearchNavigationBar
isSearchFocused={isSearchFocused}
tabs={isSearchFocused ? this.searchTabs : activeExploreTabs}
onToggleSearchExplore={this.handleOnToggleSearchExplore}
/>
}
{
!me &&
<LoggedOutNavigationBar />
}
<main role='main' className={[_s.d, _s.w100PC, _s.z1].join(' ')}>
{
!me &&
<div className={[_s.d, _s.py15].join(' ')}>
<Pills pills={this.searchTabs} />
</div>
}
{
!!isSearchFocused &&
children
}
{
!isSearchFocused &&
<div className={[_s.d, _s.pt10, _s.w100PC].join(' ')}>
<WrappedBundle
component={activeTabComponent}
componentParams={activeTabComponentParams}
/>
</div>
}
</main>
<FooterBar />
</Responsive>
<Responsive min={BREAKPOINT_EXTRA_SMALL}>
<Layout
noComposeButton
title={title}
showBackBtn
tabs={this.searchTabs}
page={`search.${qos}`}
layout={[
SignUpPanel,
SearchFilterPanel,
TrendsBreakingPanel,
LinkFooter,
]}
>
<PageTitle path={title} />
{children}
</Layout>
</Responsive>
</React.Fragment>
)
}
}
SearchLayout.propTypes = {
intl: PropTypes.object.isRequired,
children: PropTypes.node.isRequired,
value: PropTypes.string,
}
const messages = defineMessages({
search: { id: 'search', defaultMessage: 'Search' },
top: { id: 'top', defaultMessage: 'Top' },
people: { id: 'people', defaultMessage: 'People' },
groups: { id: 'groups', defaultMessage: 'Groups' },
statuses: { id: 'statuses', defaultMessage: 'Statuses' },
hashtags: { id: 'hashtags', defaultMessage: 'Hashtags' },
links: { id: 'links', defaultMessage: 'Links' },
})
const mapStateToProps = (state) => ({
value: state.getIn(['search', 'value']),
})
export default injectIntl(connect(mapStateToProps)(SearchLayout))