mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
0ff1d62c7a
Port part of 43b5d5e38d
to glitch-soc
Signed-off-by: Claire <claire.github-309c@sitedethib.com>
41 lines
1.0 KiB
JavaScript
41 lines
1.0 KiB
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
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';
|
|
import LinkFooter from './link_footer';
|
|
|
|
export default
|
|
class ComposePanel extends React.PureComponent {
|
|
|
|
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>
|
|
);
|
|
}
|
|
|
|
};
|