mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00
37 lines
No EOL
947 B
JavaScript
37 lines
No EOL
947 B
JavaScript
/*
|
|
|
|
A component that shows a detailed view of a single movie.
|
|
Wrapped with the "withSingle" container.
|
|
|
|
*/
|
|
|
|
import Telescope from 'meteor/nova:lib';
|
|
import React, { PropTypes, Component } from 'react';
|
|
import Movies from '../collection.js';
|
|
import { withSingle } from 'meteor/nova:core';
|
|
import { compose } from 'react-apollo';
|
|
import fragments from '../fragments.js';
|
|
|
|
const MoviesDetails = props => {
|
|
const movie = props.document;
|
|
if (props.loading) {
|
|
return <p>Loading…</p>
|
|
} else {
|
|
return (
|
|
<div>
|
|
<h2>{movie.name} ({movie.year})</h2>
|
|
<p>Reviewed by <strong>{movie.user && movie.user.__displayName}</strong> on {movie.createdAt}</p>
|
|
<p>{movie.review}</p>
|
|
</div>
|
|
)
|
|
}
|
|
}
|
|
|
|
const options = {
|
|
collection: Movies,
|
|
queryName: 'moviesSingleQuery',
|
|
fragmentName: fragments.single.name,
|
|
fragment: fragments.single.fragment,
|
|
};
|
|
|
|
export default compose(withSingle(options))(MoviesDetails); |