Skip to content
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

Entrepreneur Connect Milestone 4 : Feed #9

Merged
merged 38 commits into from
Oct 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
4b63a7f
Update included:
Nemwel-Boniface Oct 2, 2023
3082631
Update included:
Nemwel-Boniface Oct 2, 2023
5156681
Update included:
Nemwel-Boniface Oct 2, 2023
aba02cb
Update included:
Nemwel-Boniface Oct 2, 2023
d9ca2b1
Update included:
Nemwel-Boniface Oct 4, 2023
cfb93f1
Update included:
Nemwel-Boniface Oct 4, 2023
7d2b241
Update styled the feed post for the tablet and desktop view
Nemwel-Boniface Oct 4, 2023
6942e14
Update included:
Nemwel-Boniface Oct 5, 2023
aa66194
Update included:
Nemwel-Boniface Oct 5, 2023
11ee457
Update included:
Nemwel-Boniface Oct 5, 2023
2456c5a
Update included:
Nemwel-Boniface Oct 7, 2023
4a381c6
Update installed axios to handle HTTP requests
Nemwel-Boniface Oct 7, 2023
72298b6
Update included:
Nemwel-Boniface Oct 7, 2023
e9082eb
Update linked the redux to the react code to display the available posts
Nemwel-Boniface Oct 7, 2023
0e97af6
Updte fixed issue found when displaying the data from redux caused by…
Nemwel-Boniface Oct 9, 2023
1a06443
Update included:
Nemwel-Boniface Oct 9, 2023
b8327eb
Update created the Current date to help me format the date for creati…
Nemwel-Boniface Oct 9, 2023
2ea3011
Update created the add post form and wired it to work as expected
Nemwel-Boniface Oct 9, 2023
b9caa0b
Update made changes to the postSlice to allow data to come from the R…
Nemwel-Boniface Oct 9, 2023
c1d9bd3
Update setup the toggle feature to hide or show the post details to a…
Nemwel-Boniface Oct 10, 2023
c0fe38a
Update added the edit and delete buttons toggled when show button is …
Nemwel-Boniface Oct 10, 2023
f211caa
Update styled the post toggle with basic styling
Nemwel-Boniface Oct 10, 2023
35bdfcf
Update plugged the delete post button to ensure it works
Nemwel-Boniface Oct 10, 2023
e037c75
Update included:
Nemwel-Boniface Oct 21, 2023
1e20bd1
Update included:
Nemwel-Boniface Oct 21, 2023
4dbbde3
Update included the taglists input form
Nemwel-Boniface Oct 23, 2023
f253309
Update added the taglist to the post and styled them
Nemwel-Boniface Oct 23, 2023
7143e5e
Update to the addPost ensuring that we are able to create posts and s…
Nemwel-Boniface Oct 23, 2023
62f96f6
Update implement fetch posts feature
Nemwel-Boniface Oct 24, 2023
daf0d9f
Update ensured that the fetch post functionality works as expected
Nemwel-Boniface Oct 24, 2023
25797e9
Update finetuned the fetchposts feature
Nemwel-Boniface Oct 25, 2023
9767af3
Update styled the add post form
Nemwel-Boniface Oct 25, 2023
14b7076
Update included:
Nemwel-Boniface Oct 26, 2023
79389dd
Update checked and fixed found ESlint errors
Nemwel-Boniface Oct 26, 2023
fc23df1
Update add Proptype validations
Nemwel-Boniface Oct 26, 2023
7fffb45
Update fixed all found stylelint syntactical errors that were found
Nemwel-Boniface Oct 26, 2023
2f53e0a
Update made changes fixing error found
Nemwel-Boniface Oct 26, 2023
9f84d2b
Update fix linter error
Nemwel-Boniface Oct 26, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
192 changes: 185 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,14 @@
"version": "0.1.0",
"private": true,
"dependencies": {
"@reduxjs/toolkit": "^1.9.5",
"@reduxjs/toolkit": "^1.9.7",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"axios": "^1.5.1",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-calendar": "^4.6.0",
"react-dom": "^18.2.0",
"react-icons": "^4.11.0",
"react-redux": "^8.1.2",
Expand Down
5 changes: 5 additions & 0 deletions src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ import './stylesheets/homePage/footer.css';
import './stylesheets/homePage/navbar.css';
import './stylesheets/user/login.css';
import './stylesheets/user/currentUserProfile.css';
import './stylesheets/feed/feed.css';
import './stylesheets/feed/feedNavBar.css';
import './stylesheets/feed/posts.css';
import './App.css';
import './stylesheets/notfound.css';
import { Routes, Route } from 'react-router-dom';
Expand All @@ -14,6 +17,7 @@ import LogIn from './components/user/LogIn';
import SignUp from './components/user/SignUp';
import CurrentUserProfile from './components/user/userProfile';
import NotFound from './components/NotFound';
import Feed from './components/feed/Feed';

function App() {
return (
Expand All @@ -23,6 +27,7 @@ function App() {
<Route path="/login" element={<LogIn />} />
<Route path="signup" element={<SignUp />} />
<Route path="/userProfile" element={<CurrentUserProfile />} />
<Route path="/feed" element={<Feed />} />
<Route path="*" element={<NotFound />} />
</Routes>
</div>
Expand Down
Loading