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