mirror of
https://github.com/vale981/Vulcan
synced 2025-03-08 19:11:38 -05:00
21 lines
No EOL
564 B
JavaScript
21 lines
No EOL
564 B
JavaScript
import React, { PropTypes, Component } from 'react';
|
|
import Users from 'meteor/nova:users';
|
|
|
|
const CanViewPost = ({user, post, children}) => {
|
|
if (Users.can.viewPost(this.props.user, this.props.document)) {
|
|
return this.props.children;
|
|
} else if (!this.props.user){
|
|
return <p>Please log in.</p>;
|
|
} else {
|
|
return <p>Sorry, you do not have permissions to post at this time</p>;
|
|
}
|
|
};
|
|
|
|
CanViewPost.propTypes = {
|
|
user: React.PropTypes.object,
|
|
post: React.PropTypes.object
|
|
}
|
|
|
|
CanViewPost.displayName = "CanViewPost";
|
|
|
|
module.exports = CanViewPost; |