-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Comments via embedded documents within Post schema #7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
7MinutesDead-Git
wants to merge
5
commits into
100devs:main
Choose a base branch
from
7MinutesDead-Git:comments-mvp
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
cee572e
Add style overrides for comments and username overlay
7MinutesDead-Git 18a813c
Restrict (but not validate) input fields to images only (...)
7MinutesDead-Git 774e4de
Add ability to post comments (...)
7MinutesDead-Git 534fc48
Create comment schema (...)
7MinutesDead-Git 000bbd6
Add code comments for reasoning on routes
7MinutesDead-Git File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
const mongoose = require("mongoose"); | ||
|
||
const CommentSchema = new mongoose.Schema({ | ||
post: { | ||
type: mongoose.Schema.Types.ObjectId, | ||
ref: "Post" | ||
}, | ||
message: { | ||
type: String, | ||
required: true | ||
}, | ||
likes: { | ||
type: Number, | ||
required: true, | ||
}, | ||
user: { | ||
type: mongoose.Schema.Types.ObjectId, | ||
ref: "User", | ||
}, | ||
userName: { | ||
type: String, | ||
required: true | ||
}, | ||
createdAt: { | ||
type: Date, | ||
default: Date.now, | ||
}, | ||
replies: { | ||
type: [this], | ||
required: false | ||
} | ||
}); | ||
|
||
module.exports = mongoose.model("Comment", CommentSchema); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
const mongoose = require("mongoose"); | ||
const Comments = require("./Comment"); | ||
|
||
const PostSchema = new mongoose.Schema({ | ||
title: { | ||
|
@@ -25,6 +26,11 @@ const PostSchema = new mongoose.Schema({ | |
type: mongoose.Schema.Types.ObjectId, | ||
ref: "User", | ||
}, | ||
userName: { | ||
type: String, | ||
required: true | ||
}, | ||
comments: [Comments.schema], | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is where you can add Comments Schema as an embedded document to the Post Schema, to save yourself from additional queries after first querying for your Post. You automatically get the Comments associated with that Post, just by querying the Post. |
||
createdAt: { | ||
type: Date, | ||
default: Date.now, | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
/* Overlay the username above the sibling image*/ | ||
.username-overlay { | ||
transform: translateY(-100%); | ||
text-decoration: none; | ||
text-decoration-style: revert; | ||
color: white; | ||
font-size: 1.5rem; | ||
} | ||
.comments { | ||
margin: 2rem 0; | ||
} | ||
.comment { | ||
margin: 1.5rem 0; | ||
background-color: #FEFEFE; | ||
border-radius: 5px; | ||
padding: 0.5rem; | ||
} | ||
.comment-text { | ||
font-size: 1rem; | ||
margin: 0; | ||
} | ||
.comment-username { | ||
font-size: 0.75rem; | ||
font-weight: bold; | ||
color: #343434; | ||
} | ||
.comment-input-label { | ||
font-size: 0.75rem | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Here is where you can recursively add Comment replies as arrays of Comments (who will then each have their own Comment replies array), by referencing "this".