Added comments to news items

This commit is contained in:
mrfry 2021-03-04 21:31:32 +01:00
parent 64697efc96
commit 71911063b0
9 changed files with 357 additions and 22 deletions

169
src/components/comments.js Normal file
View file

@ -0,0 +1,169 @@
import React, { useState } from 'react'
import ReactButton from './reactButton.js'
import styles from './comments.module.css'
function CommentInput({ onSubmit }) {
const [val, setVal] = useState('')
return (
<div className={styles.commentAreaContainer}>
<textarea
autoFocus
className={styles.commentArea}
value={val}
onChange={(e) => {
setVal(e.target.value)
}}
/>
<div>
<span
onClick={() => {
onSubmit(val)
}}
className={styles.button}
>
Submit
</span>
</div>
</div>
)
}
function Comment({ comment, index, onComment, onDelete, onReact, uid }) {
const [displayed, setDisplayed] = useState(true)
const [commenting, setCommenting] = useState(false)
const { text, subComments, date, user, reacts } = comment
const own = uid === user
return (
<div className={styles.comment}>
<div className={`${styles.commentData} ${own && styles.ownComment}`}>
<div className={styles.commentHeader}>
<div className={styles.userContainer}>
<div
className={styles.showHide}
onClick={() => {
setDisplayed(!displayed)
}}
>
{displayed ? '[-]' : '[+]'}
</div>
<div>User #{user}</div>
</div>
<div>{date}</div>
</div>
<div className={`${!displayed && styles.hidden}`}>
<div className={styles.commentText}> {text}</div>
<div className={styles.actionsContainer}>
<div
className={styles.button}
onClick={() => {
setCommenting(true)
}}
>
Reply...
</div>
{own && (
<div
className={styles.button}
onClick={() => {
onDelete([index])
}}
>
Delete
</div>
)}
<ReactButton
onClick={(reaction, isDelete) => {
onReact([index], reaction, isDelete)
}}
uid={uid}
existingReacts={reacts}
/>
</div>
{commenting && (
<CommentInput
onSubmit={(e) => {
onComment([index], e)
setCommenting(false)
}}
/>
)}
</div>
</div>
<div className={`${!displayed && styles.hidden}`}>
{subComments &&
subComments.map((sc, i) => {
return (
<Comment
comment={sc}
onReact={(path, reaction, isDelete) => {
onReact([...path, index], reaction, isDelete)
}}
onDelete={(path) => {
onDelete([...path, index])
}}
onComment={(path, text) => {
onComment([...path, index], text)
}}
index={i}
key={i}
uid={uid}
/>
)
})}
</div>
</div>
)
}
export default function Comments({
comments,
onComment,
onDelete,
onReact,
uid,
}) {
const [addingNewComment, setAddingNewComment] = useState(false)
return (
<div>
{comments && comments.length > 0 ? (
comments.map((comment, i) => {
return (
<Comment
onReact={onReact}
onComment={onComment}
onDelete={onDelete}
comment={comment}
index={i}
key={i}
uid={uid}
/>
)
})
) : (
<div>
<div>No comments yet</div>
</div>
)}
{addingNewComment ? (
<CommentInput
onSubmit={(e) => {
setAddingNewComment(false)
onComment([], e)
}}
/>
) : (
<span
onClick={() => {
setAddingNewComment(true)
}}
className={styles.button}
>
Add new
</span>
)}
</div>
)
}

View file

@ -0,0 +1,80 @@
.comment {
margin-left: 25px;
padding: 8px 0px;
}
.commentData {
padding: 5px 2px;
border-left: 1px solid var(--text-color);
background-color: #222;
}
.commentHeader {
display: flex;
justify-content: space-between;
}
.commentHeader > div {
font-weight: bold;
margin: 2px;
}
.userContainer {
display: flex;
flex-direction: row;
}
.userContainer > div {
padding: 0px 3px;
}
.commentText {
margin: 2px;
padding: 10px 5px;
}
.ownComment {
border-left: 1px solid yellow;
}
.showHide {
cursor: pointer;
}
.hidden {
display: none;
}
.actionsContainer {
display: flex;
align-items: center;
}
.button {
margin: 2px 2px;
padding: 0px 10px;
border: 1px solid #444;
border-radius: 6px;
cursor: pointer;
}
.button:hover {
background-color: #444;
}
.commentArea {
color: var(--text-color);
background-color: var(--background-color);
font-size: 16px;
box-sizing: border-box;
height: 120px;
width: 100%;
}
.commentAreaContainer {
margin: 0px 8px 3px 8px;
}
.commentAreaContainer > div {
margin: 5px 0px;
}

View file

@ -1,29 +1,52 @@
import React from 'react' import React from 'react'
import ReactButton from './reactButton.js' import ReactButton from './reactButton.js'
import Comments from './comments.js'
import styles from './newsEntry.module.css' import styles from './newsEntry.module.css'
export default function NewsEntry({ newsKey, newsItem, uid, onReact }) { export default function NewsEntry({
newsKey,
newsItem,
uid,
onReact,
onComment,
onDelete,
}) {
const { reacts, title, body, comments } = newsItem
return ( return (
<div> <div>
<div className={styles.newsContainer}> <div className={styles.newsContainer}>
<div className={styles.itemNumber}>{newsKey} :</div> <div className={styles.itemNumber}>{newsKey} :</div>
<div <div
className={styles.newsTitle} className={styles.newsTitle}
dangerouslySetInnerHTML={{ __html: newsItem.title }} dangerouslySetInnerHTML={{ __html: title }}
/> />
<div <div
className={styles.newsBody} className={styles.newsBody}
dangerouslySetInnerHTML={{ __html: newsItem.body }} dangerouslySetInnerHTML={{ __html: body }}
/> />
</div> </div>
<ReactButton <ReactButton
existingReacts={newsItem.reacts} existingReacts={reacts}
uid={uid} uid={uid}
onClick={onReact} onClick={(reaction, isDelete) => {
onReact({ type: 'news', reaction, isDelete })
}}
/> />
<hr /> <hr />
<Comments
uid={uid}
onReact={(path, reaction, isDelete) => {
onReact({ type: 'comment', path, reaction, isDelete })
}}
onComment={onComment}
onDelete={onDelete}
comments={comments}
/>
<hr />
<hr />
</div> </div>
) )
} }

View file

@ -5,6 +5,7 @@ import Tooltip from './tooltip.js'
import styles from './reactButton.module.css' import styles from './reactButton.module.css'
import reactions from '../data/reactions.json' import reactions from '../data/reactions.json'
// TODO: fixdis
const breakEvery = 7 const breakEvery = 7
function ExistingReacts({ existingReacts, onClick, uid }) { function ExistingReacts({ existingReacts, onClick, uid }) {
@ -20,6 +21,7 @@ function ExistingReacts({ existingReacts, onClick, uid }) {
} }
return ( return (
<div <div
title={currReact.join(', ')}
className={`${currReact.includes(uid) && styles.reacted}`} className={`${currReact.includes(uid) && styles.reacted}`}
key={key} key={key}
onClick={() => { onClick={() => {
@ -78,6 +80,7 @@ export default function ReactButton({ onClick, existingReacts, uid }) {
return ( return (
<div <div
className={styles.reactContainer}
onMouseEnter={() => { onMouseEnter={() => {
setOpened(true) setOpened(true)
}} }}

View file

@ -15,12 +15,10 @@
.reactionContainer > div { .reactionContainer > div {
margin: 2px 2px; margin: 2px 2px;
padding: 0px 8px; padding: 0px 10px;
background-color: #444; border: 1px solid #444;
border-radius: 6px; border-radius: 6px;
cursor: pointer; cursor: pointer;
font-size: 18px;
} }
.reactionContainer > div:hover { .reactionContainer > div:hover {
@ -35,3 +33,7 @@
.reacted { .reacted {
color: yellow; color: yellow;
} }
.reactContainer {
display: inline-block;
}

View file

@ -3,11 +3,9 @@ import styles from './tooltip.module.css'
export default function Tooltip({ children, text, opened }) { export default function Tooltip({ children, text, opened }) {
return ( return (
<div> <div className={styles.tooltip}>
<div className={styles.tooltip}> {text()}
{text()} {opened && <span className={styles.tooltiptext}>{children}</span>}
{opened && <span className={styles.tooltiptext}>{children}</span>}
</div>
</div> </div>
) )
} }

View file

@ -1,7 +1,6 @@
.tooltip { .tooltip {
position: relative; position: relative;
display: inline-block; display: inline-block;
border-bottom: 1px dotted black;
} }
.tooltip .tooltiptext { .tooltip .tooltiptext {

View file

@ -1,6 +1,6 @@
{ {
"siteUrl": "https://qmining.frylabs.net/", "siteUrl": "https://qmining.frylabs.net/",
"apiUrl": "https://api.frylabs.net/", "apiUrl": "http://localhost:8080/",
"mobileWindowWidth": 700, "mobileWindowWidth": 700,
"maxQuestionsToRender": 250 "maxQuestionsToRender": 250
} }

View file

@ -57,9 +57,50 @@ export default function Index({ globalData }) {
let newsEntryData = news[key] let newsEntryData = news[key]
return ( return (
<NewsEntry <NewsEntry
onReact={(reaction, isDelete) => { onReact={({ type, path, reaction, isDelete }) => {
console.log(reaction, isDelete) if (type === 'news') {
fetch(constants.apiUrl + 'infos', { fetch(constants.apiUrl + 'infos', {
method: 'POST',
credentials: 'include',
headers: {
Accept: 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify({
react: reaction,
newsKey: key,
isDelete: isDelete,
}),
}).then((res) => {
// TODO: dont refetch news
fetchNews().then((res) => {
setNews(res)
})
})
} else if (type === 'comment') {
fetch(constants.apiUrl + 'comment', {
method: 'POST',
credentials: 'include',
headers: {
Accept: 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify({
type: 'reaction',
newsKey: key,
path: path,
reaction: reaction,
isDelete: isDelete,
}),
}).then((res) => {
fetchNews().then((res) => {
setNews(res)
})
})
}
}}
onDelete={(path) => {
fetch(constants.apiUrl + 'comment', {
method: 'POST', method: 'POST',
credentials: 'include', credentials: 'include',
headers: { headers: {
@ -67,11 +108,31 @@ export default function Index({ globalData }) {
'Content-Type': 'application/json', 'Content-Type': 'application/json',
}, },
body: JSON.stringify({ body: JSON.stringify({
react: reaction, type: 'delete',
path: path,
newsKey: key, newsKey: key,
isDelete: isDelete,
}), }),
}).then((res) => { }).then(() => {
fetchNews().then((res) => {
setNews(res)
})
})
}}
onComment={(path, text) => {
fetch(constants.apiUrl + 'comment', {
method: 'POST',
credentials: 'include',
headers: {
Accept: 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify({
type: 'add',
path: path,
text: text,
newsKey: key,
}),
}).then(() => {
fetchNews().then((res) => { fetchNews().then((res) => {
setNews(res) setNews(res)
}) })