mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 12:16:37 -04:00
67 lines
No EOL
1.8 KiB
JavaScript
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)); |