mastodon/app/javascript/flavours/glitch/features/drawer/index.js

155 lines
3.4 KiB
JavaScript
Raw Normal View History

// Package imports.
import PropTypes from 'prop-types';
import React from 'react';
import ImmutablePropTypes from 'react-immutable-proptypes';
// Actions.
import { changeComposing } from 'flavours/glitch/actions/compose';
import { openModal } from 'flavours/glitch/actions/modal';
2017-12-27 01:54:28 +01:00
import {
changeSearch,
clearSearch,
showSearch,
submitSearch,
} from 'flavours/glitch/actions/search';
// Components.
2017-12-27 01:54:28 +01:00
import DrawerHeader from './header';
import DrawerPager from './pager';
import DrawerResults from './results';
import DrawerSearch from './search';
// Utils.
2017-12-27 01:54:28 +01:00
import { me } from 'flavours/glitch/util/initial_state';
import { wrap } from 'flavours/glitch/util/redux_helpers';
// State mapping.
const mapStateToProps = state => ({
2017-12-27 01:54:28 +01:00
account: state.getIn(['accounts', me]),
columns: state.getIn(['settings', 'columns']),
2017-12-27 01:54:28 +01:00
isComposing: state.getIn(['compose', 'is_composing']),
results: state.getIn(['search', 'results']),
searchHidden: state.getIn(['search', 'hidden']),
searchValue: state.getIn(['search', 'value']),
submitted: state.getIn(['search', 'submitted']),
});
// Dispatch mapping.
const mapDispatchToProps = dispatch => ({
2017-12-27 01:54:28 +01:00
change (value) {
dispatch(changeSearch(value));
},
changeComposingOff () {
dispatch(changeComposing(false));
},
2017-12-27 01:54:28 +01:00
changeComposingOn () {
dispatch(changeComposing(true));
},
2017-12-27 01:54:28 +01:00
clear () {
dispatch(clearSearch());
},
show () {
dispatch(showSearch());
},
submit () {
dispatch(submitSearch());
},
openSettings () {
dispatch(openModal('SETTINGS', {}));
},
});
// The component.
2017-12-27 01:54:28 +01:00
class Drawer extends React.Component {
2017-12-27 01:54:28 +01:00
// Constructor.
constructor (props) {
super(props);
}
2017-12-27 01:54:28 +01:00
// Rendering.
render () {
const {
dispatch: {
change,
changeComposingOff,
changeComposingOn,
clear,
openSettings,
show,
submit,
},
intl,
multiColumn,
state: {
account,
columns,
isComposing,
results,
searchHidden,
searchValue,
submitted,
},
} = this.props;
// The result.
return (
<div className='drawer'>
{multiColumn ? (
<DrawerHeader
columns={columns}
intl={intl}
onSettingsClick={openSettings}
/>
) : null}
<DrawerSearch
intl={intl}
onChange={change}
onClear={clear}
onShow={show}
onSubmit={submit}
submitted={submitted}
value={searchValue}
/>
<DrawerPager
account={account}
active={isComposing}
onBlur={changeComposingOff}
onFocus={changeComposingOn}
/>
<DrawerResults
results={results}
visible={submitted && !searchHidden}
/>
</div>
2017-12-27 01:54:28 +01:00
);
}
}
// Props.
Drawer.propTypes = {
dispatch: PropTypes.func.isRequired,
intl: PropTypes.object.isRequired,
2017-12-27 01:54:28 +01:00
multiColumn: PropTypes.bool,
state: PropTypes.shape({
account: ImmutablePropTypes.map,
columns: ImmutablePropTypes.list,
isComposing: PropTypes.bool,
results: ImmutablePropTypes.map,
searchHidden: PropTypes.bool,
searchValue: PropTypes.string,
submitted: PropTypes.bool,
}).isRequired,
};
2017-12-27 01:54:28 +01:00
// Default props.
Drawer.defaultProps = {
dispatch: {},
state: {},
};
2017-12-27 01:54:28 +01:00
// Connecting and export.
export { Drawer as WrappedComponent };
export default wrap(Drawer, mapStateToProps, mapDispatchToProps, true);