* Change models and related files * Update controllers and specs * More renaming * Seek and destroy, I mean search and replace * Round up the stragglers * Ground control to Major Travis... * More fixes * PR feedback * Various fixes * Rename view * Fix list query builder * Unify request specs * Fix some API spec errors * Fix remaining API specs * Make spec conform to API * Fix leftover problems * Fix JS tests * Fix column name in select * Fix API specs * Fix search specs * Paging Mr. Travis
40 lines
905 B
JavaScript
40 lines
905 B
JavaScript
import { h } from 'preact';
|
|
import PropTypes from 'prop-types';
|
|
import SingleListing from '../singleListing';
|
|
|
|
const AllListings = ({
|
|
listings,
|
|
onAddTag,
|
|
onChangeCategory,
|
|
currentUserId,
|
|
onOpenModal,
|
|
}) => {
|
|
return (
|
|
<div className="listings-columns" id="listings-results">
|
|
{listings.map((listing) => (
|
|
<SingleListing
|
|
onAddTag={onAddTag}
|
|
onChangeCategory={onChangeCategory}
|
|
listing={listing}
|
|
currentUserId={currentUserId}
|
|
onOpenModal={onOpenModal}
|
|
isOpen={false}
|
|
/>
|
|
))}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
AllListings.propTypes = {
|
|
currentUserId: PropTypes.number,
|
|
listings: PropTypes.isRequired,
|
|
onAddTag: PropTypes.func.isRequired,
|
|
onChangeCategory: PropTypes.func.isRequired,
|
|
onOpenModal: PropTypes.func.isRequired,
|
|
};
|
|
|
|
AllListings.defaultProps = {
|
|
currentUserId: null,
|
|
};
|
|
|
|
export default AllListings;
|