bigbuffet-rw/app/soapbox/features/ui/components/features_panel.js

62 lines
2 KiB
JavaScript
Raw Normal View History

2020-08-08 22:29:28 -07:00
import React from 'react';
2020-08-10 20:03:28 -07:00
import PropTypes from 'prop-types';
2020-08-08 22:29:28 -07:00
import Icon from 'soapbox/components/icon';
2020-08-09 12:37:02 -07:00
import { NavLink } from 'react-router-dom';
2020-08-10 20:03:28 -07:00
import { injectIntl, defineMessages } from 'react-intl';
2020-08-08 22:29:28 -07:00
2020-08-10 20:03:28 -07:00
const messages = defineMessages({
edit_profile: { id: 'account.edit_profile', defaultMessage: 'Edit Profile' },
preferences: { id: 'navigation_bar.preferences', defaultMessage: 'Preferences' },
security: { id: 'navigation_bar.security', defaultMessage: 'Security' },
lists: { id: 'column.lists', defaultMessage: 'Lists' },
bookmarks: { id: 'column.bookmarks', defaultMessage: 'Bookmarks' },
});
export default
@injectIntl
class FeaturesPanel extends React.PureComponent {
static propTypes = {
intl: PropTypes.object.isRequired,
};
2020-08-08 22:29:28 -07:00
render() {
2020-08-10 20:03:28 -07:00
const { intl } = this.props;
2020-08-08 22:29:28 -07:00
return (
<div className='wtf-panel promo-panel'>
<div className='promo-panel__container'>
2020-11-10 16:22:02 -08:00
<NavLink className='promo-panel-item' to='/settings/profile'>
<Icon id='user' className='promo-panel-item__icon' fixedWidth />
{intl.formatMessage(messages.edit_profile)}
</NavLink>
<NavLink className='promo-panel-item' to='/bookmarks'>
<Icon id='bookmark' className='promo-panel-item__icon' fixedWidth />
{intl.formatMessage(messages.bookmarks)}
</NavLink>
<NavLink className='promo-panel-item' to='/lists'>
<Icon id='list' className='promo-panel-item__icon' fixedWidth />
{intl.formatMessage(messages.lists)}
</NavLink>
<NavLink className='promo-panel-item' to='/auth/edit'>
<Icon id='lock' className='promo-panel-item__icon' fixedWidth />
{intl.formatMessage(messages.security)}
</NavLink>
<NavLink className='promo-panel-item' to='/settings/preferences'>
<Icon id='cog' className='promo-panel-item__icon' fixedWidth />
{intl.formatMessage(messages.preferences)}
</NavLink>
2020-08-08 22:29:28 -07:00
</div>
</div>
);
}
}