Table of Contents
- Hello World 👋
- Loading Home Page
- Dark Mode
- Light Mode
- Home Page
- Desktop (Dark Mode)
- Desktop (Light Mode)
- Tab/iPad (Dark Mode)
- Tab/iPad (Light Mode)
- Mobile (Dark Mode)
- Mobile (Light Mode)
- Job Details Page
- Desktop (Dark Mode)
- Desktop (Light Mode)
- Mobile - Filters
- Features:
- Dark Mode
- GitHub API
- Filters
- Infinite Scrolling with Skeleton Loading
- What’s Next
- Until Next Time 👋
Related Posts
Hello World 👋
Welcome to another project showcase. This time, I will be showing the GitHub Jobs project that I did very recently. The design is from FrontendMentor.Io. The website is available at jobs.bhanuteja.dev.
Let’s start with some visuals of how the website looks like.
Loading Home Page
Dark Mode
Light Mode
Home Page
Desktop (Dark Mode)
Desktop (Light Mode)
Tab/iPad (Dark Mode)
Tab/iPad (Light Mode)
Mobile (Dark Mode)
Mobile (Light Mode)
Job Details Page
Desktop (Dark Mode)
Desktop (Light Mode)
Mobile - Filters
Features:
- Dark Mode Support
- Filters - text, location, full time.
- Infinite Scrolling with Skeleton Loading
- Responsive
- Job Details Page
Dark Mode
- I used Tailwind CSS’s inbuilt dark mode support to achieve this.
- Check this pr for more details.
- I then stored the user’s dark mode preference in local storage. So, if the user sets the dark mode, and closes the browser. When he reopens it again, the website will be loaded in dark mode.
GitHub API
- Recently GitHub added a strict CORS policy and we will not be able to request the resources from GitHub using a client.
- So, I had to use a CORS proxy to fetch the data from GitHub Jobs API.
- I tried every one of the proxies mentioned in this blog post. But, the only one that worked for me then was allOrigins.
Filters
Implementing this one was straightforward. GitHub API itself supports the option to pass the filters as params, it then returns the filtered data.
Infinite Scrolling with Skeleton Loading
- Used React Query’s
useMutation
hook to do this.
- Every time the user presses the
Load More
button, a mutation is triggered to fetch the jobs from the next page.
- I then combined the job data fetched from the next page with the current job data to show all the jobs up until then.
I used Tailwind CSS animations utilities to show the loading skeleton.
I made the source code for this project open source. You can take a look at it.
Tell me in the comments if you like me to dig deep into any of the things that I discussed in this article. I will be happy to do so.
Here is the repo 👉 pbteja1998/github-jobs-api
What’s Next
The next article will be part of the My Review of Kent C. Dodds’s EpicReact.Dev series. It will be the fifth article in the series. To know more, go to the link below.
Until Next Time 👋
You might also like the following articles that I wrote:
Written by
24yo developer and blogger. I quit my software dev job to make it as an independent maker. I write about bootsrapping Feather.