From 6d1066fe61984f6e5b226a79bb801aa765453d83 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 12 Dec 2016 14:27:52 +0100 Subject: Adding some navigation items from #262 to the getting started screen --- .../components/features/getting_started/index.jsx | 38 +++++++++++++++++++--- 1 file changed, 33 insertions(+), 5 deletions(-) (limited to 'app/assets/javascripts/components/features/getting_started') diff --git a/app/assets/javascripts/components/features/getting_started/index.jsx b/app/assets/javascripts/components/features/getting_started/index.jsx index 5a9c4db89..bff75f86f 100644 --- a/app/assets/javascripts/components/features/getting_started/index.jsx +++ b/app/assets/javascripts/components/features/getting_started/index.jsx @@ -1,12 +1,40 @@ import Column from '../ui/components/column'; +import ColumnLink from '../ui/components/column_link'; import { Link } from 'react-router'; -import { FormattedMessage } from 'react-intl'; +import { defineMessages, injectIntl, FormattedMessage } from 'react-intl'; +import { connect } from 'react-redux'; -const GettingStarted = () => { +const messages = defineMessages({ + heading: { id: 'getting_started.heading', defaultMessage: 'Getting started' }, + public_timeline: { id: 'navigation_bar.public_timeline', defaultMessage: 'Public timeline' }, + settings: { id: 'navigation_bar.settings', defaultMessage: 'Settings' } +}); + +const mapStateToProps = state => ({ + me: state.getIn(['meta', 'me']) +}); + +const hamburgerStyle = { + background: '#373b4a', + color: '#fff', + fontSize: '16px', + padding: '15px', + position: 'absolute', + right: '0', + top: '-48px', + cursor: 'default' +}; + +const GettingStarted = ({ intl, me }) => { return ( - + +
+
+ + +
+
-

@@ -15,4 +43,4 @@ const GettingStarted = () => { ); }; -export default GettingStarted; +export default connect(mapStateToProps)(injectIntl(GettingStarted)); -- cgit