2019-08-09 17:06:27 +01:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
2019-08-13 16:54:29 +01:00
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
2019-08-09 17:06:27 +01:00
|
|
|
import { injectIntl, defineMessages } from 'react-intl';
|
|
|
|
import spring from 'react-motion/lib/spring';
|
2020-01-29 21:53:33 +00:00
|
|
|
import {
|
|
|
|
changeComposing,
|
|
|
|
mountCompose,
|
|
|
|
unmountCompose,
|
|
|
|
} from '../../actions/compose';
|
2019-08-09 17:06:27 +01:00
|
|
|
import Motion from '../ui/util/optional_motion';
|
|
|
|
import ComposeFormContainer from './containers/compose_form_container';
|
2020-01-29 21:53:33 +00:00
|
|
|
import NavigationBar from './components/navigation_bar';
|
2019-08-09 17:06:27 +01:00
|
|
|
import elephantUIPlane from '../../../images/logo_ui_column_footer.png';
|
|
|
|
|
|
|
|
const messages = defineMessages({
|
|
|
|
start: { id: 'getting_started.heading', defaultMessage: 'Getting started' },
|
|
|
|
home_timeline: { id: 'tabs_bar.home', defaultMessage: 'Home' },
|
|
|
|
notifications: { id: 'tabs_bar.notifications', defaultMessage: 'Notifications' },
|
|
|
|
public: { id: 'navigation_bar.public_timeline', defaultMessage: 'Federated timeline' },
|
2020-04-11 23:29:19 +01:00
|
|
|
community: { id: 'navigation_bar.community_timeline', defaultMessage: 'Community timeline' },
|
2019-08-09 17:06:27 +01:00
|
|
|
preferences: { id: 'navigation_bar.preferences', defaultMessage: 'Preferences' },
|
|
|
|
logout: { id: 'navigation_bar.logout', defaultMessage: 'Logout' },
|
|
|
|
compose: { id: 'navigation_bar.compose', defaultMessage: 'Compose new gab' },
|
|
|
|
});
|
|
|
|
|
|
|
|
const mapStateToProps = (state, ownProps) => ({
|
|
|
|
columns: state.getIn(['settings', 'columns']),
|
|
|
|
showSearch: ownProps.isSearchPage,
|
|
|
|
});
|
|
|
|
|
2020-02-25 16:04:44 +00:00
|
|
|
export default
|
|
|
|
@connect(mapStateToProps)
|
2019-08-09 17:06:27 +01:00
|
|
|
@injectIntl
|
2019-08-13 16:54:29 +01:00
|
|
|
class Compose extends ImmutablePureComponent {
|
2019-08-09 17:06:27 +01:00
|
|
|
|
|
|
|
static propTypes = {
|
|
|
|
dispatch: PropTypes.func.isRequired,
|
|
|
|
columns: ImmutablePropTypes.list.isRequired,
|
|
|
|
showSearch: PropTypes.bool,
|
|
|
|
isSearchPage: PropTypes.bool,
|
|
|
|
intl: PropTypes.object.isRequired,
|
|
|
|
};
|
|
|
|
|
|
|
|
componentDidMount () {
|
|
|
|
const { isSearchPage } = this.props;
|
|
|
|
|
|
|
|
if (!isSearchPage) {
|
|
|
|
this.props.dispatch(mountCompose());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
componentWillUnmount () {
|
|
|
|
const { isSearchPage } = this.props;
|
|
|
|
|
|
|
|
if (!isSearchPage) {
|
|
|
|
this.props.dispatch(unmountCompose());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
onFocus = () => {
|
|
|
|
this.props.dispatch(changeComposing(true));
|
|
|
|
}
|
|
|
|
|
|
|
|
onBlur = () => {
|
|
|
|
this.props.dispatch(changeComposing(false));
|
|
|
|
}
|
|
|
|
|
|
|
|
render () {
|
|
|
|
const { showSearch, isSearchPage, intl } = this.props;
|
|
|
|
|
2020-04-08 02:06:59 +01:00
|
|
|
const header = '';
|
2019-08-09 17:06:27 +01:00
|
|
|
|
|
|
|
return (
|
|
|
|
<div className='drawer' role='region' aria-label={intl.formatMessage(messages.compose)}>
|
|
|
|
{header}
|
|
|
|
|
2020-02-21 00:57:29 +00:00
|
|
|
{ /* isSearchPage && <SearchContainer /> */ }
|
2019-08-09 17:06:27 +01:00
|
|
|
|
|
|
|
<div className='drawer__pager'>
|
|
|
|
{!isSearchPage && <div className='drawer__inner' onFocus={this.onFocus}>
|
|
|
|
<NavigationBar onClose={this.onBlur} />
|
|
|
|
|
|
|
|
<ComposeFormContainer />
|
|
|
|
|
|
|
|
</div>}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|