2019-04-17 18:57:46 +00:00
|
|
|
import React from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
|
2019-06-10 16:22:35 +00:00
|
|
|
import Directory from './Directory';
|
2019-04-17 18:57:46 +00:00
|
|
|
import Sort from './Sort';
|
|
|
|
|
|
|
|
const ListHeader = React.memo(({
|
2020-02-13 19:24:39 +00:00
|
|
|
searching,
|
|
|
|
sortBy,
|
|
|
|
toggleSort,
|
2020-07-06 20:56:28 +00:00
|
|
|
goDirectory
|
2019-04-17 18:57:46 +00:00
|
|
|
}) => (
|
2019-09-24 20:26:56 +00:00
|
|
|
<>
|
2020-02-13 19:24:39 +00:00
|
|
|
<Directory searching={searching} goDirectory={goDirectory} />
|
|
|
|
<Sort searching={searching} sortBy={sortBy} toggleSort={toggleSort} />
|
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-06 20:56:28 +00:00
|
|
|
goDirectory: PropTypes.func
|
2019-04-17 18:57:46 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
export default ListHeader;
|