Updated WhoToFollowPanel to be UserSuggestionsPanel and included related, verified
• Updated: - WhoToFollowPanel to be UserSuggestionsPanel and included related, verified - All pages, layouts to use new component • Removed: - VerifiedAccountsPanel
This commit is contained in:
parent
6fe9b69d95
commit
38a4f1ed7f
@ -4,6 +4,7 @@ import { connect } from 'react-redux'
|
|||||||
import { defineMessages, injectIntl } from 'react-intl'
|
import { defineMessages, injectIntl } from 'react-intl'
|
||||||
import {
|
import {
|
||||||
fetchRelatedSuggestions,
|
fetchRelatedSuggestions,
|
||||||
|
fetchPopularSuggestions,
|
||||||
} from '../../actions/suggestions'
|
} from '../../actions/suggestions'
|
||||||
import ImmutablePureComponent from 'react-immutable-pure-component'
|
import ImmutablePureComponent from 'react-immutable-pure-component'
|
||||||
import ImmutablePropTypes from 'react-immutable-proptypes'
|
import ImmutablePropTypes from 'react-immutable-proptypes'
|
||||||
@ -11,7 +12,7 @@ import Account from '../account'
|
|||||||
import AccountPlaceholder from '../placeholder/account_placeholder'
|
import AccountPlaceholder from '../placeholder/account_placeholder'
|
||||||
import PanelLayout from './panel_layout'
|
import PanelLayout from './panel_layout'
|
||||||
|
|
||||||
class WhoToFollowPanel extends ImmutablePureComponent {
|
class UserSuggestionsPanel extends ImmutablePureComponent {
|
||||||
|
|
||||||
state = {
|
state = {
|
||||||
fetched: !this.props.isLazy,
|
fetched: !this.props.isLazy,
|
||||||
@ -33,12 +34,20 @@ class WhoToFollowPanel extends ImmutablePureComponent {
|
|||||||
|
|
||||||
componentDidUpdate(prevProps, prevState) {
|
componentDidUpdate(prevProps, prevState) {
|
||||||
if (!prevState.fetched && this.state.fetched) {
|
if (!prevState.fetched && this.state.fetched) {
|
||||||
this.props.fetchRelatedSuggestions()
|
this.handleFetch()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
componentDidMount() {
|
componentDidMount() {
|
||||||
if (!this.props.isLazy) {
|
if (!this.props.isLazy) {
|
||||||
|
this.handleFetch()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
handleFetch = () => {
|
||||||
|
if (this.props.suggestionType === 'verified') {
|
||||||
|
this.props.fetchPopularSuggestions()
|
||||||
|
} else {
|
||||||
this.props.fetchRelatedSuggestions()
|
this.props.fetchRelatedSuggestions()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -48,6 +57,7 @@ class WhoToFollowPanel extends ImmutablePureComponent {
|
|||||||
intl,
|
intl,
|
||||||
isLoading,
|
isLoading,
|
||||||
suggestions,
|
suggestions,
|
||||||
|
suggestionType,
|
||||||
} = this.props
|
} = this.props
|
||||||
|
|
||||||
if (suggestions.isEmpty()) return null
|
if (suggestions.isEmpty()) return null
|
||||||
@ -55,12 +65,14 @@ class WhoToFollowPanel extends ImmutablePureComponent {
|
|||||||
const Child = isLoading ? AccountPlaceholder : Account
|
const Child = isLoading ? AccountPlaceholder : Account
|
||||||
const arr = isLoading ? Array.apply(null, { length: 6 }) : suggestions
|
const arr = isLoading ? Array.apply(null, { length: 6 }) : suggestions
|
||||||
|
|
||||||
|
const title = suggestionType === 'verified' ? intl.formatMessage(messages.verifiedTitle) : intl.formatMessage(messages.relatedTitle)
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<PanelLayout
|
<PanelLayout
|
||||||
noPadding
|
noPadding
|
||||||
title={intl.formatMessage(messages.title)}
|
title={title}
|
||||||
footerButtonTitle={intl.formatMessage(messages.show_more)}
|
footerButtonTitle={intl.formatMessage(messages.show_more)}
|
||||||
footerButtonTo='/explore'
|
footerButtonTo='/suggestions'
|
||||||
>
|
>
|
||||||
<div className={_s.d}>
|
<div className={_s.d}>
|
||||||
{
|
{
|
||||||
@ -81,25 +93,36 @@ class WhoToFollowPanel extends ImmutablePureComponent {
|
|||||||
|
|
||||||
const messages = defineMessages({
|
const messages = defineMessages({
|
||||||
dismissSuggestion: { id: 'suggestions.dismiss', defaultMessage: 'Dismiss suggestion' },
|
dismissSuggestion: { id: 'suggestions.dismiss', defaultMessage: 'Dismiss suggestion' },
|
||||||
title: { id: 'who_to_follow.title', defaultMessage: 'Who to Follow' },
|
relatedTitle: { id: 'who_to_follow.title', defaultMessage: 'Who to Follow' },
|
||||||
|
verifiedTitle: { id: 'who_to_follow.verified_title', defaultMessage: 'Verified Accounts to Follow' },
|
||||||
show_more: { id: 'who_to_follow.more', defaultMessage: 'Show more' },
|
show_more: { id: 'who_to_follow.more', defaultMessage: 'Show more' },
|
||||||
})
|
})
|
||||||
|
|
||||||
const mapStateToProps = (state) => ({
|
const mapStateToProps = (state, { suggestionType = 'related' }) => ({
|
||||||
suggestions: state.getIn(['suggestions', 'related', 'items']),
|
suggestions: state.getIn(['suggestions', suggestionType, 'items']),
|
||||||
isLoading: state.getIn(['suggestions', 'related', 'isLoading']),
|
isLoading: state.getIn(['suggestions', suggestionType, 'isLoading']),
|
||||||
})
|
})
|
||||||
|
|
||||||
const mapDispatchToProps = (dispatch) => ({
|
const mapDispatchToProps = (dispatch) => ({
|
||||||
fetchRelatedSuggestions: () => dispatch(fetchRelatedSuggestions()),
|
fetchRelatedSuggestions: () => dispatch(fetchRelatedSuggestions()),
|
||||||
|
fetchPopularSuggestions: () => dispatch(fetchPopularSuggestions()),
|
||||||
})
|
})
|
||||||
|
|
||||||
WhoToFollowPanel.propTypes = {
|
UserSuggestionsPanel.propTypes = {
|
||||||
|
suggestionType: PropTypes.oneOf([
|
||||||
|
'related',
|
||||||
|
'verified'
|
||||||
|
]),
|
||||||
fetchRelatedSuggestions: PropTypes.func.isRequired,
|
fetchRelatedSuggestions: PropTypes.func.isRequired,
|
||||||
|
fetchPopularSuggestions: PropTypes.func.isRequired,
|
||||||
intl: PropTypes.object.isRequired,
|
intl: PropTypes.object.isRequired,
|
||||||
suggestions: ImmutablePropTypes.list.isRequired,
|
suggestions: ImmutablePropTypes.list.isRequired,
|
||||||
isLoading: PropTypes.bool.isRequired,
|
isLoading: PropTypes.bool.isRequired,
|
||||||
isLazy: PropTypes.bool,
|
isLazy: PropTypes.bool,
|
||||||
}
|
}
|
||||||
|
|
||||||
export default injectIntl(connect(mapStateToProps, mapDispatchToProps)(WhoToFollowPanel))
|
UserSuggestionsPanel.defaultProps = {
|
||||||
|
suggestionType: 'related',
|
||||||
|
}
|
||||||
|
|
||||||
|
export default injectIntl(connect(mapStateToProps, mapDispatchToProps)(UserSuggestionsPanel))
|
@ -1,92 +0,0 @@
|
|||||||
import React from 'react'
|
|
||||||
import PropTypes from 'prop-types'
|
|
||||||
import { connect } from 'react-redux'
|
|
||||||
import { defineMessages, injectIntl } from 'react-intl'
|
|
||||||
import { fetchPopularSuggestions } from '../../actions/suggestions'
|
|
||||||
import ImmutablePureComponent from 'react-immutable-pure-component'
|
|
||||||
import ImmutablePropTypes from 'react-immutable-proptypes'
|
|
||||||
import Account from '../account'
|
|
||||||
import PanelLayout from './panel_layout'
|
|
||||||
|
|
||||||
class VerifiedAccountsPanel extends ImmutablePureComponent {
|
|
||||||
|
|
||||||
state = {
|
|
||||||
fetched: !this.props.isLazy,
|
|
||||||
}
|
|
||||||
|
|
||||||
updateOnProps = [
|
|
||||||
'suggestions',
|
|
||||||
'isLazy',
|
|
||||||
'shouldLoad',
|
|
||||||
]
|
|
||||||
|
|
||||||
static getDerivedStateFromProps(nextProps, prevState) {
|
|
||||||
if (nextProps.shouldLoad && !prevState.fetched) {
|
|
||||||
return { fetched: true }
|
|
||||||
}
|
|
||||||
|
|
||||||
return null
|
|
||||||
}
|
|
||||||
|
|
||||||
componentDidUpdate(prevProps, prevState) {
|
|
||||||
if (!prevState.fetched && this.state.fetched) {
|
|
||||||
this.props.fetchPopularSuggestions()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
componentDidMount() {
|
|
||||||
if (!this.props.isLazy) {
|
|
||||||
this.props.fetchPopularSuggestions()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
render() {
|
|
||||||
const { intl, suggestions } = this.props
|
|
||||||
|
|
||||||
if (suggestions.isEmpty()) return null
|
|
||||||
|
|
||||||
return (
|
|
||||||
<PanelLayout
|
|
||||||
noPadding
|
|
||||||
title={intl.formatMessage(messages.title)}
|
|
||||||
// footerButtonTitle={intl.formatMessage(messages.show_more)}
|
|
||||||
// footerButtonTo='/explore'
|
|
||||||
>
|
|
||||||
<div className={_s.d}>
|
|
||||||
{
|
|
||||||
suggestions.map(accountId => (
|
|
||||||
<Account
|
|
||||||
compact
|
|
||||||
key={accountId}
|
|
||||||
id={accountId}
|
|
||||||
/>
|
|
||||||
))
|
|
||||||
}
|
|
||||||
</div>
|
|
||||||
</PanelLayout>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
const messages = defineMessages({
|
|
||||||
dismissSuggestion: { id: 'suggestions.dismiss', defaultMessage: 'Dismiss suggestion' },
|
|
||||||
title: { id: 'who_to_follow.title', defaultMessage: 'Verified Accounts to Follow' },
|
|
||||||
show_more: { id: 'who_to_follow.more', defaultMessage: 'Show more' },
|
|
||||||
})
|
|
||||||
|
|
||||||
const mapStateToProps = (state) => ({
|
|
||||||
suggestions: state.getIn(['suggestions', 'verified', 'items']),
|
|
||||||
})
|
|
||||||
|
|
||||||
const mapDispatchToProps = (dispatch) => ({
|
|
||||||
fetchPopularSuggestions: () => dispatch(fetchPopularSuggestions()),
|
|
||||||
})
|
|
||||||
|
|
||||||
VerifiedAccountsPanel.propTypes = {
|
|
||||||
fetchPopularSuggestions: PropTypes.func.isRequired,
|
|
||||||
intl: PropTypes.object.isRequired,
|
|
||||||
suggestions: ImmutablePropTypes.list.isRequired,
|
|
||||||
isLazy: PropTypes.bool,
|
|
||||||
}
|
|
||||||
|
|
||||||
export default injectIntl(connect(mapStateToProps, mapDispatchToProps)(VerifiedAccountsPanel))
|
|
@ -106,8 +106,7 @@ export function UnauthorizedModal() { return import(/* webpackChunkName: "compon
|
|||||||
export function UnfollowModal() { return import(/* webpackChunkName: "components/unfollow_modal" */'../../../components/modal/unfollow_modal') }
|
export function UnfollowModal() { return import(/* webpackChunkName: "components/unfollow_modal" */'../../../components/modal/unfollow_modal') }
|
||||||
export function UserInfoPopover() { return import(/* webpackChunkName: "components/user_info_popover" */'../../../components/popover/user_info_popover') }
|
export function UserInfoPopover() { return import(/* webpackChunkName: "components/user_info_popover" */'../../../components/popover/user_info_popover') }
|
||||||
export function UserPanel() { return import(/* webpackChunkName: "components/user_panel" */'../../../components/panel/user_panel') }
|
export function UserPanel() { return import(/* webpackChunkName: "components/user_panel" */'../../../components/panel/user_panel') }
|
||||||
export function VerifiedAccountsPanel() { return import(/* webpackChunkName: "components/verified_accounts_panel" */'../../../components/panel/verified_accounts_panel') }
|
|
||||||
export function Video() { return import(/* webpackChunkName: "components/video" */'../../../components/video') }
|
export function Video() { return import(/* webpackChunkName: "components/video" */'../../../components/video') }
|
||||||
export function VideoModal() { return import(/* webpackChunkName: "components/video_modal" */'../../../components/modal/video_modal') }
|
export function VideoModal() { return import(/* webpackChunkName: "components/video_modal" */'../../../components/modal/video_modal') }
|
||||||
export function VideoStatsPopover() { return import(/* webpackChunkName: "components/video_stats_popover" */'../../../components/popover/video_stats_popover') }
|
export function VideoStatsPopover() { return import(/* webpackChunkName: "components/video_stats_popover" */'../../../components/popover/video_stats_popover') }
|
||||||
export function WhoToFollowPanel() { return import(/* webpackChunkName: "components/who_to_follow_panel" */'../../../components/panel/who_to_follow_panel') }
|
export function UserSuggestionsPanel() { return import(/* webpackChunkName: "components/user_suggestions_panel" */'../../../components/panel/user_suggestions_panel') }
|
@ -14,7 +14,7 @@ import Heading from '../components/heading'
|
|||||||
import {
|
import {
|
||||||
GroupsPanel,
|
GroupsPanel,
|
||||||
SignUpLogInPanel,
|
SignUpLogInPanel,
|
||||||
VerifiedAccountsPanel,
|
UserSuggestionsPanel,
|
||||||
TrendsPanel,
|
TrendsPanel,
|
||||||
} from '../features/ui/util/async_components'
|
} from '../features/ui/util/async_components'
|
||||||
|
|
||||||
@ -67,7 +67,7 @@ class ExploreLayout extends ImmutablePureComponent {
|
|||||||
<WrappedBundle component={GroupsPanel} componentParams={{ groupType: 'featured' }} />,
|
<WrappedBundle component={GroupsPanel} componentParams={{ groupType: 'featured' }} />,
|
||||||
]
|
]
|
||||||
if (!!me) {
|
if (!!me) {
|
||||||
layout.push(VerifiedAccountsPanel)
|
layout.push(<WrappedBundle component={UserSuggestionsPanel} componentParams={{ suggestionType: 'verified' }} />)
|
||||||
}
|
}
|
||||||
layout.push(<WrappedBundle component={TrendsPanel} componentParams={{ isLazy: true, shouldLoad: lazyLoaded }} />)
|
layout.push(<WrappedBundle component={TrendsPanel} componentParams={{ isLazy: true, shouldLoad: lazyLoaded }} />)
|
||||||
|
|
||||||
|
@ -5,7 +5,7 @@ import DefaultLayout from '../layouts/default_layout'
|
|||||||
import {
|
import {
|
||||||
LinkFooter,
|
LinkFooter,
|
||||||
TrendsPanel,
|
TrendsPanel,
|
||||||
WhoToFollowPanel,
|
UserSuggestionsPanel,
|
||||||
} from '../features/ui/util/async_components'
|
} from '../features/ui/util/async_components'
|
||||||
|
|
||||||
class BasicPage extends React.PureComponent {
|
class BasicPage extends React.PureComponent {
|
||||||
@ -25,7 +25,7 @@ class BasicPage extends React.PureComponent {
|
|||||||
page={page}
|
page={page}
|
||||||
layout={[
|
layout={[
|
||||||
TrendsPanel,
|
TrendsPanel,
|
||||||
WhoToFollowPanel,
|
UserSuggestionsPanel,
|
||||||
LinkFooter,
|
LinkFooter,
|
||||||
]}
|
]}
|
||||||
>
|
>
|
||||||
|
@ -11,7 +11,7 @@ import {
|
|||||||
GroupsPanel,
|
GroupsPanel,
|
||||||
ProgressPanel,
|
ProgressPanel,
|
||||||
TrendsPanel,
|
TrendsPanel,
|
||||||
WhoToFollowPanel,
|
UserSuggestionsPanel,
|
||||||
} from '../features/ui/util/async_components'
|
} from '../features/ui/util/async_components'
|
||||||
|
|
||||||
class CommunityPage extends React.PureComponent {
|
class CommunityPage extends React.PureComponent {
|
||||||
@ -38,7 +38,7 @@ class CommunityPage extends React.PureComponent {
|
|||||||
layout={[
|
layout={[
|
||||||
ProgressPanel,
|
ProgressPanel,
|
||||||
TrendsPanel,
|
TrendsPanel,
|
||||||
WhoToFollowPanel,
|
UserSuggestionsPanel,
|
||||||
GroupsPanel,
|
GroupsPanel,
|
||||||
LinkFooter,
|
LinkFooter,
|
||||||
]}
|
]}
|
||||||
|
@ -11,7 +11,7 @@ import {
|
|||||||
LinkFooter,
|
LinkFooter,
|
||||||
ProgressPanel,
|
ProgressPanel,
|
||||||
TrendsPanel,
|
TrendsPanel,
|
||||||
WhoToFollowPanel,
|
UserSuggestionsPanel,
|
||||||
} from '../features/ui/util/async_components'
|
} from '../features/ui/util/async_components'
|
||||||
|
|
||||||
class HashtagPage extends React.PureComponent {
|
class HashtagPage extends React.PureComponent {
|
||||||
@ -49,7 +49,7 @@ class HashtagPage extends React.PureComponent {
|
|||||||
layout={[
|
layout={[
|
||||||
ProgressPanel,
|
ProgressPanel,
|
||||||
TrendsPanel,
|
TrendsPanel,
|
||||||
WhoToFollowPanel,
|
UserSuggestionsPanel,
|
||||||
LinkFooter,
|
LinkFooter,
|
||||||
]}
|
]}
|
||||||
>
|
>
|
||||||
|
@ -18,7 +18,7 @@ import {
|
|||||||
LinkFooter,
|
LinkFooter,
|
||||||
ListsPanel,
|
ListsPanel,
|
||||||
TrendsPanel,
|
TrendsPanel,
|
||||||
WhoToFollowPanel,
|
UserSuggestionsPanel,
|
||||||
ProPanel,
|
ProPanel,
|
||||||
ShopPanel,
|
ShopPanel,
|
||||||
ProgressPanel,
|
ProgressPanel,
|
||||||
@ -90,7 +90,7 @@ class HomePage extends React.PureComponent {
|
|||||||
TrendsPanel,
|
TrendsPanel,
|
||||||
<WrappedBundle component={ShopPanel} componentParams={{ isLazy: true, shouldLoad: lazyLoaded }} />,
|
<WrappedBundle component={ShopPanel} componentParams={{ isLazy: true, shouldLoad: lazyLoaded }} />,
|
||||||
<WrappedBundle component={ListsPanel} componentParams={{ isLazy: true, shouldLoad: lazyLoaded }} />,
|
<WrappedBundle component={ListsPanel} componentParams={{ isLazy: true, shouldLoad: lazyLoaded }} />,
|
||||||
<WrappedBundle component={WhoToFollowPanel} componentParams={{ isLazy: true, shouldLoad: lazyLoaded }} />,
|
<WrappedBundle component={UserSuggestionsPanel} componentParams={{ isLazy: true, shouldLoad: lazyLoaded }} />,
|
||||||
<WrappedBundle component={GroupsPanel} componentParams={{ isLazy: true, shouldLoad: lazyLoaded, groupType: 'member' }} />,
|
<WrappedBundle component={GroupsPanel} componentParams={{ isLazy: true, shouldLoad: lazyLoaded, groupType: 'member' }} />,
|
||||||
LinkFooter,
|
LinkFooter,
|
||||||
]}
|
]}
|
||||||
|
@ -15,7 +15,7 @@ import {
|
|||||||
ListDetailsPanel,
|
ListDetailsPanel,
|
||||||
LinkFooter,
|
LinkFooter,
|
||||||
TrendsPanel,
|
TrendsPanel,
|
||||||
WhoToFollowPanel,
|
UserSuggestionsPanel,
|
||||||
} from '../features/ui/util/async_components'
|
} from '../features/ui/util/async_components'
|
||||||
|
|
||||||
class ListPage extends ImmutablePureComponent {
|
class ListPage extends ImmutablePureComponent {
|
||||||
@ -54,7 +54,7 @@ class ListPage extends ImmutablePureComponent {
|
|||||||
layout={[
|
layout={[
|
||||||
<WrappedBundle component={ListDetailsPanel} componentParams={{ list: list, onEdit: this.handleOnOpenListEditModal }} />,
|
<WrappedBundle component={ListDetailsPanel} componentParams={{ list: list, onEdit: this.handleOnOpenListEditModal }} />,
|
||||||
TrendsPanel,
|
TrendsPanel,
|
||||||
WhoToFollowPanel,
|
UserSuggestionsPanel,
|
||||||
LinkFooter,
|
LinkFooter,
|
||||||
]}
|
]}
|
||||||
>
|
>
|
||||||
|
@ -9,7 +9,7 @@ import { MODAL_LIST_CREATE } from '../constants'
|
|||||||
import {
|
import {
|
||||||
LinkFooter,
|
LinkFooter,
|
||||||
TrendsPanel,
|
TrendsPanel,
|
||||||
WhoToFollowPanel,
|
UserSuggestionsPanel,
|
||||||
} from '../features/ui/util/async_components'
|
} from '../features/ui/util/async_components'
|
||||||
|
|
||||||
class ListsPage extends React.PureComponent {
|
class ListsPage extends React.PureComponent {
|
||||||
@ -36,7 +36,7 @@ class ListsPage extends React.PureComponent {
|
|||||||
]}
|
]}
|
||||||
layout={[
|
layout={[
|
||||||
TrendsPanel,
|
TrendsPanel,
|
||||||
WhoToFollowPanel,
|
UserSuggestionsPanel,
|
||||||
LinkFooter,
|
LinkFooter,
|
||||||
]}
|
]}
|
||||||
>
|
>
|
||||||
|
@ -5,7 +5,7 @@ import Block from '../components/block'
|
|||||||
import DefaultLayout from '../layouts/default_layout'
|
import DefaultLayout from '../layouts/default_layout'
|
||||||
import {
|
import {
|
||||||
LinkFooter,
|
LinkFooter,
|
||||||
WhoToFollowPanel,
|
UserSuggestionsPanel,
|
||||||
} from '../features/ui/util/async_components'
|
} from '../features/ui/util/async_components'
|
||||||
|
|
||||||
class ModalPage extends React.PureComponent {
|
class ModalPage extends React.PureComponent {
|
||||||
@ -23,7 +23,7 @@ class ModalPage extends React.PureComponent {
|
|||||||
page={page}
|
page={page}
|
||||||
showBackBtn
|
showBackBtn
|
||||||
layout={[
|
layout={[
|
||||||
WhoToFollowPanel,
|
UserSuggestionsPanel,
|
||||||
LinkFooter,
|
LinkFooter,
|
||||||
]}
|
]}
|
||||||
>
|
>
|
||||||
|
@ -2,12 +2,13 @@ import React from 'react'
|
|||||||
import PropTypes from 'prop-types'
|
import PropTypes from 'prop-types'
|
||||||
import PageTitle from '../features/ui/util/page_title'
|
import PageTitle from '../features/ui/util/page_title'
|
||||||
import DefaultLayout from '../layouts/default_layout'
|
import DefaultLayout from '../layouts/default_layout'
|
||||||
|
import WrappedBundle from '../features/ui/util/wrapped_bundle'
|
||||||
import {
|
import {
|
||||||
LinkFooter,
|
LinkFooter,
|
||||||
ProgressPanel,
|
ProgressPanel,
|
||||||
ShopPanel,
|
ShopPanel,
|
||||||
SignUpPanel,
|
SignUpPanel,
|
||||||
VerifiedAccountsPanel,
|
UserSuggestionsPanel,
|
||||||
} from '../features/ui/util/async_components'
|
} from '../features/ui/util/async_components'
|
||||||
|
|
||||||
class NewsPage extends React.PureComponent {
|
class NewsPage extends React.PureComponent {
|
||||||
@ -21,10 +22,11 @@ class NewsPage extends React.PureComponent {
|
|||||||
title={title}
|
title={title}
|
||||||
noComposeButton
|
noComposeButton
|
||||||
showBackBtn
|
showBackBtn
|
||||||
|
noRightSidebar
|
||||||
layout={[
|
layout={[
|
||||||
SignUpPanel,
|
SignUpPanel,
|
||||||
ProgressPanel,
|
ProgressPanel,
|
||||||
VerifiedAccountsPanel,
|
<WrappedBundle component={UserSuggestionsPanel} componentParams={{ suggestionType: 'verified' }} />,
|
||||||
ShopPanel,
|
ShopPanel,
|
||||||
LinkFooter,
|
LinkFooter,
|
||||||
]}
|
]}
|
||||||
|
@ -11,7 +11,7 @@ import {
|
|||||||
LinkFooter,
|
LinkFooter,
|
||||||
NotificationFilterPanel,
|
NotificationFilterPanel,
|
||||||
TrendsPanel,
|
TrendsPanel,
|
||||||
WhoToFollowPanel,
|
UserSuggestionsPanel,
|
||||||
} from '../features/ui/util/async_components'
|
} from '../features/ui/util/async_components'
|
||||||
|
|
||||||
class NotificationsPage extends React.PureComponent {
|
class NotificationsPage extends React.PureComponent {
|
||||||
@ -57,7 +57,7 @@ class NotificationsPage extends React.PureComponent {
|
|||||||
layout={[
|
layout={[
|
||||||
NotificationFilterPanel,
|
NotificationFilterPanel,
|
||||||
TrendsPanel,
|
TrendsPanel,
|
||||||
WhoToFollowPanel,
|
UserSuggestionsPanel,
|
||||||
LinkFooter,
|
LinkFooter,
|
||||||
]}
|
]}
|
||||||
tabs={tabs}
|
tabs={tabs}
|
||||||
|
@ -3,9 +3,10 @@ import PropTypes from 'prop-types'
|
|||||||
import { defineMessages, injectIntl } from 'react-intl'
|
import { defineMessages, injectIntl } from 'react-intl'
|
||||||
import PageTitle from '../features/ui/util/page_title'
|
import PageTitle from '../features/ui/util/page_title'
|
||||||
import DefaultLayout from '../layouts/default_layout'
|
import DefaultLayout from '../layouts/default_layout'
|
||||||
|
import WrappedBundle from '../features/ui/util/wrapped_bundle'
|
||||||
import {
|
import {
|
||||||
LinkFooter,
|
LinkFooter,
|
||||||
VerifiedAccountsPanel,
|
UserSuggestionsPanel,
|
||||||
ProgressPanel,
|
ProgressPanel,
|
||||||
} from '../features/ui/util/async_components'
|
} from '../features/ui/util/async_components'
|
||||||
|
|
||||||
@ -22,7 +23,7 @@ class ProPage extends React.PureComponent {
|
|||||||
page='pro'
|
page='pro'
|
||||||
layout={[
|
layout={[
|
||||||
ProgressPanel,
|
ProgressPanel,
|
||||||
VerifiedAccountsPanel,
|
<WrappedBundle component={UserSuggestionsPanel} componentParams={{ suggestionType: 'verified' }} />,
|
||||||
LinkFooter,
|
LinkFooter,
|
||||||
]}
|
]}
|
||||||
>
|
>
|
||||||
|
@ -9,7 +9,7 @@ import DefaultLayout from '../layouts/default_layout'
|
|||||||
import {
|
import {
|
||||||
LinkFooter,
|
LinkFooter,
|
||||||
TrendsPanel,
|
TrendsPanel,
|
||||||
WhoToFollowPanel,
|
UserSuggestionsPanel,
|
||||||
} from '../features/ui/util/async_components'
|
} from '../features/ui/util/async_components'
|
||||||
|
|
||||||
class ShortcutsPage extends React.PureComponent {
|
class ShortcutsPage extends React.PureComponent {
|
||||||
@ -35,7 +35,7 @@ class ShortcutsPage extends React.PureComponent {
|
|||||||
]}
|
]}
|
||||||
layout={[
|
layout={[
|
||||||
TrendsPanel,
|
TrendsPanel,
|
||||||
WhoToFollowPanel,
|
UserSuggestionsPanel,
|
||||||
LinkFooter,
|
LinkFooter,
|
||||||
]}
|
]}
|
||||||
>
|
>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user