mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00
25 lines
No EOL
593 B
JavaScript
25 lines
No EOL
593 B
JavaScript
/*
|
|
|
|
A component to configure the "edit movie" form.
|
|
Wrapped with the "withDocument" container.
|
|
|
|
*/
|
|
|
|
import React, { PropTypes, Component } from 'react';
|
|
import { Components, registerComponent, getFragment } from "meteor/vulcan:core";
|
|
|
|
import Movies from '../../modules/movies/collection.js';
|
|
|
|
const MoviesEditForm = props =>
|
|
|
|
<Components.SmartForm
|
|
collection={Movies}
|
|
documentId={props.documentId}
|
|
mutationFragment={getFragment('MoviesItemFragment')}
|
|
showRemove={true}
|
|
successCallback={document => {
|
|
props.closeModal();
|
|
}}
|
|
/>
|
|
|
|
export default MoviesEditForm; |