2016-11-16 11:20:52 -05:00
import Column from '../ui/components/column' ;
2016-12-12 08:27:52 -05:00
import ColumnLink from '../ui/components/column_link' ;
2016-10-07 18:30:56 -04:00
import { Link } from 'react-router' ;
2016-12-12 08:27:52 -05:00
import { defineMessages , injectIntl , FormattedMessage } from 'react-intl' ;
import { connect } from 'react-redux' ;
2016-12-26 15:55:52 -05:00
import ImmutablePropTypes from 'react-immutable-proptypes' ;
2016-10-07 10:00:11 -04:00
2016-12-12 08:27:52 -05:00
const messages = defineMessages ( {
heading : { id : 'getting_started.heading' , defaultMessage : 'Getting started' } ,
public _timeline : { id : 'navigation_bar.public_timeline' , defaultMessage : 'Public timeline' } ,
2017-01-04 22:47:02 -05:00
preferences : { id : 'navigation_bar.preferences' , defaultMessage : 'Preferences' } ,
2017-01-07 18:41:57 -05:00
follow _requests : { id : 'navigation_bar.follow_requests' , defaultMessage : 'Follow requests' } ,
2017-01-16 07:27:58 -05:00
sign _out : { id : 'navigation_bar.logout' , defaultMessage : 'Sign out' } ,
2017-02-05 13:22:05 -05:00
favourites : { id : 'navigation_bar.favourites' , defaultMessage : 'Favourites' } ,
blocks : { id : 'navigation_bar.blocks' , defaultMessage : 'Blocked users' }
2016-12-12 08:27:52 -05:00
} ) ;
const mapStateToProps = state => ( {
2016-12-26 15:55:52 -05:00
me : state . getIn ( [ 'accounts' , state . getIn ( [ 'meta' , 'me' ] ) ] )
2016-12-12 08:27:52 -05:00
} ) ;
const GettingStarted = ( { intl , me } ) => {
2016-12-26 15:55:52 -05:00
let followRequests = '' ;
if ( me . get ( 'locked' ) ) {
followRequests = < ColumnLink icon = 'users' text = { intl . formatMessage ( messages . follow _requests ) } to = '/follow_requests' / > ;
}
2016-10-06 16:47:35 -04:00
return (
2016-12-12 08:27:52 -05:00
< Column icon = 'asterisk' heading = { intl . formatMessage ( messages . heading ) } >
< div style = { { position : 'relative' } } >
< ColumnLink icon = 'globe' text = { intl . formatMessage ( messages . public _timeline ) } to = '/timelines/public' / >
2017-01-04 22:47:02 -05:00
< ColumnLink icon = 'cog' text = { intl . formatMessage ( messages . preferences ) } href = '/settings/preferences' / >
2017-01-16 07:27:58 -05:00
< ColumnLink icon = 'star' text = { intl . formatMessage ( messages . favourites ) } to = '/favourites' / >
2016-12-26 15:55:52 -05:00
{ followRequests }
2017-02-05 13:22:05 -05:00
< ColumnLink icon = 'users' text = { intl . formatMessage ( messages . blocks ) } to = '/blocks' / >
2017-01-16 05:35:32 -05:00
< ColumnLink icon = 'sign-out' text = { intl . formatMessage ( messages . sign _out ) } href = '/auth/sign_out' method = 'delete' / >
2016-12-12 08:27:52 -05:00
< / div >
2017-01-04 21:14:33 -05: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-01-08 00:23:22 -05: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 style = { { color : '#616b86' } } href = "https://github.com/tootsuite/mastodon" > tootsuite / mastodon < / a > } } / > < / p >
2017-01-04 21:14:33 -05:00
< / div >
2016-10-07 10:00:11 -04:00
< / div >
< / Column >
2016-10-06 16:47:35 -04:00
) ;
} ;
2016-12-26 15:33:51 -05:00
GettingStarted . propTypes = {
intl : React . PropTypes . object . isRequired ,
2016-12-26 15:55:52 -05:00
me : ImmutablePropTypes . map . isRequired
2016-12-26 15:33:51 -05:00
} ;
2016-12-12 08:27:52 -05:00
export default connect ( mapStateToProps ) ( injectIntl ( GettingStarted ) ) ;