@ -16,10 +16,8 @@ const messages = defineMessages({
blocks : { id : 'navigation_bar.blocks' , defaultMessage : 'Blocked users' } ,
blocks : { id : 'navigation_bar.blocks' , defaultMessage : 'Blocked users' } ,
domain _blocks : { id : 'navigation_bar.domain_blocks' , defaultMessage : 'Hidden domains' } ,
domain _blocks : { id : 'navigation_bar.domain_blocks' , defaultMessage : 'Hidden domains' } ,
mutes : { id : 'navigation_bar.mutes' , defaultMessage : 'Muted users' } ,
mutes : { id : 'navigation_bar.mutes' , defaultMessage : 'Muted users' } ,
info : { id : 'navigation_bar.info' , defaultMessage : 'Extended information' } ,
show _me _around : { id : 'getting_started.onboarding' , defaultMessage : 'Show me around' } ,
show _me _around : { id : 'getting_started.onboarding' , defaultMessage : 'Show me around' } ,
pins : { id : 'navigation_bar.pins' , defaultMessage : 'Pinned posts' } ,
pins : { id : 'navigation_bar.pins' , defaultMessage : 'Pinned posts' } ,
info : { id : 'navigation_bar.info' , defaultMessage : 'Extended information' } ,
keyboard _shortcuts : { id : 'navigation_bar.keyboard_shortcuts' , defaultMessage : 'Keyboard shortcuts' } ,
keyboard _shortcuts : { id : 'navigation_bar.keyboard_shortcuts' , defaultMessage : 'Keyboard shortcuts' } ,
featured _users : { id : 'navigation_bar.featured_users' , defaultMessage : 'Featured users' } ,
featured _users : { id : 'navigation_bar.featured_users' , defaultMessage : 'Featured users' } ,
} ) ;
} ) ;
@ -28,6 +26,11 @@ export default @connect()
@ injectIntl
@ injectIntl
class gettingStartedMisc extends ImmutablePureComponent {
class gettingStartedMisc extends ImmutablePureComponent {
static contextTypes = {
router : PropTypes . object . isRequired ,
identity : PropTypes . object ,
} ;
static propTypes = {
static propTypes = {
intl : PropTypes . object . isRequired ,
intl : PropTypes . object . isRequired ,
dispatch : PropTypes . func . isRequired ,
dispatch : PropTypes . func . isRequired ,
@ -43,8 +46,7 @@ class gettingStartedMisc extends ImmutablePureComponent {
render ( ) {
render ( ) {
const { intl } = this . props ;
const { intl } = this . props ;
const { signedIn } = this . context . identity ;
let i = 1 ;
return (
return (
< Column icon = 'ellipsis-h' heading = { intl . formatMessage ( messages . heading ) } >
< Column icon = 'ellipsis-h' heading = { intl . formatMessage ( messages . heading ) } >
@ -52,15 +54,14 @@ class gettingStartedMisc extends ImmutablePureComponent {
< div className = 'scrollable' >
< div className = 'scrollable' >
< ColumnSubheading text = { intl . formatMessage ( messages . subheading ) } / >
< ColumnSubheading text = { intl . formatMessage ( messages . subheading ) } / >
< ColumnLink key = '{i++}' icon = 'star' text = { intl . formatMessage ( messages . favourites ) } to = '/favourites' / >
{ signedIn && ( < ColumnLink key = 'favourites' icon = 'star' text = { intl . formatMessage ( messages . favourites ) } to = '/favourites' / > ) }
< ColumnLink key = '{i++}' icon = 'thumb-tack' text = { intl . formatMessage ( messages . pins ) } to = '/pinned' / >
{ signedIn && ( < ColumnLink key = 'pinned' icon = 'thumb-tack' text = { intl . formatMessage ( messages . pins ) } to = '/pinned' / > ) }
< ColumnLink key = '{i++}' icon = 'users' text = { intl . formatMessage ( messages . featured _users ) } onClick = { this . openFeaturedAccountsModal } / >
{ signedIn && ( < ColumnLink key = 'featured_users' icon = 'users' text = { intl . formatMessage ( messages . featured _users ) } onClick = { this . openFeaturedAccountsModal } / > ) }
< ColumnLink key = '{i++}' icon = 'volume-off' text = { intl . formatMessage ( messages . mutes ) } to = '/mutes' / >
{ signedIn && ( < ColumnLink key = 'mutes' icon = 'volume-off' text = { intl . formatMessage ( messages . mutes ) } to = '/mutes' / > ) }
< ColumnLink key = '{i++}' icon = 'ban' text = { intl . formatMessage ( messages . blocks ) } to = '/blocks' / >
{ signedIn && ( < ColumnLink key = 'blocks' icon = 'ban' text = { intl . formatMessage ( messages . blocks ) } to = '/blocks' / > ) }
< ColumnLink key = '{i++}' icon = 'minus-circle' text = { intl . formatMessage ( messages . domain _blocks ) } to = '/domain_blocks' / >
{ signedIn && ( < ColumnLink key = 'domain_blocks' icon = 'minus-circle' text = { intl . formatMessage ( messages . domain _blocks ) } to = '/domain_blocks' / > ) }
< ColumnLink key = '{i++}' icon = 'question' text = { intl . formatMessage ( messages . keyboard _shortcuts ) } to = '/keyboard-shortcuts' / >
< ColumnLink key = 'shortcuts' icon = 'question' text = { intl . formatMessage ( messages . keyboard _shortcuts ) } to = '/keyboard-shortcuts' / >
< ColumnLink key = '{i++}' icon = 'book' text = { intl . formatMessage ( messages . info ) } href = '/about/more' / >
{ signedIn && ( < ColumnLink key = 'onboarding' icon = 'hand-o-right' text = { intl . formatMessage ( messages . show _me _around ) } onClick = { this . openOnboardingModal } / > ) }
< ColumnLink key = '{i++}' icon = 'hand-o-right' text = { intl . formatMessage ( messages . show _me _around ) } onClick = { this . openOnboardingModal } / >
< / div >
< / div >
< / Column >
< / Column >
) ;
) ;