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';
|
2018-08-28 10:01:04 +00:00
|
|
|
import { defineMessages } from 'react-intl';
|
2018-01-08 16:40:34 +00:00
|
|
|
import classNames from 'classnames';
|
2017-12-24 06:16:45 +00:00
|
|
|
|
|
|
|
// 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';
|
2018-01-14 09:35:25 +00:00
|
|
|
import { cycleElefriendCompose } from 'flavours/glitch/actions/compose';
|
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
|
|
|
|
2018-08-28 10:01:04 +00:00
|
|
|
// Messages.
|
|
|
|
const messages = defineMessages({
|
|
|
|
compose: { id: 'navigation_bar.compose', defaultMessage: 'Compose new toot' },
|
|
|
|
});
|
|
|
|
|
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']),
|
2018-01-14 03:22:37 +00:00
|
|
|
elefriend: state.getIn(['compose', 'elefriend']),
|
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']),
|
2018-09-06 17:17:14 +00:00
|
|
|
unreadNotifications: state.getIn(['notifications', 'unread']),
|
2018-09-06 18:55:11 +00:00
|
|
|
showNotificationsBadge: state.getIn(['local_settings', 'notifications', 'tab_badge']),
|
2017-12-24 06:16:45 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
// Dispatch mapping.
|
2018-07-23 14:03:30 +00:00
|
|
|
const mapDispatchToProps = (dispatch, { intl }) => ({
|
|
|
|
onChange (value) {
|
|
|
|
dispatch(changeSearch(value));
|
|
|
|
},
|
|
|
|
onClear () {
|
|
|
|
dispatch(clearSearch());
|
|
|
|
},
|
|
|
|
onClickElefriend () {
|
|
|
|
dispatch(cycleElefriendCompose());
|
|
|
|
},
|
|
|
|
onShow () {
|
|
|
|
dispatch(showSearch());
|
|
|
|
},
|
|
|
|
onSubmit () {
|
|
|
|
dispatch(submitSearch());
|
|
|
|
},
|
|
|
|
onOpenSettings (e) {
|
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
dispatch(openModal('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,
|
2018-01-14 03:22:37 +00:00
|
|
|
elefriend,
|
2017-12-27 00:54:28 +00:00
|
|
|
intl,
|
|
|
|
multiColumn,
|
2018-01-03 20:36:21 +00:00
|
|
|
onChange,
|
|
|
|
onClear,
|
2018-01-14 09:35:25 +00:00
|
|
|
onClickElefriend,
|
2018-01-03 20:36:21 +00:00
|
|
|
onOpenSettings,
|
|
|
|
onShow,
|
|
|
|
onSubmit,
|
|
|
|
results,
|
|
|
|
searchHidden,
|
|
|
|
searchValue,
|
|
|
|
submitted,
|
2018-08-31 11:54:25 +00:00
|
|
|
isSearchPage,
|
2018-09-06 17:17:14 +00:00
|
|
|
unreadNotifications,
|
2018-09-06 18:55:11 +00:00
|
|
|
showNotificationsBadge,
|
2017-12-27 00:54:28 +00:00
|
|
|
} = this.props;
|
2018-01-14 23:31:00 +00:00
|
|
|
const computedClass = classNames('drawer', `mbstobon-${elefriend}`);
|
2018-01-08 16:40:34 +00:00
|
|
|
|
2017-12-27 00:54:28 +00:00
|
|
|
// The result.
|
|
|
|
return (
|
2018-08-28 10:01:04 +00:00
|
|
|
<div className={computedClass} role='region' aria-label={intl.formatMessage(messages.compose)}>
|
2017-12-27 00:54:28 +00:00
|
|
|
{multiColumn ? (
|
|
|
|
<DrawerHeader
|
|
|
|
columns={columns}
|
2018-09-06 17:17:14 +00:00
|
|
|
unreadNotifications={unreadNotifications}
|
2018-09-06 18:55:11 +00:00
|
|
|
showNotificationsBadge={showNotificationsBadge}
|
2017-12-27 00:54:28 +00:00
|
|
|
intl={intl}
|
2018-01-03 20:36:21 +00:00
|
|
|
onSettingsClick={onOpenSettings}
|
2017-12-27 00:54:28 +00:00
|
|
|
/>
|
|
|
|
) : null}
|
2018-08-31 11:55:43 +00:00
|
|
|
{(multiColumn || isSearchPage) && <DrawerSearch
|
|
|
|
intl={intl}
|
|
|
|
onChange={onChange}
|
|
|
|
onClear={onClear}
|
|
|
|
onShow={onShow}
|
|
|
|
onSubmit={onSubmit}
|
|
|
|
submitted={submitted}
|
|
|
|
value={searchValue}
|
|
|
|
/> }
|
2018-12-19 18:09:04 +00:00
|
|
|
<div className='drawer__pager'>
|
|
|
|
{!isSearchPage && <div className='drawer__inner'>
|
|
|
|
<DrawerAccount account={account} />
|
|
|
|
<Composer />
|
|
|
|
{multiColumn && (
|
|
|
|
<div className='drawer__inner__mastodon'>
|
|
|
|
<button className='mastodon' onClick={onClickElefriend} />
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
</div>}
|
|
|
|
|
2018-08-31 12:18:33 +00:00
|
|
|
{(multiColumn || isSearchPage) &&
|
|
|
|
<DrawerResults
|
|
|
|
results={results}
|
|
|
|
visible={submitted && !searchHidden}
|
|
|
|
/>}
|
2017-12-29 22:55:06 +00:00
|
|
|
</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,
|
2018-08-31 11:54:25 +00:00
|
|
|
isSearchPage: PropTypes.bool,
|
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,
|
2018-01-14 03:22:37 +00:00
|
|
|
elefriend: PropTypes.number,
|
2018-01-03 20:36:21 +00:00
|
|
|
searchHidden: PropTypes.bool,
|
|
|
|
searchValue: PropTypes.string,
|
|
|
|
submitted: PropTypes.bool,
|
2018-09-06 17:17:14 +00:00
|
|
|
unreadNotifications: PropTypes.number,
|
2018-09-06 18:55:11 +00:00
|
|
|
showNotificationsBadge: PropTypes.bool,
|
2018-01-03 20:36:21 +00:00
|
|
|
|
|
|
|
// Dispatch props.
|
|
|
|
onChange: PropTypes.func,
|
|
|
|
onClear: PropTypes.func,
|
2018-01-14 09:35:25 +00:00
|
|
|
onClickElefriend: PropTypes.func,
|
2018-01-03 20:36:21 +00:00
|
|
|
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);
|