2017-12-04 07:26:40 +00:00
|
|
|
import Column from 'flavours/glitch/features/ui/components/column';
|
|
|
|
import ColumnLink from 'flavours/glitch/features/ui/components/column_link';
|
|
|
|
import ColumnSubheading from 'flavours/glitch/features/ui/components/column_subheading';
|
2023-05-07 19:43:25 +00:00
|
|
|
import { defineMessages, injectIntl } from 'react-intl';
|
2017-05-03 00:04:16 +00:00
|
|
|
import { connect } from 'react-redux';
|
2017-12-04 07:26:40 +00:00
|
|
|
import { openModal } from 'flavours/glitch/actions/modal';
|
2017-05-03 00:04:16 +00:00
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
2022-10-11 08:17:04 +00:00
|
|
|
import { me, showTrends } from 'flavours/glitch/initial_state';
|
2018-01-23 01:05:13 +00:00
|
|
|
import { fetchFollowRequests } from 'flavours/glitch/actions/accounts';
|
|
|
|
import { List as ImmutableList } from 'immutable';
|
2017-12-12 06:01:17 +00:00
|
|
|
import { createSelector } from 'reselect';
|
|
|
|
import { fetchLists } from 'flavours/glitch/actions/lists';
|
2022-10-11 08:41:15 +00:00
|
|
|
import { preferencesLink } from 'flavours/glitch/utils/backend_links';
|
2019-06-19 13:16:18 +00:00
|
|
|
import NavigationBar from '../compose/components/navigation_bar';
|
2019-05-27 19:58:41 +00:00
|
|
|
import LinkFooter from 'flavours/glitch/features/ui/components/link_footer';
|
2019-08-06 15:57:52 +00:00
|
|
|
import TrendsContainer from './containers/trends_container';
|
2022-10-09 01:55:09 +00:00
|
|
|
import { Helmet } from 'react-helmet';
|
2017-05-03 00:04:16 +00:00
|
|
|
|
|
|
|
const messages = defineMessages({
|
|
|
|
heading: { id: 'getting_started.heading', defaultMessage: 'Getting started' },
|
2017-06-03 23:39:38 +00:00
|
|
|
home_timeline: { id: 'tabs_bar.home', defaultMessage: 'Home' },
|
|
|
|
notifications: { id: 'tabs_bar.notifications', defaultMessage: 'Notifications' },
|
2017-05-03 00:04:16 +00:00
|
|
|
public_timeline: { id: 'navigation_bar.public_timeline', defaultMessage: 'Federated timeline' },
|
2017-06-01 15:25:10 +00:00
|
|
|
navigation_subheading: { id: 'column_subheading.navigation', defaultMessage: 'Navigation' },
|
|
|
|
settings_subheading: { id: 'column_subheading.settings', defaultMessage: 'Settings' },
|
2017-05-03 00:04:16 +00:00
|
|
|
community_timeline: { id: 'navigation_bar.community_timeline', defaultMessage: 'Local timeline' },
|
2022-03-13 03:51:09 +00:00
|
|
|
explore: { id: 'navigation_bar.explore', defaultMessage: 'Explore' },
|
2017-10-16 04:02:39 +00:00
|
|
|
direct: { id: 'navigation_bar.direct', defaultMessage: 'Direct messages' },
|
2018-04-11 17:42:25 +00:00
|
|
|
bookmarks: { id: 'navigation_bar.bookmarks', defaultMessage: 'Bookmarks' },
|
2017-05-03 00:04:16 +00:00
|
|
|
preferences: { id: 'navigation_bar.preferences', defaultMessage: 'Preferences' },
|
2017-06-29 05:00:54 +00:00
|
|
|
settings: { id: 'navigation_bar.app_settings', defaultMessage: 'App settings' },
|
2017-05-03 00:04:16 +00:00
|
|
|
follow_requests: { id: 'navigation_bar.follow_requests', defaultMessage: 'Follow requests' },
|
2017-12-09 02:13:08 +00:00
|
|
|
lists: { id: 'navigation_bar.lists', defaultMessage: 'Lists' },
|
2017-12-09 02:30:45 +00:00
|
|
|
keyboard_shortcuts: { id: 'navigation_bar.keyboard_shortcuts', defaultMessage: 'Keyboard shortcuts' },
|
2017-12-12 06:01:17 +00:00
|
|
|
lists_subheading: { id: 'column_subheading.lists', defaultMessage: 'Lists' },
|
|
|
|
misc: { id: 'navigation_bar.misc', defaultMessage: 'Misc' },
|
2018-08-28 10:01:04 +00:00
|
|
|
menu: { id: 'getting_started.heading', defaultMessage: 'Getting started' },
|
2017-12-12 06:01:17 +00:00
|
|
|
});
|
|
|
|
|
2017-12-18 04:00:25 +00:00
|
|
|
const makeMapStateToProps = () => {
|
|
|
|
const getOrderedLists = createSelector([state => state.get('lists')], lists => {
|
|
|
|
if (!lists) {
|
|
|
|
return lists;
|
|
|
|
}
|
2017-12-12 06:01:17 +00:00
|
|
|
|
2017-12-18 04:00:25 +00:00
|
|
|
return lists.toList().filter(item => !!item).sort((a, b) => a.get('title').localeCompare(b.get('title')));
|
|
|
|
});
|
2017-05-03 00:04:16 +00:00
|
|
|
|
2017-12-18 04:00:25 +00:00
|
|
|
const mapStateToProps = state => ({
|
|
|
|
lists: getOrderedLists(state),
|
|
|
|
myAccount: state.getIn(['accounts', me]),
|
|
|
|
columns: state.getIn(['settings', 'columns']),
|
2018-01-23 01:05:13 +00:00
|
|
|
unreadFollowRequests: state.getIn(['user_lists', 'follow_requests', 'items'], ImmutableList()).size,
|
|
|
|
unreadNotifications: state.getIn(['notifications', 'unread']),
|
2017-12-18 04:00:25 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
return mapStateToProps;
|
2017-12-18 04:21:15 +00:00
|
|
|
};
|
2017-05-03 00:04:16 +00:00
|
|
|
|
2018-01-23 01:05:13 +00:00
|
|
|
const mapDispatchToProps = dispatch => ({
|
|
|
|
fetchFollowRequests: () => dispatch(fetchFollowRequests()),
|
|
|
|
fetchLists: () => dispatch(fetchLists()),
|
|
|
|
openSettings: () => dispatch(openModal('SETTINGS', {})),
|
|
|
|
});
|
|
|
|
|
|
|
|
const badgeDisplay = (number, limit) => {
|
|
|
|
if (number === 0) {
|
|
|
|
return undefined;
|
|
|
|
} else if (limit && number >= limit) {
|
|
|
|
return `${limit}+`;
|
|
|
|
} else {
|
|
|
|
return number;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2023-02-03 19:52:07 +00:00
|
|
|
class GettingStarted extends ImmutablePureComponent {
|
2019-05-26 00:55:37 +00:00
|
|
|
|
|
|
|
static contextTypes = {
|
|
|
|
router: PropTypes.object.isRequired,
|
2022-10-04 18:13:23 +00:00
|
|
|
identity: PropTypes.object,
|
2019-05-26 00:55:37 +00:00
|
|
|
};
|
2017-05-03 00:04:16 +00:00
|
|
|
|
2017-05-12 12:44:10 +00:00
|
|
|
static propTypes = {
|
|
|
|
intl: PropTypes.object.isRequired,
|
2022-10-04 18:13:23 +00:00
|
|
|
myAccount: ImmutablePropTypes.map,
|
2017-06-03 23:39:38 +00:00
|
|
|
columns: ImmutablePropTypes.list,
|
|
|
|
multiColumn: PropTypes.bool,
|
2018-01-23 01:05:13 +00:00
|
|
|
fetchFollowRequests: PropTypes.func.isRequired,
|
|
|
|
unreadFollowRequests: PropTypes.number,
|
|
|
|
unreadNotifications: PropTypes.number,
|
2017-12-12 06:01:17 +00:00
|
|
|
lists: ImmutablePropTypes.list,
|
2018-01-23 01:05:13 +00:00
|
|
|
fetchLists: PropTypes.func.isRequired,
|
|
|
|
openSettings: PropTypes.func.isRequired,
|
2017-05-12 12:44:10 +00:00
|
|
|
};
|
|
|
|
|
2023-05-10 07:05:32 +00:00
|
|
|
UNSAFE_componentWillMount () {
|
2018-01-23 07:23:56 +00:00
|
|
|
this.props.fetchLists();
|
2017-06-29 05:00:54 +00:00
|
|
|
}
|
|
|
|
|
2018-01-23 01:05:13 +00:00
|
|
|
componentDidMount () {
|
2022-10-04 18:13:23 +00:00
|
|
|
const { fetchFollowRequests } = this.props;
|
|
|
|
const { signedIn } = this.context.identity;
|
2017-08-08 19:42:29 +00:00
|
|
|
|
2022-10-04 18:13:23 +00:00
|
|
|
if (!signedIn) {
|
2019-05-26 00:55:37 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-09-27 19:13:51 +00:00
|
|
|
fetchFollowRequests();
|
2017-12-12 06:01:17 +00:00
|
|
|
}
|
|
|
|
|
2017-05-03 00:04:16 +00:00
|
|
|
render () {
|
2019-05-25 19:27:00 +00:00
|
|
|
const { intl, myAccount, columns, multiColumn, unreadFollowRequests, unreadNotifications, lists, openSettings } = this.props;
|
2022-10-28 15:22:43 +00:00
|
|
|
const { signedIn } = this.context.identity;
|
2017-05-03 00:04:16 +00:00
|
|
|
|
2018-01-09 16:35:36 +00:00
|
|
|
const navItems = [];
|
2018-01-09 16:51:14 +00:00
|
|
|
let listItems = [];
|
2017-06-03 23:39:38 +00:00
|
|
|
|
|
|
|
if (multiColumn) {
|
2022-10-04 18:13:23 +00:00
|
|
|
if (signedIn && !columns.find(item => item.get('id') === 'HOME')) {
|
2022-03-13 03:51:09 +00:00
|
|
|
navItems.push(<ColumnLink key='home' icon='home' text={intl.formatMessage(messages.home_timeline)} to='/home' />);
|
2017-06-03 23:39:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!columns.find(item => item.get('id') === 'NOTIFICATIONS')) {
|
2022-03-13 03:51:09 +00:00
|
|
|
navItems.push(<ColumnLink key='notifications' icon='bell' text={intl.formatMessage(messages.notifications)} badge={badgeDisplay(unreadNotifications)} to='/notifications' />);
|
2017-06-03 23:39:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!columns.find(item => item.get('id') === 'COMMUNITY')) {
|
2022-03-13 03:51:09 +00:00
|
|
|
navItems.push(<ColumnLink key='community_timeline' icon='users' text={intl.formatMessage(messages.community_timeline)} to='/public/local' />);
|
2017-06-03 23:39:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!columns.find(item => item.get('id') === 'PUBLIC')) {
|
2022-03-13 03:51:09 +00:00
|
|
|
navItems.push(<ColumnLink key='public_timeline' icon='globe' text={intl.formatMessage(messages.public_timeline)} to='/public' />);
|
2017-06-03 23:39:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-08 16:50:46 +00:00
|
|
|
if (showTrends) {
|
|
|
|
navItems.push(<ColumnLink key='explore' icon='hashtag' text={intl.formatMessage(messages.explore)} to='/explore' />);
|
|
|
|
}
|
2022-03-13 03:51:09 +00:00
|
|
|
|
2022-10-04 18:13:23 +00:00
|
|
|
if (signedIn) {
|
|
|
|
if (!multiColumn || !columns.find(item => item.get('id') === 'DIRECT')) {
|
|
|
|
navItems.push(<ColumnLink key='conversations' icon='envelope' text={intl.formatMessage(messages.direct)} to='/conversations' />);
|
|
|
|
}
|
2017-10-16 04:02:39 +00:00
|
|
|
|
2022-10-04 18:13:23 +00:00
|
|
|
if (!multiColumn || !columns.find(item => item.get('id') === 'BOOKMARKS')) {
|
|
|
|
navItems.push(<ColumnLink key='bookmarks' icon='bookmark' text={intl.formatMessage(messages.bookmarks)} to='/bookmarks' />);
|
|
|
|
}
|
2018-04-11 17:42:25 +00:00
|
|
|
|
2022-10-04 18:13:23 +00:00
|
|
|
if (myAccount.get('locked') || unreadFollowRequests > 0) {
|
|
|
|
navItems.push(<ColumnLink key='follow_requests' icon='user-plus' text={intl.formatMessage(messages.follow_requests)} badge={badgeDisplay(unreadFollowRequests, 40)} to='/follow_requests' />);
|
|
|
|
}
|
2017-05-03 00:04:16 +00:00
|
|
|
|
2022-10-04 18:13:23 +00:00
|
|
|
navItems.push(<ColumnLink key='getting_started' icon='ellipsis-h' text={intl.formatMessage(messages.misc)} to='/getting-started-misc' />);
|
2017-12-13 04:50:20 +00:00
|
|
|
|
2022-10-04 18:13:23 +00:00
|
|
|
listItems = listItems.concat([
|
|
|
|
<div key='9'>
|
|
|
|
<ColumnLink key='lists' icon='bars' text={intl.formatMessage(messages.lists)} to='/lists' />
|
|
|
|
{lists.filter(list => !columns.find(item => item.get('id') === 'LIST' && item.getIn(['params', 'id']) === list.get('id'))).map(list =>
|
2023-02-03 19:52:07 +00:00
|
|
|
<ColumnLink key={`list-${list.get('id')}`} to={`/lists/${list.get('id')}`} icon='list-ul' text={list.get('title')} />,
|
2022-10-04 18:13:23 +00:00
|
|
|
)}
|
|
|
|
</div>,
|
|
|
|
]);
|
|
|
|
}
|
2017-06-03 23:39:38 +00:00
|
|
|
|
2017-05-03 00:04:16 +00:00
|
|
|
return (
|
2019-08-01 17:17:17 +00:00
|
|
|
<Column bindToDocument={!multiColumn} name='getting-started' icon='asterisk' heading={intl.formatMessage(messages.heading)} label={intl.formatMessage(messages.menu)} hideHeadingOnMobile>
|
2017-06-29 05:00:54 +00:00
|
|
|
<div className='scrollable optionally-scrollable'>
|
|
|
|
<div className='getting-started__wrapper'>
|
2022-10-04 18:13:23 +00:00
|
|
|
{!multiColumn && signedIn && <NavigationBar account={myAccount} />}
|
2019-06-19 13:16:18 +00:00
|
|
|
{multiColumn && <ColumnSubheading text={intl.formatMessage(messages.navigation_subheading)} />}
|
2017-06-29 05:00:54 +00:00
|
|
|
{navItems}
|
2022-10-04 18:13:23 +00:00
|
|
|
{signedIn && (
|
2023-05-28 12:56:24 +00:00
|
|
|
<>
|
2022-10-04 18:13:23 +00:00
|
|
|
<ColumnSubheading text={intl.formatMessage(messages.lists_subheading)} />
|
|
|
|
{listItems}
|
|
|
|
<ColumnSubheading text={intl.formatMessage(messages.settings_subheading)} />
|
|
|
|
{ preferencesLink !== undefined && <ColumnLink icon='cog' text={intl.formatMessage(messages.preferences)} href={preferencesLink} /> }
|
|
|
|
<ColumnLink icon='cogs' text={intl.formatMessage(messages.settings)} onClick={openSettings} />
|
2023-05-28 12:56:24 +00:00
|
|
|
</>
|
2022-10-04 18:13:23 +00:00
|
|
|
)}
|
2017-06-29 05:00:54 +00:00
|
|
|
</div>
|
2017-05-03 00:04:16 +00:00
|
|
|
|
2019-05-27 19:58:41 +00:00
|
|
|
<LinkFooter />
|
2017-05-03 00:04:16 +00:00
|
|
|
</div>
|
2019-08-06 15:57:52 +00:00
|
|
|
|
2023-05-07 19:43:25 +00:00
|
|
|
{(multiColumn && showTrends) && <TrendsContainer />}
|
2022-10-09 01:55:09 +00:00
|
|
|
|
|
|
|
<Helmet>
|
|
|
|
<title>{intl.formatMessage(messages.menu)}</title>
|
2022-10-20 12:35:29 +00:00
|
|
|
<meta name='robots' content='noindex' />
|
2022-10-09 01:55:09 +00:00
|
|
|
</Helmet>
|
2017-05-03 00:04:16 +00:00
|
|
|
</Column>
|
|
|
|
);
|
|
|
|
}
|
2017-05-20 15:31:47 +00:00
|
|
|
|
2017-05-03 00:04:16 +00:00
|
|
|
}
|
2023-03-24 22:15:25 +00:00
|
|
|
|
|
|
|
export default connect(makeMapStateToProps, mapDispatchToProps)(injectIntl(GettingStarted));
|