|
|
@ -36,12 +36,12 @@ PageOne.propTypes = { |
|
|
|
domain: PropTypes.string.isRequired |
|
|
|
}; |
|
|
|
|
|
|
|
const PageTwo = () => ( |
|
|
|
const PageTwo = ({ me }) => ( |
|
|
|
<div className='onboarding-modal__page onboarding-modal__page-two'> |
|
|
|
<div className='figure non-interactive'> |
|
|
|
<div className='pseudo-drawer'> |
|
|
|
<div className='pseudo-drawer'> |
|
|
|
<NavigationBar account={me} /> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<ComposeForm |
|
|
|
text='Awoo! #introductions' |
|
|
|
suggestions={Immutable.List()} |
|
|
@ -62,6 +62,10 @@ const PageTwo = () => ( |
|
|
|
</div> |
|
|
|
); |
|
|
|
|
|
|
|
PageTwo.propTypes = { |
|
|
|
me: ImmutablePropTypes.map.isRequired, |
|
|
|
}; |
|
|
|
|
|
|
|
const PageThree = ({ me, domain }) => ( |
|
|
|
<div className='onboarding-modal__page onboarding-modal__page-three'> |
|
|
|
<div className='figure non-interactive'> |
|
|
@ -195,7 +199,7 @@ class OnboardingModal extends React.PureComponent { |
|
|
|
|
|
|
|
const pages = [ |
|
|
|
<PageOne acct={me.get('acct')} domain={domain} />, |
|
|
|
<PageTwo />, |
|
|
|
<PageTwo me={me} />, |
|
|
|
<PageThree me={me} domain={domain} />, |
|
|
|
<PageFour domain={domain} intl={intl} />, |
|
|
|
<PageSix admin={admin} domain={domain} /> |
|
|
|