mirror of
https://github.com/vale981/Vulcan
synced 2025-03-07 02:21:43 -05:00
89 lines
2.1 KiB
JavaScript
89 lines
2.1 KiB
JavaScript
import React, { PropTypes, Component } from 'react';
|
|
import {mount} from 'react-mounter';
|
|
import MoviesWrapper from './demo-components.jsx';
|
|
import Core from 'meteor/nova:core';
|
|
|
|
//////////////////////////////////////////////////////
|
|
// Collection & Schema //
|
|
//////////////////////////////////////////////////////
|
|
|
|
Movies = new Mongo.Collection("movies");
|
|
|
|
const isLoggedIn = user => !!user;
|
|
const isOwner = (user, document) => user._id === document.userId;
|
|
|
|
const schema = new SimpleSchema({
|
|
name: {
|
|
type: String,
|
|
publish: true,
|
|
control: "text",
|
|
insertableIf: isLoggedIn,
|
|
editableIf: isOwner
|
|
},
|
|
createdAt: {
|
|
type: Date,
|
|
publish: true,
|
|
},
|
|
year: {
|
|
type: String,
|
|
publish: true,
|
|
optional: true,
|
|
control: "text",
|
|
insertableIf: isLoggedIn,
|
|
editableIf: isOwner
|
|
},
|
|
review: {
|
|
type: String,
|
|
publish: true,
|
|
control: "textarea",
|
|
insertableIf: isLoggedIn,
|
|
editableIf: isOwner
|
|
},
|
|
userId: {
|
|
type: String,
|
|
publish: true,
|
|
join: {
|
|
collection: () => Meteor.users,
|
|
joinAs: "user",
|
|
fields: ["_id", "username"]
|
|
}
|
|
}
|
|
});
|
|
|
|
Movies.attachSchema(schema);
|
|
|
|
//////////////////////////////////////////////////////
|
|
// Route //
|
|
//////////////////////////////////////////////////////
|
|
|
|
FlowRouter.route('/demo', {
|
|
name: 'demo',
|
|
action() {
|
|
mount(MoviesWrapper);
|
|
}
|
|
});
|
|
|
|
//////////////////////////////////////////////////////
|
|
// Methods //
|
|
//////////////////////////////////////////////////////
|
|
|
|
Movies.smartMethods({
|
|
createName: "movies.create",
|
|
editName: "movies.edit",
|
|
createCallback: function (user, document) {
|
|
document = _.extend(document, {
|
|
createdAt: new Date(),
|
|
userId: Meteor.userId()
|
|
});
|
|
return document;
|
|
},
|
|
deleteCallback: isOwner
|
|
});
|
|
|
|
//////////////////////////////////////////////////////
|
|
// Publications //
|
|
//////////////////////////////////////////////////////
|
|
|
|
if (Meteor.isServer) {
|
|
Movies.smartPublish("movies.list");
|
|
}
|