2023-05-28 05:56:24 -07:00
|
|
|
import { PureComponent } from 'react';
|
2022-10-23 14:37:58 -07:00
|
|
|
import { connect } from 'react-redux';
|
2022-09-28 19:39:33 -07:00
|
|
|
import PropTypes from 'prop-types';
|
2019-05-25 12:27:00 -07: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 12:58:41 -07:00
|
|
|
import LinkFooter from './link_footer';
|
2022-10-04 18:47:56 -07:00
|
|
|
import ServerBanner from 'flavours/glitch/components/server_banner';
|
2022-10-23 14:37:58 -07:00
|
|
|
import { mountCompose, unmountCompose } from 'flavours/glitch/actions/compose';
|
2019-05-25 12:27:00 -07:00
|
|
|
|
2023-05-28 05:18:23 -07:00
|
|
|
class ComposePanel extends PureComponent {
|
2019-05-25 12:27:00 -07:00
|
|
|
|
2022-09-28 19:39:33 -07:00
|
|
|
static contextTypes = {
|
|
|
|
identity: PropTypes.object.isRequired,
|
|
|
|
};
|
|
|
|
|
2022-10-23 14:37:58 -07:00
|
|
|
static propTypes = {
|
|
|
|
dispatch: PropTypes.func.isRequired,
|
|
|
|
};
|
|
|
|
|
|
|
|
componentDidMount () {
|
|
|
|
const { dispatch } = this.props;
|
|
|
|
dispatch(mountCompose());
|
|
|
|
}
|
|
|
|
|
|
|
|
componentWillUnmount () {
|
|
|
|
const { dispatch } = this.props;
|
|
|
|
dispatch(unmountCompose());
|
|
|
|
}
|
|
|
|
|
2022-09-28 19:39:33 -07:00
|
|
|
render() {
|
|
|
|
const { signedIn } = this.context.identity;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div className='compose-panel'>
|
|
|
|
<SearchContainer openInRoute />
|
|
|
|
|
|
|
|
{!signedIn && (
|
2023-05-28 05:56:24 -07:00
|
|
|
<>
|
2022-10-04 18:47:56 -07:00
|
|
|
<ServerBanner />
|
2022-09-28 19:39:33 -07:00
|
|
|
<div className='flex-spacer' />
|
2023-05-28 05:56:24 -07:00
|
|
|
</>
|
2022-09-28 19:39:33 -07:00
|
|
|
)}
|
|
|
|
|
|
|
|
{signedIn && (
|
2023-05-28 05:56:24 -07:00
|
|
|
<>
|
2022-09-28 19:39:33 -07:00
|
|
|
<NavigationContainer />
|
|
|
|
<ComposeFormContainer singleColumn />
|
2023-05-28 05:56:24 -07:00
|
|
|
</>
|
2022-09-28 19:39:33 -07:00
|
|
|
)}
|
|
|
|
|
2022-10-04 11:13:23 -07:00
|
|
|
<LinkFooter />
|
2022-09-28 19:39:33 -07:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2023-02-03 11:52:07 -08:00
|
|
|
}
|
2023-03-24 15:15:25 -07:00
|
|
|
|
|
|
|
export default connect()(ComposePanel);
|