2017-12-24 06:16:45 +00:00
|
|
|
// Package imports.
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import React from 'react';
|
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
|
|
|
|
|
|
|
// Actions.
|
|
|
|
import { openModal } from 'flavours/glitch/actions/modal';
|
2017-12-27 00:54:28 +00:00
|
|
|
import {
|
|
|
|
changeSearch,
|
|
|
|
clearSearch,
|
|
|
|
showSearch,
|
|
|
|
submitSearch,
|
|
|
|
} from 'flavours/glitch/actions/search';
|
2017-12-24 06:16:45 +00:00
|
|
|
|
|
|
|
// Components.
|
2017-12-29 22:55:06 +00:00
|
|
|
import Composer from 'flavours/glitch/features/composer';
|
|
|
|
import DrawerAccount from './account';
|
2017-12-27 00:54:28 +00:00
|
|
|
import DrawerHeader from './header';
|
|
|
|
import DrawerResults from './results';
|
|
|
|
import DrawerSearch from './search';
|
2017-12-24 06:16:45 +00:00
|
|
|
|
|
|
|
// Utils.
|
2017-12-27 00:54:28 +00:00
|
|
|
import { me } from 'flavours/glitch/util/initial_state';
|
|
|
|
import { wrap } from 'flavours/glitch/util/redux_helpers';
|
2017-12-24 06:16:45 +00:00
|
|
|
|
|
|
|
// State mapping.
|
|
|
|
const mapStateToProps = state => ({
|
2017-12-27 00:54:28 +00:00
|
|
|
account: state.getIn(['accounts', me]),
|
2017-12-24 06:16:45 +00:00
|
|
|
columns: state.getIn(['settings', 'columns']),
|
2017-12-27 00:54:28 +00:00
|
|
|
results: state.getIn(['search', 'results']),
|
|
|
|
searchHidden: state.getIn(['search', 'hidden']),
|
|
|
|
searchValue: state.getIn(['search', 'value']),
|
|
|
|
submitted: state.getIn(['search', 'submitted']),
|
2017-12-24 06:16:45 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
// Dispatch mapping.
|
2018-01-03 20:36:21 +00:00
|
|
|
const mapDispatchToProps = {
|
|
|
|
onChange: changeSearch,
|
|
|
|
onClear: clearSearch,
|
|
|
|
onShow: showSearch,
|
|
|
|
onSubmit: submitSearch,
|
|
|
|
onOpenSettings: openModal.bind(null, 'SETTINGS', {}),
|
|
|
|
};
|
2017-12-24 06:16:45 +00:00
|
|
|
|
|
|
|
// The component.
|
2017-12-27 00:54:28 +00:00
|
|
|
class Drawer extends React.Component {
|
2017-12-24 06:16:45 +00:00
|
|
|
|
2017-12-27 00:54:28 +00:00
|
|
|
// Constructor.
|
|
|
|
constructor (props) {
|
|
|
|
super(props);
|
|
|
|
}
|
2017-12-24 06:16:45 +00:00
|
|
|
|
2017-12-27 00:54:28 +00:00
|
|
|
// Rendering.
|
|
|
|
render () {
|
|
|
|
const {
|
2018-01-03 20:36:21 +00:00
|
|
|
account,
|
|
|
|
columns,
|
2017-12-27 00:54:28 +00:00
|
|
|
intl,
|
|
|
|
multiColumn,
|
2018-01-03 20:36:21 +00:00
|
|
|
onChange,
|
|
|
|
onClear,
|
|
|
|
onOpenSettings,
|
|
|
|
onShow,
|
|
|
|
onSubmit,
|
|
|
|
results,
|
|
|
|
searchHidden,
|
|
|
|
searchValue,
|
|
|
|
submitted,
|
2017-12-27 00:54:28 +00:00
|
|
|
} = this.props;
|
|
|
|
|
|
|
|
// The result.
|
|
|
|
return (
|
|
|
|
<div className='drawer'>
|
|
|
|
{multiColumn ? (
|
|
|
|
<DrawerHeader
|
|
|
|
columns={columns}
|
|
|
|
intl={intl}
|
2018-01-03 20:36:21 +00:00
|
|
|
onSettingsClick={onOpenSettings}
|
2017-12-27 00:54:28 +00:00
|
|
|
/>
|
|
|
|
) : null}
|
|
|
|
<DrawerSearch
|
|
|
|
intl={intl}
|
2018-01-03 20:36:21 +00:00
|
|
|
onChange={onChange}
|
|
|
|
onClear={onClear}
|
|
|
|
onShow={onShow}
|
|
|
|
onSubmit={onSubmit}
|
2017-12-27 00:54:28 +00:00
|
|
|
submitted={submitted}
|
|
|
|
value={searchValue}
|
|
|
|
/>
|
2017-12-29 22:55:06 +00:00
|
|
|
<div className='contents'>
|
|
|
|
<DrawerAccount account={account} />
|
|
|
|
<Composer />
|
|
|
|
<DrawerResults
|
|
|
|
results={results}
|
|
|
|
visible={submitted && !searchHidden}
|
|
|
|
/>
|
|
|
|
</div>
|
2017-12-24 06:16:45 +00:00
|
|
|
</div>
|
2017-12-27 00:54:28 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-12-24 06:16:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Props.
|
|
|
|
Drawer.propTypes = {
|
|
|
|
intl: PropTypes.object.isRequired,
|
2017-12-27 00:54:28 +00:00
|
|
|
multiColumn: PropTypes.bool,
|
|
|
|
|
2018-01-03 20:36:21 +00:00
|
|
|
// State props.
|
|
|
|
account: ImmutablePropTypes.map,
|
|
|
|
columns: ImmutablePropTypes.list,
|
|
|
|
results: ImmutablePropTypes.map,
|
|
|
|
searchHidden: PropTypes.bool,
|
|
|
|
searchValue: PropTypes.string,
|
|
|
|
submitted: PropTypes.bool,
|
|
|
|
|
|
|
|
// Dispatch props.
|
|
|
|
onChange: PropTypes.func,
|
|
|
|
onClear: PropTypes.func,
|
|
|
|
onShow: PropTypes.func,
|
|
|
|
onSubmit: PropTypes.func,
|
|
|
|
onOpenSettings: PropTypes.func,
|
2017-12-27 22:28:41 +00:00
|
|
|
};
|
|
|
|
|
2017-12-27 00:54:28 +00:00
|
|
|
// Connecting and export.
|
|
|
|
export { Drawer as WrappedComponent };
|
|
|
|
export default wrap(Drawer, mapStateToProps, mapDispatchToProps, true);
|