2019-04-17 18:57:46 +00:00
|
|
|
import React from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
|
|
|
|
import Sort from './Sort';
|
2020-08-28 19:41:08 +00:00
|
|
|
|
|
|
|
import OmnichannelStatus from '../../../ee/omnichannel/containers/OmnichannelStatus';
|
2019-04-17 18:57:46 +00:00
|
|
|
|
|
|
|
const ListHeader = React.memo(({
|
2020-02-13 19:24:39 +00:00
|
|
|
searching,
|
|
|
|
sortBy,
|
|
|
|
toggleSort,
|
2020-07-31 18:22:30 +00:00
|
|
|
goQueue,
|
|
|
|
queueSize,
|
2020-08-21 13:38:50 +00:00
|
|
|
inquiryEnabled,
|
|
|
|
user
|
2019-04-17 18:57:46 +00:00
|
|
|
}) => (
|
2019-09-24 20:26:56 +00:00
|
|
|
<>
|
2020-02-13 19:24:39 +00:00
|
|
|
<Sort searching={searching} sortBy={sortBy} toggleSort={toggleSort} />
|
2020-08-21 13:38:50 +00:00
|
|
|
<OmnichannelStatus searching={searching} goQueue={goQueue} inquiryEnabled={inquiryEnabled} queueSize={queueSize} user={user} />
|
2019-09-24 20:26:56 +00:00
|
|
|
</>
|
2019-04-17 18:57:46 +00:00
|
|
|
));
|
|
|
|
|
|
|
|
ListHeader.propTypes = {
|
2020-02-13 19:24:39 +00:00
|
|
|
searching: PropTypes.bool,
|
2019-04-17 18:57:46 +00:00
|
|
|
sortBy: PropTypes.string,
|
2019-06-10 16:22:35 +00:00
|
|
|
toggleSort: PropTypes.func,
|
2020-07-31 18:22:30 +00:00
|
|
|
goQueue: PropTypes.func,
|
|
|
|
queueSize: PropTypes.number,
|
2020-08-21 13:38:50 +00:00
|
|
|
inquiryEnabled: PropTypes.bool,
|
|
|
|
user: PropTypes.object
|
2019-04-17 18:57:46 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
export default ListHeader;
|