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';
|
2017-10-30 22:27:48 -04:00
|
|
|
import { me } from '../../initial_state';
|
2017-05-02 20:04:16 -04:00
|
|
|
|
|
|
|
const messages = defineMessages({
|
|
|
|
heading: { id: 'getting_started.heading', defaultMessage: 'Getting started' },
|
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
|
|
|
navigation_subheading: { id: 'column_subheading.navigation', defaultMessage: 'Navigation' },
|
|
|
|
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' },
|
|
|
|
preferences: { id: 'navigation_bar.preferences', defaultMessage: 'Preferences' },
|
|
|
|
follow_requests: { id: 'navigation_bar.follow_requests', defaultMessage: 'Follow requests' },
|
|
|
|
sign_out: { id: 'navigation_bar.logout', defaultMessage: 'Logout' },
|
|
|
|
favourites: { id: 'navigation_bar.favourites', defaultMessage: 'Favourites' },
|
|
|
|
blocks: { id: 'navigation_bar.blocks', defaultMessage: 'Blocked users' },
|
|
|
|
mutes: { id: 'navigation_bar.mutes', defaultMessage: 'Muted users' },
|
2017-05-20 11:31:47 -04:00
|
|
|
info: { id: 'navigation_bar.info', defaultMessage: 'Extended information' },
|
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' },
|
2017-12-03 15:29:51 -05:00
|
|
|
keyboard_shortcuts: { id: 'navigation_bar.keyboard_shortcuts', defaultMessage: 'Keyboard shortcuts' },
|
2017-05-02 20:04:16 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
const mapStateToProps = state => ({
|
2017-10-30 22:27:48 -04:00
|
|
|
myAccount: state.getIn(['accounts', me]),
|
2017-06-03 19:39:38 -04:00
|
|
|
columns: state.getIn(['settings', 'columns']),
|
2017-05-02 20:04:16 -04:00
|
|
|
});
|
|
|
|
|
2017-06-23 13:36:54 -04:00
|
|
|
@connect(mapStateToProps)
|
|
|
|
@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,
|
2017-05-12 08:44:10 -04:00
|
|
|
};
|
|
|
|
|
2017-05-02 20:04:16 -04:00
|
|
|
render () {
|
2017-10-30 22:27:48 -04:00
|
|
|
const { intl, myAccount, columns, multiColumn } = this.props;
|
2017-05-02 20:04:16 -04:00
|
|
|
|
2017-06-03 19:39:38 -04:00
|
|
|
let navItems = [];
|
|
|
|
|
|
|
|
if (multiColumn) {
|
|
|
|
if (!columns.find(item => item.get('id') === 'HOME')) {
|
|
|
|
navItems.push(<ColumnLink key='0' icon='home' text={intl.formatMessage(messages.home_timeline)} to='/timelines/home' />);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!columns.find(item => item.get('id') === 'NOTIFICATIONS')) {
|
|
|
|
navItems.push(<ColumnLink key='1' icon='bell' text={intl.formatMessage(messages.notifications)} to='/notifications' />);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!columns.find(item => item.get('id') === 'COMMUNITY')) {
|
|
|
|
navItems.push(<ColumnLink key='2' icon='users' text={intl.formatMessage(messages.community_timeline)} to='/timelines/public/local' />);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!columns.find(item => item.get('id') === 'PUBLIC')) {
|
|
|
|
navItems.push(<ColumnLink key='3' icon='globe' text={intl.formatMessage(messages.public_timeline)} to='/timelines/public' />);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
navItems = navItems.concat([
|
|
|
|
<ColumnLink key='4' icon='star' text={intl.formatMessage(messages.favourites)} to='/favourites' />,
|
2017-09-07 03:58:11 -04:00
|
|
|
<ColumnLink key='5' icon='thumb-tack' text={intl.formatMessage(messages.pins)} to='/pinned' />,
|
2017-12-23 22:47:02 -05:00
|
|
|
<ColumnLink key='6' icon='bars' text={intl.formatMessage(messages.lists)} to='/lists' />,
|
2017-06-03 19:39:38 -04:00
|
|
|
]);
|
2017-05-02 20:04:16 -04:00
|
|
|
|
2017-10-30 22:27:48 -04:00
|
|
|
if (myAccount.get('locked')) {
|
2017-12-23 22:47:02 -05:00
|
|
|
navItems.push(<ColumnLink key='7' icon='users' text={intl.formatMessage(messages.follow_requests)} to='/follow_requests' />);
|
2017-05-02 20:04:16 -04:00
|
|
|
}
|
|
|
|
|
2017-06-03 19:39:38 -04:00
|
|
|
navItems = navItems.concat([
|
2017-12-23 22:47:02 -05:00
|
|
|
<ColumnLink key='8' icon='volume-off' text={intl.formatMessage(messages.mutes)} to='/mutes' />,
|
|
|
|
<ColumnLink key='9' icon='ban' text={intl.formatMessage(messages.blocks)} to='/blocks' />,
|
2017-06-03 19:39:38 -04:00
|
|
|
]);
|
|
|
|
|
2017-12-23 22:47:02 -05:00
|
|
|
if (multiColumn) {
|
|
|
|
navItems.push(<ColumnLink key='10' icon='question' text={intl.formatMessage(messages.keyboard_shortcuts)} to='/keyboard-shortcuts' />);
|
|
|
|
}
|
|
|
|
|
2017-05-02 20:04:16 -04:00
|
|
|
return (
|
2017-06-06 07:20:07 -04:00
|
|
|
<Column icon='asterisk' heading={intl.formatMessage(messages.heading)} hideHeadingOnMobile>
|
2017-05-02 20:04:16 -04:00
|
|
|
<div className='getting-started__wrapper'>
|
2017-06-06 07:20:07 -04:00
|
|
|
<ColumnSubheading text={intl.formatMessage(messages.navigation_subheading)} />
|
2017-06-03 19:39:38 -04:00
|
|
|
{navItems}
|
2017-06-06 07:20:07 -04:00
|
|
|
<ColumnSubheading text={intl.formatMessage(messages.settings_subheading)} />
|
2017-05-02 20:04:16 -04:00
|
|
|
<ColumnLink icon='book' text={intl.formatMessage(messages.info)} href='/about/more' />
|
|
|
|
<ColumnLink icon='cog' text={intl.formatMessage(messages.preferences)} href='/settings/preferences' />
|
|
|
|
<ColumnLink icon='sign-out' text={intl.formatMessage(messages.sign_out)} href='/auth/sign_out' method='delete' />
|
|
|
|
</div>
|
|
|
|
|
2017-05-19 05:42:54 -04:00
|
|
|
<div className='getting-started__footer scrollable optionally-scrollable'>
|
2017-05-02 20:04:16 -04:00
|
|
|
<div className='static-content getting-started'>
|
2017-05-17 21:05:30 -04:00
|
|
|
<p>
|
2017-06-12 21:55:28 -04:00
|
|
|
<a href='https://github.com/tootsuite/documentation/blob/master/Using-Mastodon/FAQ.md' rel='noopener' target='_blank'><FormattedMessage id='getting_started.faq' defaultMessage='FAQ' /></a> • <a href='https://github.com/tootsuite/documentation/blob/master/Using-Mastodon/User-guide.md' rel='noopener' target='_blank'><FormattedMessage id='getting_started.userguide' defaultMessage='User Guide' /></a> • <a href='https://github.com/tootsuite/documentation/blob/master/Using-Mastodon/Apps.md' rel='noopener' target='_blank'><FormattedMessage id='getting_started.appsshort' defaultMessage='Apps' /></a>
|
2017-05-17 21:05:30 -04:00
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
<FormattedMessage
|
|
|
|
id='getting_started.open_source_notice'
|
|
|
|
defaultMessage='Mastodon is open source software. You can contribute or report issues on GitHub at {github}.'
|
2017-06-05 21:56:36 -04:00
|
|
|
values={{ github: <a href='https://github.com/tootsuite/mastodon' rel='noopener' target='_blank'>tootsuite/mastodon</a> }}
|
2017-05-17 21:05:30 -04:00
|
|
|
/>
|
|
|
|
</p>
|
2017-05-02 20:04:16 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</Column>
|
|
|
|
);
|
|
|
|
}
|
2017-05-20 11:31:47 -04:00
|
|
|
|
2017-05-02 20:04:16 -04:00
|
|
|
}
|