Vulcan/packages/base-components/lib/permissions/CanViewPost.jsx

16 lines
No EOL
429 B
JavaScript

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
}
module.exports = CanViewPost;