2016-11-16 16:20:52 +00:00
import Column from '../ui/components/column' ;
2016-12-12 13:27:52 +00:00
import ColumnLink from '../ui/components/column_link' ;
2016-10-07 22:30:56 +00:00
import { Link } from 'react-router' ;
2016-12-12 13:27:52 +00:00
import { defineMessages , injectIntl , FormattedMessage } from 'react-intl' ;
import { connect } from 'react-redux' ;
2016-12-26 20:55:52 +00:00
import ImmutablePropTypes from 'react-immutable-proptypes' ;
2016-10-07 14:00:11 +00:00
2016-12-12 13:27:52 +00:00
const messages = defineMessages ( {
heading : { id : 'getting_started.heading' , defaultMessage : 'Getting started' } ,
2017-02-19 19:25:54 +00:00
public _timeline : { id : 'navigation_bar.public_timeline' , defaultMessage : 'Whole Known Network' } ,
community _timeline : { id : 'navigation_bar.community_timeline' , defaultMessage : 'Public timeline' } ,
2017-01-05 03:47:02 +00:00
preferences : { id : 'navigation_bar.preferences' , defaultMessage : 'Preferences' } ,
2017-01-07 23:41:57 +00:00
follow _requests : { id : 'navigation_bar.follow_requests' , defaultMessage : 'Follow requests' } ,
2017-01-16 12:27:58 +00:00
sign _out : { id : 'navigation_bar.logout' , defaultMessage : 'Sign out' } ,
2017-02-05 18:22:05 +00:00
favourites : { id : 'navigation_bar.favourites' , defaultMessage : 'Favourites' } ,
2017-02-06 22:16:20 +00:00
blocks : { id : 'navigation_bar.blocks' , defaultMessage : 'Blocked users' } ,
info : { id : 'navigation_bar.info' , defaultMessage : 'Extended information' }
2016-12-12 13:27:52 +00:00
} ) ;
const mapStateToProps = state => ( {
2016-12-26 20:55:52 +00:00
me : state . getIn ( [ 'accounts' , state . getIn ( [ 'meta' , 'me' ] ) ] )
2016-12-12 13:27:52 +00:00
} ) ;
const GettingStarted = ( { intl , me } ) => {
2016-12-26 20:55:52 +00:00
let followRequests = '' ;
if ( me . get ( 'locked' ) ) {
followRequests = < ColumnLink icon = 'users' text = { intl . formatMessage ( messages . follow _requests ) } to = '/follow_requests' / > ;
}
2016-10-06 20:47:35 +00:00
return (
2016-12-12 13:27:52 +00:00
< Column icon = 'asterisk' heading = { intl . formatMessage ( messages . heading ) } >
< div style = { { position : 'relative' } } >
2017-02-19 19:25:54 +00:00
< ColumnLink icon = 'users' text = { intl . formatMessage ( messages . community _timeline ) } to = '/timelines/community' / >
2016-12-12 13:27:52 +00:00
< ColumnLink icon = 'globe' text = { intl . formatMessage ( messages . public _timeline ) } to = '/timelines/public' / >
2017-01-05 03:47:02 +00:00
< ColumnLink icon = 'cog' text = { intl . formatMessage ( messages . preferences ) } href = '/settings/preferences' / >
2017-01-16 12:27:58 +00:00
< ColumnLink icon = 'star' text = { intl . formatMessage ( messages . favourites ) } to = '/favourites' / >
2016-12-26 20:55:52 +00:00
{ followRequests }
2017-02-07 22:48:50 +00:00
< ColumnLink icon = 'ban' text = { intl . formatMessage ( messages . blocks ) } to = '/blocks' / >
2017-02-06 22:16:20 +00:00
< ColumnLink icon = 'book' text = { intl . formatMessage ( messages . info ) } href = '/about/more' / >
2017-01-16 10:35:32 +00:00
< ColumnLink icon = 'sign-out' text = { intl . formatMessage ( messages . sign _out ) } href = '/auth/sign_out' method = 'delete' / >
2016-12-12 13:27:52 +00:00
< / div >
2017-01-05 02:14:33 +00:00
< div className = 'scrollable optionally-scrollable' >
< div className = 'static-content getting-started' >
< p > < FormattedMessage id = 'getting_started.about_addressing' defaultMessage = 'You can follow people if you know their username and the domain they are on by entering an e-mail-esque address into the form at the top of the sidebar.' / > < / p >
< p > < FormattedMessage id = 'getting_started.about_shortcuts' defaultMessage = 'If the target user is on the same domain as you, just the username will work. The same rule applies to mentioning people in statuses.' / > < / p >
< p > < FormattedMessage id = 'getting_started.about_developer' defaultMessage = 'The developer of this project can be followed as Gargron@mastodon.social' / > < / p >
2017-02-17 19:50:50 +00:00
< p > < FormattedMessage id = 'getting_started.open_source_notice' defaultMessage = 'Mastodon is open source software. You can contribute or report issues on github at {github}' values = { { github : < a href = "https://github.com/tootsuite/mastodon" target = "_blank" > tootsuite / mastodon < / a > } } / > < / p >
2017-01-05 02:14:33 +00:00
< / div >
2016-10-07 14:00:11 +00:00
< / div >
< / Column >
2016-10-06 20:47:35 +00:00
) ;
} ;
2016-12-26 20:33:51 +00:00
GettingStarted . propTypes = {
intl : React . PropTypes . object . isRequired ,
2016-12-26 20:55:52 +00:00
me : ImmutablePropTypes . map . isRequired
2016-12-26 20:33:51 +00:00
} ;
2016-12-12 13:27:52 +00:00
export default connect ( mapStateToProps ) ( injectIntl ( GettingStarted ) ) ;