Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/victoriacheng15/hacker-news-next
Using React (Next.js), Redux Toolkit, Vitest: Fetch top 5 stories from REST API on the homepage. Modal links to external sources, comments, and job postings. Browse more on other pages.
https://github.com/victoriacheng15/hacker-news-next
chakra-ui nextjs react redux-toolkit vercel
Last synced: about 2 months ago
JSON representation
Using React (Next.js), Redux Toolkit, Vitest: Fetch top 5 stories from REST API on the homepage. Modal links to external sources, comments, and job postings. Browse more on other pages.
- Host: GitHub
- URL: https://github.com/victoriacheng15/hacker-news-next
- Owner: victoriacheng15
- License: mit
- Created: 2023-01-14T20:29:45.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-11-01T09:42:21.000Z (about 2 months ago)
- Last Synced: 2024-11-01T23:30:30.902Z (about 2 months ago)
- Topics: chakra-ui, nextjs, react, redux-toolkit, vercel
- Language: TypeScript
- Homepage: https://hacker-news-next.vercel.app
- Size: 12.2 MB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Hacker News Clone - Next.js
![hacker news clone](./hacker-news-next-app.jpg)
Users can view 8 recent stories of each category, top, show, and job on the home page, and then can browse additional stories on subsequent pages. Each story block can be clicked to view its link and comments.
The user should be able to:
- [x] Users should be able to see 8 recent stories of each category on the home page
- [x] Users should be able to view additional stories on subsequent pages
- [x] Users should have the option to load more stories by clicking on the `Load More Stories` at the bottom of the page
- [x] Each story block on each page should include the story title, total points, author name, time since the story was posted, and the total number of comments
- [x] The job page should display story blocks containing the name of the company hiring, the position being advertised, the link to the job listing, the author's name, and the time since the job was posted
- [x] Clicking on each story block should open a modal window displaying the story's link, content (if applicable), and comments
- [x] The modal window may include a `Load More Comments` button at the bottom, allowing users to view additional comments if available[View the live site here](https://hacker-news-next.vercel.app/)
## Tech Stack:
![TypeScript](https://img.shields.io/badge/TypeScript-3178C6.svg?style=for-the-badge&logo=TypeScript&logoColor=white) ![Next.js](https://img.shields.io/badge/Next.js-000000.svg?style=for-the-badge&logo=nextdotjs&logoColor=white) ![Redux](https://img.shields.io/badge/Redux-764ABC.svg?style=for-the-badge&logo=Redux&logoColor=white) ![Chakra UI](https://img.shields.io/badge/Chakra%20UI-319795.svg?style=for-the-badge&logo=Chakra-UI&logoColor=white) ![Testing Library](https://img.shields.io/badge/Testing%20Library-E33332.svg?style=for-the-badge&logo=Testing-Library&logoColor=white) ![Vitest](https://img.shields.io/badge/Vitest-6E9F18.svg?style=for-the-badge&logo=Vitest&logoColor=white)
## Screenshot/GIFs
Overall Demo
https://user-images.githubusercontent.com/35031228/220741504-6ce9e933-f240-41d7-94a8-9f211f38e5e3.mp4
Load More Stories
https://user-images.githubusercontent.com/35031228/220741439-0a8e4f32-8a66-4448-938a-8d273725e389.mp4
Modal Window (top and show pages)
https://user-images.githubusercontent.com/35031228/220741470-0d11766f-cd34-4559-a98d-3fc7f2529ba1.mp4
Job Page
https://user-images.githubusercontent.com/35031228/220741173-16c4b3a7-c187-4bfe-8e50-76db6f65e290.mp4
## Run Locally
```bash
git clone [email protected]:victoriacheng15/hacker-news-next.git
``````bash
cd hacker-news-next
``````bash
# or your preference for the package manager
pnpm install
``````bash
pnpm dev
```## What have I learned
![handle stats with the Redux Toolkit](./md-media/handle-stats-with-redux-toolkit.png)
**Redux ToolKit**
`CreateAsyncThunk` is a method for managing data retrieval from an API and returning payloads containing information on data, loading status, and errors. By using `extraReducer` from `createSlice`, it can handle the output based on the results of the retrieval process. This process is similar to a switch case where, if the retrieval process is successful, the payload will contain information from the API, the loading status will indicate success, and there will be no errors.
In addition, you can use the `reducers` feature of `createSlice` to handle actions. In this particular case, I utilized `reducers` to manage state changes related to the loading status and limit for loading more stories.
**Chakra UI**
Before using the Chakra UI component library, I didn't have experience with component libraries or similar tools. However, I learned that Chakra UI can significantly speed up the component-building process by providing pre-built components that have a consistent UI, accessibility considerations, and customizable options like color schemes and layouts. Furthermore, the library's `as` props feature allows developers to render components as specific HTML elements, adding to its versatility.
## Author
[![LinkedIn](https://img.shields.io/badge/LinkedIn-0A66C2.svg?style=for-the-badge&logo=LinkedIn&logoColor=white)](https://www.linkedin.com/in/victoriacheng15/) [![Twitter](https://img.shields.io/badge/Twitter-1DA1F2.svg?style=for-the-badge&logo=Twitter&logoColor=white)](https://twitter.com/viktoriacheng15)