2019-05-25 21:27:00 +02:00
|
|
|
import React from 'react';
|
2022-09-29 04:39:33 +02:00
|
|
|
import PropTypes from 'prop-types';
|
2019-05-25 21:27:00 +02:00
|
|
|
import SearchContainer from 'flavours/glitch/features/compose/containers/search_container';
|
|
|
|
import ComposeFormContainer from 'flavours/glitch/features/compose/containers/compose_form_container';
|
|
|
|
import NavigationContainer from 'flavours/glitch/features/compose/containers/navigation_container';
|
2019-05-27 21:58:41 +02:00
|
|
|
import LinkFooter from './link_footer';
|
2019-05-25 21:27:00 +02:00
|
|
|
|
2022-09-29 04:39:33 +02:00
|
|
|
export default
|
|
|
|
class ComposePanel extends React.PureComponent {
|
2019-05-25 21:27:00 +02:00
|
|
|
|
2022-09-29 04:39:33 +02:00
|
|
|
static contextTypes = {
|
|
|
|
identity: PropTypes.object.isRequired,
|
|
|
|
};
|
|
|
|
|
|
|
|
render() {
|
|
|
|
const { signedIn } = this.context.identity;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div className='compose-panel'>
|
|
|
|
<SearchContainer openInRoute />
|
|
|
|
|
|
|
|
{!signedIn && (
|
|
|
|
<React.Fragment>
|
|
|
|
<div className='flex-spacer' />
|
|
|
|
</React.Fragment>
|
|
|
|
)}
|
|
|
|
|
|
|
|
{signedIn && (
|
|
|
|
<React.Fragment>
|
|
|
|
<NavigationContainer />
|
|
|
|
<ComposeFormContainer singleColumn />
|
|
|
|
</React.Fragment>
|
|
|
|
)}
|
|
|
|
|
|
|
|
<LinkFooter withHotkeys />
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|