Vulcan/packages/example-simple/lib/components/movies/MoviesList.jsx
2017-08-01 17:22:19 +09:00

67 lines
No EOL
1.8 KiB
JavaScript

/*
List of movies.
Wrapped with the "withList" and "withCurrentUser" containers.
*/
import React from 'react';
import Helmet from 'react-helmet';
import { Components, withList, withCurrentUser, Loading } from 'meteor/vulcan:core';
import Movies from '../../modules/movies/collection.js';
const MoviesList = ({results = [], currentUser, loading, loadMore, count, totalCount}) =>
<div style={{maxWidth: '500px', margin: '20px auto'}}>
<Helmet>
<link name="bootstrap" rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.5/css/bootstrap.min.css"/>
</Helmet>
{/* user accounts */}
<div style={{padding: '20px 0', marginBottom: '20px', borderBottom: '1px solid #ccc'}}>
<Components.AccountsLoginForm />
</div>
{loading ?
<Loading /> :
<div className="movies">
{/* new document form */}
{Movies.options.mutations.new.check(currentUser) ?
<div style={{marginBottom: '20px', paddingBottom: '20px', borderBottom: '1px solid #ccc'}}>
<h4>Insert New Document</h4>
<Components.SmartForm collection={Movies} />
</div> :
null
}
{/* documents list */}
{results.map(movie => <Components.Card fields={['name', 'year', 'review']} key={movie._id} collection={Movies} document={movie} currentUser={currentUser} />)}
{/* load more */}
{totalCount > results.length ?
<a href="#" onClick={e => {e.preventDefault(); loadMore();}}>Load More ({count}/{totalCount})</a> :
<p>No more items.</p>
}
</div>
}
</div>
const options = {
collection: Movies,
limit: 5,
};
export default withList(options)(withCurrentUser(MoviesList));