import React, { PropTypes, Component } from 'react'; import Users from 'meteor/nova:users'; const CanViewPost = ({user, post, children}) => { if (Users.canView(this.props.user, this.props.document)) { return this.props.children; } else if (!this.props.user){ return
Please log in.
; } else { returnSorry, you do not have permissions to post at this time
; } }; CanViewPost.propTypes = { user: React.PropTypes.object, post: React.PropTypes.object } CanViewPost.displayName = "CanViewPost"; module.exports = CanViewPost;