mastodon-glitch/app/javascript/mastodon/features/ui/components/compose_panel.jsx

66 lines
1.6 KiB
React
Raw Normal View History

import PropTypes from 'prop-types';
2023-05-23 09:47:36 +00:00
import { PureComponent } from 'react';
import { connect } from 'react-redux';
import { changeComposing, mountCompose, unmountCompose } from 'mastodon/actions/compose';
import ServerBanner from 'mastodon/components/server_banner';
import ComposeFormContainer from 'mastodon/features/compose/containers/compose_form_container';
import SearchContainer from 'mastodon/features/compose/containers/search_container';
import { identityContextPropShape, withIdentity } from 'mastodon/identity_context';
import LinkFooter from './link_footer';
2023-05-23 08:52:27 +00:00
class ComposePanel extends PureComponent {
static propTypes = {
identity: identityContextPropShape,
dispatch: PropTypes.func.isRequired,
};
onFocus = () => {
const { dispatch } = this.props;
dispatch(changeComposing(true));
2023-01-30 00:45:35 +00:00
};
onBlur = () => {
const { dispatch } = this.props;
dispatch(changeComposing(false));
2023-01-30 00:45:35 +00:00
};
componentDidMount () {
const { dispatch } = this.props;
dispatch(mountCompose());
}
componentWillUnmount () {
const { dispatch } = this.props;
dispatch(unmountCompose());
}
render() {
const { signedIn } = this.props.identity;
return (
<div className='compose-panel' onFocus={this.onFocus}>
<SearchContainer openInRoute />
{!signedIn && (
2023-05-23 09:47:36 +00:00
<>
<ServerBanner />
<div className='flex-spacer' />
2023-05-23 09:47:36 +00:00
</>
)}
{signedIn && (
<ComposeFormContainer singleColumn />
)}
<LinkFooter />
</div>
);
}
}
export default connect()(withIdentity(ComposePanel));