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';
|
2019-08-06 11:57:52 -04:00
|
|
|
import { me, profile_directory, showTrends } from '../../initial_state';
|
2019-05-22 19:35:22 -04:00
|
|
|
import { fetchFollowRequests } from 'mastodon/actions/accounts';
|
2018-01-21 07:20:20 -05:00
|
|
|
import { List as ImmutableList } from 'immutable';
|
2018-05-30 12:41:47 -04:00
|
|
|
import NavigationBar from '../compose/components/navigation_bar';
|
2019-01-31 18:14:05 -05:00
|
|
|
import Icon from 'mastodon/components/icon';
|
2019-05-27 15:58:41 -04:00
|
|
|
import LinkFooter from 'mastodon/features/ui/components/link_footer';
|
2019-08-06 11:57:52 -04:00
|
|
|
import TrendsContainer from './containers/trends_container';
|
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' },
|
2018-08-23 11:26:21 -04:00
|
|
|
menu: { id: 'getting_started.heading', defaultMessage: 'Getting started' },
|
2019-01-07 17:59:06 -05:00
|
|
|
profile_directory: { id: 'getting_started.directory', defaultMessage: 'Profile directory' },
|
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;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-05-25 20:55:37 -04:00
|
|
|
const NAVIGATION_PANEL_BREAKPOINT = 600 + (285 * 2) + (10 * 2);
|
|
|
|
|
2018-09-14 11:59:48 -04:00
|
|
|
export default @connect(mapStateToProps, mapDispatchToProps)
|
2017-06-23 13:36:54 -04:00
|
|
|
@injectIntl
|
2018-09-14 11:59:48 -04:00
|
|
|
class GettingStarted extends ImmutablePureComponent {
|
2017-05-02 20:04:16 -04:00
|
|
|
|
2019-05-25 20:55:37 -04:00
|
|
|
static contextTypes = {
|
|
|
|
router: PropTypes.object.isRequired,
|
|
|
|
};
|
|
|
|
|
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 () {
|
2019-05-26 06:22:33 -04:00
|
|
|
const { myAccount, fetchFollowRequests, multiColumn } = this.props;
|
2018-01-21 07:20:20 -05:00
|
|
|
|
2019-05-26 06:22:33 -04:00
|
|
|
if (!multiColumn && window.innerWidth >= NAVIGATION_PANEL_BREAKPOINT) {
|
2019-05-25 20:55:37 -04:00
|
|
|
this.context.router.history.replace('/timelines/home');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-01-21 07:20:20 -05:00
|
|
|
if (myAccount.get('locked')) {
|
|
|
|
fetchFollowRequests();
|
|
|
|
}
|
2018-05-31 10:46:02 -04:00
|
|
|
}
|
|
|
|
|
2017-05-02 20:04:16 -04:00
|
|
|
render () {
|
2019-05-25 15:27:00 -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' />,
|
2019-01-07 17:59:06 -05:00
|
|
|
);
|
|
|
|
|
|
|
|
height += 34 + 48*2;
|
|
|
|
|
|
|
|
if (profile_directory) {
|
|
|
|
navItems.push(
|
2019-08-29 18:14:36 -04:00
|
|
|
<ColumnLink key={i++} icon='address-book' text={intl.formatMessage(messages.profile_directory)} to='/directory' />
|
2019-01-07 17:59:06 -05:00
|
|
|
);
|
|
|
|
|
|
|
|
height += 48;
|
|
|
|
}
|
|
|
|
|
|
|
|
navItems.push(
|
2018-06-01 08:02:49 -04:00
|
|
|
<ColumnSubheading key={i++} text={intl.formatMessage(messages.personal)} />
|
2018-05-30 12:41:47 -04:00
|
|
|
);
|
2018-06-01 13:18:37 -04:00
|
|
|
|
2019-01-07 17:59:06 -05:00
|
|
|
height += 34;
|
|
|
|
} else if (profile_directory) {
|
|
|
|
navItems.push(
|
2019-08-29 18:14:36 -04:00
|
|
|
<ColumnLink key={i++} icon='address-book' text={intl.formatMessage(messages.profile_directory)} to='/directory' />
|
2019-01-07 17:59:06 -05:00
|
|
|
);
|
|
|
|
|
2019-01-08 08:32:36 -05:00
|
|
|
height += 48;
|
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')) {
|
2019-05-25 20:55:37 -04:00
|
|
|
navItems.push(<ColumnLink key={i++} icon='user-plus' 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)} />,
|
2018-09-27 20:11:14 -04:00
|
|
|
<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 (
|
2019-08-01 13:17:17 -04:00
|
|
|
<Column bindToDocument={!multiColumn} label={intl.formatMessage(messages.menu)}>
|
2018-05-30 12:41:47 -04:00
|
|
|
{multiColumn && <div className='column-header__wrapper'>
|
|
|
|
<h1 className='column-header'>
|
|
|
|
<button>
|
2019-01-31 18:14:05 -05:00
|
|
|
<Icon id='bars' className='column-header__icon' fixedWidth />
|
2018-05-30 12:41:47 -04:00
|
|
|
<FormattedMessage id='getting_started.heading' defaultMessage='Getting started' />
|
|
|
|
</button>
|
|
|
|
</h1>
|
|
|
|
</div>}
|
|
|
|
|
2018-08-30 21:43:02 -04:00
|
|
|
<div className='getting-started'>
|
|
|
|
<div className='getting-started__wrapper' style={{ height }}>
|
|
|
|
{!multiColumn && <NavigationBar account={myAccount} />}
|
|
|
|
{navItems}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{!multiColumn && <div className='flex-spacer' />}
|
|
|
|
|
2019-05-27 15:58:41 -04:00
|
|
|
<LinkFooter withHotkeys={multiColumn} />
|
2017-05-02 20:04:16 -04:00
|
|
|
</div>
|
2019-08-06 11:57:52 -04:00
|
|
|
|
|
|
|
{multiColumn && showTrends && <TrendsContainer />}
|
2017-05-02 20:04:16 -04:00
|
|
|
</Column>
|
|
|
|
);
|
|
|
|
}
|
2017-05-20 11:31:47 -04:00
|
|
|
|
2017-05-02 20:04:16 -04:00
|
|
|
}
|