2017-05-02 20:04:16 -04:00
import React from 'react' ;
import Column from '../ui/components/column' ;
import ColumnLink from '../ui/components/column_link' ;
import ColumnSubheading from '../ui/components/column_subheading' ;
import { defineMessages , injectIntl , FormattedMessage } from 'react-intl' ;
import { connect } from 'react-redux' ;
import PropTypes from 'prop-types' ;
import ImmutablePropTypes from 'react-immutable-proptypes' ;
import ImmutablePureComponent from 'react-immutable-pure-component' ;
2018-07-13 21:56:34 -04:00
import { me , invitesEnabled , version } from '../../initial_state' ;
2018-01-21 07:20:20 -05:00
import { fetchFollowRequests } from '../../actions/accounts' ;
import { List as ImmutableList } from 'immutable' ;
2018-05-30 12:41:47 -04:00
import { Link } from 'react-router-dom' ;
import NavigationBar from '../compose/components/navigation_bar' ;
2017-05-02 20:04:16 -04:00
const messages = defineMessages ( {
2017-06-03 19:39:38 -04:00
home _timeline : { id : 'tabs_bar.home' , defaultMessage : 'Home' } ,
notifications : { id : 'tabs_bar.notifications' , defaultMessage : 'Notifications' } ,
2017-05-02 20:04:16 -04:00
public _timeline : { id : 'navigation_bar.public_timeline' , defaultMessage : 'Federated timeline' } ,
2017-06-01 11:25:10 -04:00
settings _subheading : { id : 'column_subheading.settings' , defaultMessage : 'Settings' } ,
2017-05-02 20:04:16 -04:00
community _timeline : { id : 'navigation_bar.community_timeline' , defaultMessage : 'Local timeline' } ,
2018-04-18 07:09:06 -04:00
direct : { id : 'navigation_bar.direct' , defaultMessage : 'Direct messages' } ,
2017-05-02 20:04:16 -04:00
preferences : { id : 'navigation_bar.preferences' , defaultMessage : 'Preferences' } ,
follow _requests : { id : 'navigation_bar.follow_requests' , defaultMessage : 'Follow requests' } ,
favourites : { id : 'navigation_bar.favourites' , defaultMessage : 'Favourites' } ,
blocks : { id : 'navigation_bar.blocks' , defaultMessage : 'Blocked users' } ,
2018-03-30 06:38:00 -04:00
domain _blocks : { id : 'navigation_bar.domain_blocks' , defaultMessage : 'Hidden domains' } ,
2017-05-02 20:04:16 -04:00
mutes : { id : 'navigation_bar.mutes' , defaultMessage : 'Muted users' } ,
2017-09-07 03:58:11 -04:00
pins : { id : 'navigation_bar.pins' , defaultMessage : 'Pinned toots' } ,
2017-12-05 17:02:27 -05:00
lists : { id : 'navigation_bar.lists' , defaultMessage : 'Lists' } ,
2018-05-30 12:41:47 -04:00
discover : { id : 'navigation_bar.discover' , defaultMessage : 'Discover' } ,
personal : { id : 'navigation_bar.personal' , defaultMessage : 'Personal' } ,
security : { id : 'navigation_bar.security' , defaultMessage : 'Security' } ,
2017-05-02 20:04:16 -04:00
} ) ;
const mapStateToProps = state => ( {
2017-10-30 22:27:48 -04:00
myAccount : state . getIn ( [ 'accounts' , me ] ) ,
2018-01-21 07:20:20 -05:00
unreadFollowRequests : state . getIn ( [ 'user_lists' , 'follow_requests' , 'items' ] , ImmutableList ( ) ) . size ,
2017-05-02 20:04:16 -04:00
} ) ;
2018-01-21 07:20:20 -05:00
const mapDispatchToProps = dispatch => ( {
fetchFollowRequests : ( ) => dispatch ( fetchFollowRequests ( ) ) ,
} ) ;
const badgeDisplay = ( number , limit ) => {
if ( number === 0 ) {
return undefined ;
} else if ( limit && number >= limit ) {
return ` ${ limit } + ` ;
} else {
return number ;
}
} ;
@ connect ( mapStateToProps , mapDispatchToProps )
2017-06-23 13:36:54 -04:00
@ injectIntl
export default class GettingStarted extends ImmutablePureComponent {
2017-05-02 20:04:16 -04:00
2017-05-12 08:44:10 -04:00
static propTypes = {
intl : PropTypes . object . isRequired ,
2017-10-30 22:27:48 -04:00
myAccount : ImmutablePropTypes . map . isRequired ,
2017-06-03 19:39:38 -04:00
columns : ImmutablePropTypes . list ,
multiColumn : PropTypes . bool ,
2018-01-21 07:20:20 -05:00
fetchFollowRequests : PropTypes . func . isRequired ,
unreadFollowRequests : PropTypes . number ,
unreadNotifications : PropTypes . number ,
2017-05-12 08:44:10 -04:00
} ;
2018-01-21 07:20:20 -05:00
componentDidMount ( ) {
const { myAccount , fetchFollowRequests } = this . props ;
if ( myAccount . get ( 'locked' ) ) {
fetchFollowRequests ( ) ;
}
2018-05-31 10:46:02 -04:00
}
2017-05-02 20:04:16 -04:00
render ( ) {
2018-06-01 08:22:42 -04:00
const { intl , myAccount , multiColumn , unreadFollowRequests } = this . props ;
2017-05-02 20:04:16 -04:00
2018-01-01 23:28:49 -05:00
const navItems = [ ] ;
2018-06-01 08:02:49 -04:00
let i = 1 ;
2018-06-20 09:22:07 -04:00
let height = ( multiColumn ) ? 0 : 60 ;
2017-06-03 19:39:38 -04:00
if ( multiColumn ) {
2018-05-30 12:41:47 -04:00
navItems . push (
2018-06-01 08:02:49 -04:00
< ColumnSubheading key = { i ++ } text = { intl . formatMessage ( messages . discover ) } / > ,
< ColumnLink key = { i ++ } icon = 'users' text = { intl . formatMessage ( messages . community _timeline ) } to = '/timelines/public/local' / > ,
< ColumnLink key = { i ++ } icon = 'globe' text = { intl . formatMessage ( messages . public _timeline ) } to = '/timelines/public' / > ,
< ColumnSubheading key = { i ++ } text = { intl . formatMessage ( messages . personal ) } / >
2018-05-30 12:41:47 -04:00
) ;
2018-06-01 13:18:37 -04:00
height += 34 * 2 + 48 * 2 ;
2018-04-18 07:09:06 -04:00
}
2018-01-01 23:28:49 -05:00
navItems . push (
2018-06-01 08:02:49 -04:00
< ColumnLink key = { i ++ } icon = 'envelope' text = { intl . formatMessage ( messages . direct ) } to = '/timelines/direct' / > ,
< ColumnLink key = { i ++ } icon = 'star' text = { intl . formatMessage ( messages . favourites ) } to = '/favourites' / > ,
2018-06-18 09:33:11 -04:00
< ColumnLink key = { i ++ } icon = 'list-ul' text = { intl . formatMessage ( messages . lists ) } to = '/lists' / >
2018-01-01 23:28:49 -05:00
) ;
2017-05-02 20:04:16 -04:00
2018-06-01 13:18:37 -04:00
height += 48 * 3 ;
2017-10-30 22:27:48 -04:00
if ( myAccount . get ( 'locked' ) ) {
2018-06-01 08:02:49 -04:00
navItems . push ( < ColumnLink key = { i ++ } icon = 'users' text = { intl . formatMessage ( messages . follow _requests ) } badge = { badgeDisplay ( unreadFollowRequests , 40 ) } to = '/follow_requests' / > ) ;
2018-06-01 13:18:37 -04:00
height += 48 ;
2017-05-02 20:04:16 -04:00
}
2018-05-30 12:41:47 -04:00
if ( ! multiColumn ) {
navItems . push (
2018-06-01 08:02:49 -04:00
< ColumnSubheading key = { i ++ } text = { intl . formatMessage ( messages . settings _subheading ) } / > ,
< ColumnLink key = { i ++ } icon = 'gears' text = { intl . formatMessage ( messages . preferences ) } href = '/settings/preferences' / > ,
2018-05-30 12:41:47 -04:00
) ;
2018-06-01 13:18:37 -04:00
2018-06-20 09:22:07 -04:00
height += 34 + 48 ;
2017-12-23 22:47:02 -05:00
}
2017-05-02 20:04:16 -04:00
return (
2018-05-30 12:41:47 -04:00
< Column >
{ multiColumn && < div className = 'column-header__wrapper' >
< h1 className = 'column-header' >
< button >
< i className = 'fa fa-bars fa-fw column-header__icon' / >
< FormattedMessage id = 'getting_started.heading' defaultMessage = 'Getting started' / >
< / b u t t o n >
< / h 1 >
< / d i v > }
2018-06-01 13:18:37 -04:00
< div className = 'getting-started__wrapper' style = { { height } } >
2018-05-30 12:41:47 -04:00
{ ! multiColumn && < NavigationBar account = { myAccount } / > }
2017-06-03 19:39:38 -04:00
{ navItems }
2017-05-02 20:04:16 -04:00
< / d i v >
2018-05-30 12:41:47 -04:00
{ ! multiColumn && < div className = 'flex-spacer' / > }
< div className = 'getting-started getting-started__footer' >
< ul >
2018-06-15 09:51:37 -04:00
< li > < a href = 'https://bridge.joinmastodon.org/' target = '_blank' > < FormattedMessage id = 'getting_started.find_friends' defaultMessage = 'Find friends from Twitter' / > < / a > · < / l i >
{ invitesEnabled && < li > < a href = '/invites' target = '_blank' > < FormattedMessage id = 'getting_started.invite' defaultMessage = 'Invite people' / > < / a > · < / l i > }
2018-05-30 12:41:47 -04:00
{ multiColumn && < li > < Link to = '/keyboard-shortcuts' > < FormattedMessage id = 'navigation_bar.keyboard_shortcuts' defaultMessage = 'Hotkeys' / > < / L i n k > · < / l i > }
2018-06-15 09:51:37 -04:00
< li > < a href = '/auth/edit' > < FormattedMessage id = 'getting_started.security' defaultMessage = 'Security' / > < / a > · < / l i >
2018-05-30 12:41:47 -04:00
< li > < a href = '/about/more' target = '_blank' > < FormattedMessage id = 'navigation_bar.info' defaultMessage = 'About this instance' / > < / a > · < / l i >
< li > < a href = '/terms' target = '_blank' > < FormattedMessage id = 'getting_started.terms' defaultMessage = 'Terms of service' / > < / a > · < / l i >
2018-06-15 09:51:37 -04:00
< li > < a href = '/settings/applications' target = '_blank' > < FormattedMessage id = 'getting_started.developers' defaultMessage = 'Developers' / > < / a > · < / l i >
2018-05-30 12:41:47 -04:00
< li > < a href = 'https://github.com/tootsuite/documentation#documentation' target = '_blank' > < FormattedMessage id = 'getting_started.documentation' defaultMessage = 'Documentation' / > < / a > · < / l i >
< li > < a href = '/auth/sign_out' data - method = 'delete' > < FormattedMessage id = 'navigation_bar.logout' defaultMessage = 'Logout' / > < / a > < / l i >
< / u l >
2017-12-26 21:31:30 -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}.'
2018-07-13 21:56:34 -04:00
values = { { github : < span > < a href = 'https://github.com/tootsuite/mastodon' rel = 'noopener' target = '_blank' > tootsuite / mastodon < / a > ( v { v e r s i o n } ) < / s p a n > } }
2017-12-26 21:31:30 -05:00
/ >
< / p >
2017-05-02 20:04:16 -04:00
< / d i v >
< / C o l u m n >
) ;
}
2017-05-20 11:31:47 -04:00
2017-05-02 20:04:16 -04:00
}