2017-12-23 22:16:45 -08:00
|
|
|
import React from 'react';
|
2019-04-21 10:07:48 -07:00
|
|
|
import ComposeFormContainer from './containers/compose_form_container';
|
|
|
|
import NavigationContainer from './containers/navigation_container';
|
2019-04-19 11:14:32 -07:00
|
|
|
import PropTypes from 'prop-types';
|
2017-12-23 22:16:45 -08:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
2019-04-21 10:07:48 -07:00
|
|
|
import { connect } from 'react-redux';
|
2019-06-14 03:59:59 -07:00
|
|
|
import { mountCompose, unmountCompose } from 'flavours/glitch/actions/compose';
|
2019-04-19 11:14:32 -07:00
|
|
|
import { injectIntl, defineMessages } from 'react-intl';
|
2018-01-08 08:40:34 -08:00
|
|
|
import classNames from 'classnames';
|
2019-04-20 08:50:12 -07:00
|
|
|
import SearchContainer from './containers/search_container';
|
2022-10-11 01:41:15 -07:00
|
|
|
import Motion from 'flavours/glitch/utils/optional_motion';
|
2019-04-20 09:21:11 -07:00
|
|
|
import spring from 'react-motion/lib/spring';
|
2019-04-21 10:07:48 -07:00
|
|
|
import SearchResultsContainer from './containers/search_results_container';
|
2022-10-11 01:17:04 -07:00
|
|
|
import { me, mascot } from 'flavours/glitch/initial_state';
|
2019-04-21 10:07:48 -07:00
|
|
|
import { cycleElefriendCompose } from 'flavours/glitch/actions/compose';
|
|
|
|
import HeaderContainer from './containers/header_container';
|
2017-12-23 22:16:45 -08:00
|
|
|
|
2018-08-28 03:01:04 -07:00
|
|
|
const messages = defineMessages({
|
2022-05-03 01:59:23 -07:00
|
|
|
compose: { id: 'navigation_bar.compose', defaultMessage: 'Compose new post' },
|
2018-08-28 03:01:04 -07:00
|
|
|
});
|
|
|
|
|
2019-04-20 09:21:11 -07:00
|
|
|
const mapStateToProps = (state, ownProps) => ({
|
2018-01-13 19:22:37 -08:00
|
|
|
elefriend: state.getIn(['compose', 'elefriend']),
|
2019-04-20 09:21:11 -07:00
|
|
|
showSearch: ownProps.multiColumn ? state.getIn(['search', 'submitted']) && !state.getIn(['search', 'hidden']) : ownProps.isSearchPage,
|
2017-12-23 22:16:45 -08:00
|
|
|
});
|
|
|
|
|
2018-07-23 07:03:30 -07:00
|
|
|
const mapDispatchToProps = (dispatch, { intl }) => ({
|
|
|
|
onClickElefriend () {
|
|
|
|
dispatch(cycleElefriendCompose());
|
|
|
|
},
|
2019-06-14 03:59:59 -07:00
|
|
|
|
|
|
|
onMount () {
|
|
|
|
dispatch(mountCompose());
|
|
|
|
},
|
|
|
|
|
|
|
|
onUnmount () {
|
|
|
|
dispatch(unmountCompose());
|
|
|
|
},
|
2018-07-23 07:03:30 -07:00
|
|
|
});
|
2017-12-23 22:16:45 -08:00
|
|
|
|
2019-06-13 03:50:52 -07:00
|
|
|
export default @connect(mapStateToProps, mapDispatchToProps)
|
2019-04-19 11:14:32 -07:00
|
|
|
@injectIntl
|
|
|
|
class Compose extends React.PureComponent {
|
|
|
|
static propTypes = {
|
|
|
|
multiColumn: PropTypes.bool,
|
2019-04-20 09:21:11 -07:00
|
|
|
showSearch: PropTypes.bool,
|
2019-04-21 10:07:48 -07:00
|
|
|
isSearchPage: PropTypes.bool,
|
2019-04-19 11:14:32 -07:00
|
|
|
elefriend: PropTypes.number,
|
|
|
|
onClickElefriend: PropTypes.func,
|
2019-06-14 03:59:59 -07:00
|
|
|
onMount: PropTypes.func,
|
|
|
|
onUnmount: PropTypes.func,
|
2019-04-21 10:07:48 -07:00
|
|
|
intl: PropTypes.object.isRequired,
|
2019-04-19 11:14:32 -07:00
|
|
|
};
|
2017-12-23 22:16:45 -08:00
|
|
|
|
2019-06-14 03:59:59 -07:00
|
|
|
componentDidMount () {
|
|
|
|
const { isSearchPage } = this.props;
|
|
|
|
|
|
|
|
if (!isSearchPage) {
|
|
|
|
this.props.onMount();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
componentWillUnmount () {
|
|
|
|
const { isSearchPage } = this.props;
|
|
|
|
|
|
|
|
if (!isSearchPage) {
|
|
|
|
this.props.onUnmount();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-26 16:54:28 -08:00
|
|
|
render () {
|
|
|
|
const {
|
2018-01-13 19:22:37 -08:00
|
|
|
elefriend,
|
2017-12-26 16:54:28 -08:00
|
|
|
intl,
|
|
|
|
multiColumn,
|
2018-01-14 01:35:25 -08:00
|
|
|
onClickElefriend,
|
2018-08-31 04:54:25 -07:00
|
|
|
isSearchPage,
|
2019-04-20 09:21:11 -07:00
|
|
|
showSearch,
|
2017-12-26 16:54:28 -08:00
|
|
|
} = this.props;
|
2018-01-14 15:31:00 -08:00
|
|
|
const computedClass = classNames('drawer', `mbstobon-${elefriend}`);
|
2018-01-08 08:40:34 -08:00
|
|
|
|
2017-12-26 16:54:28 -08:00
|
|
|
return (
|
2018-08-28 03:01:04 -07:00
|
|
|
<div className={computedClass} role='region' aria-label={intl.formatMessage(messages.compose)}>
|
2019-04-20 11:52:07 -07:00
|
|
|
{multiColumn && <HeaderContainer />}
|
2019-04-20 12:28:03 -07:00
|
|
|
|
2019-04-20 11:52:07 -07:00
|
|
|
{(multiColumn || isSearchPage) && <SearchContainer />}
|
2019-04-20 12:28:03 -07:00
|
|
|
|
2018-12-19 10:09:04 -08:00
|
|
|
<div className='drawer__pager'>
|
|
|
|
{!isSearchPage && <div className='drawer__inner'>
|
2019-04-20 11:32:16 -07:00
|
|
|
<NavigationContainer />
|
2019-05-22 16:35:22 -07:00
|
|
|
|
2019-04-20 12:28:03 -07:00
|
|
|
<ComposeFormContainer />
|
2019-05-22 16:35:22 -07:00
|
|
|
|
|
|
|
<div className='drawer__inner__mastodon'>
|
|
|
|
{mascot ? <img alt='' draggable='false' src={mascot} /> : <button className='mastodon' onClick={onClickElefriend} />}
|
|
|
|
</div>
|
2018-12-19 10:09:04 -08:00
|
|
|
</div>}
|
|
|
|
|
2019-04-20 09:21:11 -07:00
|
|
|
<Motion defaultStyle={{ x: isSearchPage ? 0 : -100 }} style={{ x: spring(showSearch || isSearchPage ? 0 : -100, { stiffness: 210, damping: 20 }) }}>
|
|
|
|
{({ x }) => (
|
|
|
|
<div className='drawer__inner darker' style={{ transform: `translateX(${x}%)`, visibility: x === -100 ? 'hidden' : 'visible' }}>
|
2019-04-20 10:18:26 -07:00
|
|
|
<SearchResultsContainer />
|
2019-04-20 09:21:11 -07:00
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
</Motion>
|
2017-12-29 14:55:06 -08:00
|
|
|
</div>
|
2017-12-23 22:16:45 -08:00
|
|
|
</div>
|
2017-12-26 16:54:28 -08:00
|
|
|
);
|
|
|
|
}
|
2019-04-20 12:28:03 -07:00
|
|
|
|
2017-12-23 22:16:45 -08:00
|
|
|
}
|