mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00
79 lines
2.1 KiB
JavaScript
79 lines
2.1 KiB
JavaScript
/*
|
|
|
|
List of movies.
|
|
Wrapped with the "withList" and "withCurrentUser" containers.
|
|
|
|
*/
|
|
|
|
import { Components } from 'meteor/nova:lib';
|
|
import React, { PropTypes, Component } from 'react';
|
|
import { Button } from 'react-bootstrap';
|
|
import { ModalTrigger } from "meteor/nova:core";
|
|
import MoviesItem from './MoviesItem.jsx';
|
|
import Movies from '../collection.js';
|
|
import MoviesNewForm from './MoviesNewForm.jsx';
|
|
import { compose } from 'react-apollo';
|
|
import { withList, withCurrentUser } from 'meteor/nova:core';
|
|
import gql from 'graphql-tag';
|
|
|
|
const LoadMore = props => <a href="#" className="load-more button button--primary" onClick={e => {e.preventDefault(); props.loadMore();}}>Load More ({props.count}/{props.totalCount})</a>
|
|
|
|
class MoviesList extends Component {
|
|
|
|
renderNew() {
|
|
|
|
const component = (
|
|
<div className="add-movie">
|
|
<ModalTrigger
|
|
title="Add Movie"
|
|
component={<Button bsStyle="primary">Add Movie</Button>}
|
|
>
|
|
<MoviesNewForm/>
|
|
</ModalTrigger>
|
|
<hr/>
|
|
</div>
|
|
)
|
|
|
|
return !!this.props.currentUser ? component : null;
|
|
}
|
|
|
|
render() {
|
|
|
|
const canCreateNewMovie = Movies.options.mutations.new.check(this.props.currentUser);
|
|
|
|
if (this.props.loading) {
|
|
return <Components.Loading />
|
|
} else {
|
|
const hasMore = this.props.totalCount > this.props.results.length;
|
|
return (
|
|
<div className="movies">
|
|
{canCreateNewMovie ? this.renderNew() : null}
|
|
{this.props.results.map(movie => <MoviesItem key={movie._id} {...movie} currentUser={this.props.currentUser} refetch={this.props.refetch} />)}
|
|
{hasMore ? <LoadMore {...this.props}/> : <p>No more movies</p>}
|
|
</div>
|
|
)
|
|
}
|
|
}
|
|
|
|
};
|
|
|
|
export const MoviesListFragment = gql`
|
|
fragment moviesItemFragment on Movie {
|
|
_id
|
|
name
|
|
year
|
|
createdAt
|
|
user {
|
|
__displayName
|
|
}
|
|
}
|
|
`;
|
|
|
|
const listOptions = {
|
|
collection: Movies,
|
|
queryName: 'moviesListQuery',
|
|
fragment: MoviesListFragment,
|
|
limit: 5,
|
|
};
|
|
|
|
export default compose(withList(listOptions), withCurrentUser)(MoviesList);
|