Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
2ae7ad948f | |||
402d5bff80 |
@ -10,3 +10,13 @@ router.get('/', async (req, res, next) => {
|
|||||||
next(err)
|
next(err)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
router.post('/', async (req, res, next) => {
|
||||||
|
try {
|
||||||
|
const comment = await Comment.create({ text: req.body.text })
|
||||||
|
await comment.setParent(req.body.parentId)
|
||||||
|
res.send(comment)
|
||||||
|
} catch (err) {
|
||||||
|
next(err)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
@ -1,31 +1,14 @@
|
|||||||
const db = require('../db')
|
const db = require('../db')
|
||||||
const { Comment } = require('./models')
|
const { Comment } = require('./models')
|
||||||
|
|
||||||
const tc1 = { text: 'c1' }
|
const tc1 = { text: 'FIRST' }
|
||||||
const tc2 = { text: 'c2' }
|
|
||||||
const tc3 = { text: 'c3' }
|
|
||||||
const tc4 = { text: 'c4' }
|
|
||||||
const tc5 = { text: 'c5' }
|
|
||||||
const tc6 = { text: 'c6' }
|
|
||||||
|
|
||||||
async function runSeed() {
|
async function runSeed() {
|
||||||
await db.sync({ force: true })
|
await db.sync({ force: true })
|
||||||
console.log('db synced!')
|
console.log('db synced!')
|
||||||
console.log('seeding...')
|
console.log('seeding...')
|
||||||
try {
|
try {
|
||||||
const c1 = await Comment.create(tc1)
|
await Comment.create(tc1)
|
||||||
const c2 = await Comment.create(tc2)
|
|
||||||
const c3 = await Comment.create(tc3)
|
|
||||||
const c4 = await Comment.create(tc4)
|
|
||||||
const c5 = await Comment.create(tc5)
|
|
||||||
const c6 = await Comment.create(tc6)
|
|
||||||
|
|
||||||
await c1.addReply(2)
|
|
||||||
|
|
||||||
await c2.addReplies([c3, c4])
|
|
||||||
await c5.setParent(c4)
|
|
||||||
|
|
||||||
await c6.setParent(c1)
|
|
||||||
|
|
||||||
console.log('seeded successfully')
|
console.log('seeded successfully')
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
|
@ -9,6 +9,7 @@ class App extends React.Component {
|
|||||||
constructor() {
|
constructor() {
|
||||||
super()
|
super()
|
||||||
this.state = { loading: true }
|
this.state = { loading: true }
|
||||||
|
this.submitComment = this.submitComment.bind(this)
|
||||||
}
|
}
|
||||||
|
|
||||||
componentDidMount() {
|
componentDidMount() {
|
||||||
@ -35,6 +36,11 @@ class App extends React.Component {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async submitComment(submittedData) {
|
||||||
|
await axios.post(API + '/api/comments', submittedData)
|
||||||
|
await this.fetchData()
|
||||||
|
}
|
||||||
|
|
||||||
renderLoading() {
|
renderLoading() {
|
||||||
return <div>loading...</div>
|
return <div>loading...</div>
|
||||||
}
|
}
|
||||||
@ -47,7 +53,7 @@ class App extends React.Component {
|
|||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
<Navbar {...this.state} />
|
<Navbar {...this.state} />
|
||||||
<Comments {...this.state} />
|
<Comments submitComment={this.submitComment} {...this.state} />
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
@ -7,17 +7,15 @@ const CollapsedComment = props => {
|
|||||||
<img className="px-2" alt="profile" src="anon.jpeg" height={16} />
|
<img className="px-2" alt="profile" src="anon.jpeg" height={16} />
|
||||||
<a href="#user">username</a>
|
<a href="#user">username</a>
|
||||||
<small className="px-3">One day ago</small>
|
<small className="px-3">One day ago</small>
|
||||||
<span
|
<a
|
||||||
className="a"
|
href="#toggle"
|
||||||
style={{
|
style={{
|
||||||
fontVariant: 'small-caps',
|
fontVariant: 'small-caps',
|
||||||
color: 'blue',
|
|
||||||
cursor: 'pointer',
|
|
||||||
}}
|
}}
|
||||||
onClick={() => props.toggleCollapse(props.id)}
|
onClick={() => props.toggleCollapse(props.id)}
|
||||||
>
|
>
|
||||||
expand
|
expand
|
||||||
</span>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
)
|
)
|
||||||
|
35
src/Components/Comments/SingleComment/CommentReply.js
Normal file
35
src/Components/Comments/SingleComment/CommentReply.js
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
import React from 'react'
|
||||||
|
|
||||||
|
class CommentReply extends React.Component {
|
||||||
|
constructor(props) {
|
||||||
|
super(props)
|
||||||
|
this.state = { parentId: props.id, text: '' }
|
||||||
|
this.handleSubmit = this.handleSubmit.bind(this)
|
||||||
|
this.handleChange = this.handleChange.bind(this)
|
||||||
|
}
|
||||||
|
handleChange(e) {
|
||||||
|
this.setState({ [e.target.name]: e.target.value })
|
||||||
|
}
|
||||||
|
|
||||||
|
handleSubmit(e) {
|
||||||
|
e.preventDefault()
|
||||||
|
this.props.submitComment(this.state)
|
||||||
|
this.props.showReply(null)
|
||||||
|
}
|
||||||
|
render() {
|
||||||
|
return (
|
||||||
|
<form onSubmit={this.handleSubmit}>
|
||||||
|
<textarea
|
||||||
|
name="text"
|
||||||
|
onChange={this.handleChange}
|
||||||
|
value={this.state.text}
|
||||||
|
/>
|
||||||
|
<button className="btn btn-dark" onClick={this.handleSubmit}>
|
||||||
|
Submit
|
||||||
|
</button>
|
||||||
|
</form>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export default CommentReply
|
@ -1,4 +1,5 @@
|
|||||||
import React from 'react'
|
import React from 'react'
|
||||||
|
import CommentReply from './CommentReply'
|
||||||
|
|
||||||
const ExpandedComment = props => {
|
const ExpandedComment = props => {
|
||||||
return (
|
return (
|
||||||
@ -8,38 +9,50 @@ const ExpandedComment = props => {
|
|||||||
onMouseEnter={() => props.showCollapseLink(props.id, true)}
|
onMouseEnter={() => props.showCollapseLink(props.id, true)}
|
||||||
onMouseLeave={() => props.showCollapseLink(props.id, false)}
|
onMouseLeave={() => props.showCollapseLink(props.id, false)}
|
||||||
>
|
>
|
||||||
<div className="media bg bg-dark">
|
<div id="media-image" className="media bg bg-dark">
|
||||||
<img alt="profile" src="anon.jpeg" height={64} />
|
<img alt="profile" src="anon.jpeg" height={64} />
|
||||||
|
|
||||||
<div className="media-body ml-3 my-auto">
|
<div id="media-body" className="media-body ml-3 my-auto">
|
||||||
<a className="" href="#user">
|
<a href="#user">username</a>
|
||||||
username
|
<div className="text-white-50">
|
||||||
</a>
|
<small>{props.createdAt}</small>
|
||||||
</div>
|
{props.replies.length > 0 ? (
|
||||||
<div className="white">
|
<a
|
||||||
<small>{props.createdAt}</small>
|
href="#toggle"
|
||||||
{props.replies.length > 0 ? (
|
className="ml-3"
|
||||||
<span
|
style={{
|
||||||
className="a ml-3"
|
fontVariant: 'small-caps',
|
||||||
style={{
|
display: props.displayCollapse || 'none',
|
||||||
fontVariant: 'small-caps',
|
}}
|
||||||
color: 'blue',
|
onClick={() => props.toggleCollapse(props.id, !props.collapsed)}
|
||||||
cursor: 'pointer',
|
>
|
||||||
display: props.displayCollapse || 'none',
|
{props.collapsed ? 'expand' : 'collapse'}
|
||||||
}}
|
</a>
|
||||||
onClick={() => props.toggleCollapse(props.id, !props.collapsed)}
|
) : (
|
||||||
>
|
''
|
||||||
{props.collapsed ? 'expand' : 'collapse'}
|
)}
|
||||||
</span>
|
</div>
|
||||||
) : (
|
|
||||||
''
|
|
||||||
)}
|
|
||||||
<a className="float-right ml-2" href="#replies">
|
|
||||||
reply
|
|
||||||
</a>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div className="">{props.text}</div>
|
<div className="">{props.text}</div>
|
||||||
|
|
||||||
|
{props.collapsed ? (
|
||||||
|
<div />
|
||||||
|
) : (
|
||||||
|
<a className="" href="#reply" onClick={() => props.showReply(props.id)}>
|
||||||
|
reply
|
||||||
|
</a>
|
||||||
|
)}
|
||||||
|
{props.id === props.activeReplyId ? (
|
||||||
|
<CommentReply
|
||||||
|
id={props.id}
|
||||||
|
submitComment={props.submitComment}
|
||||||
|
showReply={props.showReply}
|
||||||
|
{...props}
|
||||||
|
/>
|
||||||
|
) : (
|
||||||
|
<div />
|
||||||
|
)}
|
||||||
</li>
|
</li>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
@ -5,8 +5,10 @@ import uuid from 'uuid'
|
|||||||
class ThreadList extends React.Component {
|
class ThreadList extends React.Component {
|
||||||
constructor() {
|
constructor() {
|
||||||
super()
|
super()
|
||||||
|
this.state = { activeReplyId: null }
|
||||||
this.toggleCollapse = this.toggleCollapse.bind(this)
|
this.toggleCollapse = this.toggleCollapse.bind(this)
|
||||||
this.showCollapseLink = this.showCollapseLink.bind(this)
|
this.showCollapseLink = this.showCollapseLink.bind(this)
|
||||||
|
this.showReply = this.showReply.bind(this)
|
||||||
}
|
}
|
||||||
|
|
||||||
showCollapseLink(id, collapsed) {
|
showCollapseLink(id, collapsed) {
|
||||||
@ -21,7 +23,7 @@ class ThreadList extends React.Component {
|
|||||||
toggleCollapse(id, collapsed) {
|
toggleCollapse(id, collapsed) {
|
||||||
const otherComments = this.props.comments.filter(c => c.id !== id)
|
const otherComments = this.props.comments.filter(c => c.id !== id)
|
||||||
var parent = this.props.comments.find(c => c.id === id)
|
var parent = this.props.comments.find(c => c.id === id)
|
||||||
console.log('toggling', parent)
|
//console.log('toggling', parent)
|
||||||
parent['collapsed'] = collapsed
|
parent['collapsed'] = collapsed
|
||||||
if (!collapsed) {
|
if (!collapsed) {
|
||||||
// when parent was a reply in a previously collapsed thread
|
// when parent was a reply in a previously collapsed thread
|
||||||
@ -42,6 +44,15 @@ class ThreadList extends React.Component {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
handleChange(e) {
|
||||||
|
this.setState({ [e.target.name]: e.target.value })
|
||||||
|
}
|
||||||
|
|
||||||
|
showReply(id) {
|
||||||
|
console.log('show ', id, this.state.activeReplyId, this.state)
|
||||||
|
this.setState({ activeReplyId: id })
|
||||||
|
}
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
const comments = this.props.comments.filter(
|
const comments = this.props.comments.filter(
|
||||||
// only show comments for this parent / thread
|
// only show comments for this parent / thread
|
||||||
@ -52,39 +63,33 @@ class ThreadList extends React.Component {
|
|||||||
if (comments.length === 0) {
|
if (comments.length === 0) {
|
||||||
return ''
|
return ''
|
||||||
}
|
}
|
||||||
console.log('showing comments for thread', this.props.threadLevel, comments)
|
//console.log('showing comments for thread', this.props.threadLevel, comments)
|
||||||
return (
|
return (
|
||||||
<ul className="list-unstyled">
|
<ul className="list-unstyled">
|
||||||
{comments.map(comment => {
|
{comments.map(comment => {
|
||||||
// TODO comments aren't sorted by time
|
// TODO comments aren't sorted by time
|
||||||
if (comment.replies && comment.replies.length === 0) {
|
|
||||||
return (
|
return (
|
||||||
<div className="ml-3" key={uuid()}>
|
<div className="ml-3" key={uuid()}>
|
||||||
<SingleComment
|
<SingleComment
|
||||||
threadLevel={this.props.threadLevel}
|
threadLevel={this.props.threadLevel}
|
||||||
showCollapseLink={this.showCollapseLink}
|
showCollapseLink={this.showCollapseLink}
|
||||||
toggleCollapse={this.toggleCollapse}
|
toggleCollapse={this.toggleCollapse}
|
||||||
{...comment}
|
showReply={this.showReply}
|
||||||
/>
|
submitComment={this.props.submitComment}
|
||||||
</div>
|
activeReplyId={this.state.activeReplyId}
|
||||||
)
|
{...comment}
|
||||||
} else {
|
/>
|
||||||
return (
|
{comment.replies && (
|
||||||
<div className="ml-3" key={uuid()}>
|
|
||||||
<SingleComment
|
|
||||||
threadLevel={this.props.threadLevel}
|
|
||||||
showCollapseLink={this.showCollapseLink}
|
|
||||||
toggleCollapse={this.toggleCollapse}
|
|
||||||
{...comment}
|
|
||||||
/>
|
|
||||||
<ThreadList
|
<ThreadList
|
||||||
threadLevel={comment.id}
|
threadLevel={comment.id}
|
||||||
showCollapseLink={this.showCollapseLink}
|
showCollapseLink={this.showCollapseLink}
|
||||||
comments={this.props.comments}
|
comments={this.props.comments}
|
||||||
|
submitComment={this.props.submitComment}
|
||||||
/>
|
/>
|
||||||
</div>
|
)}
|
||||||
)
|
</div>
|
||||||
}
|
)
|
||||||
})}
|
})}
|
||||||
</ul>
|
</ul>
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user