mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00
47 lines
No EOL
1.5 KiB
JavaScript
47 lines
No EOL
1.5 KiB
JavaScript
import Telescope from 'meteor/nova:lib';
|
|
import React from 'react';
|
|
import {FormattedMessage } from 'react-intl';
|
|
import { ModalTrigger } from "meteor/nova:core";
|
|
import Comments from "meteor/nova:comments";
|
|
|
|
const PostsCommentsThread = (props, context) => {
|
|
|
|
// the error starts below because of comments instead of results
|
|
const {postId, results, totalCount} = props;
|
|
|
|
// this is how I managed to get the error not swallowed
|
|
try {
|
|
return (
|
|
<div className="posts-comments-thread">
|
|
<h4 className="posts-comments-thread-title"><FormattedMessage id="comments.comments"/></h4>
|
|
<Telescope.components.CommentstsList comments={comments} /> {/* this breaks everything */}
|
|
{ context.currentUser ?
|
|
<div className="posts-comments-thread-new">
|
|
<h4><FormattedMessage id="comments.new"/></h4>
|
|
<Telescope.components.CommentsNewForm
|
|
postId={post._id}
|
|
type="comment"
|
|
/>
|
|
</div> :
|
|
<div>
|
|
<ModalTrigger size="small" component={<a><FormattedMessage id="comments.please_log_in"/></a>}>
|
|
<Telescope.components.UsersAccountForm/>
|
|
</ModalTrigger>
|
|
</div>
|
|
}
|
|
</div>
|
|
)
|
|
} catch(e) {
|
|
console.log(e); // Ah ha! I got you! 🤕
|
|
return <div>error</div>
|
|
}
|
|
};
|
|
|
|
PostsCommentsThread.displayName = "PostsCommentsThread";
|
|
|
|
PostsCommentsThread.contextTypes = {
|
|
currentUser: React.PropTypes.object
|
|
};
|
|
|
|
module.exports = PostsCommentsThread;
|
|
export default PostsCommentsThread; |