Skip to content

React client that connects to Anilist, a public GraphQL API that provides data on Anime series.

Notifications You must be signed in to change notification settings

jsefiani/anime-web-app

Repository files navigation

Anime web application

React client that connects to Anilist, a public GraphQL API that provides data on Anime series.

The API reference documentation can be found here and in case you want to play around with the API, you can do so with the interactive GraphiQL editor.

For more general information regarding the AniList API, go here.

This project was bootstrapped with Create React App to set up a quick development environment.

Table of Contents

  • Search for Anime series (debounced search)
  • Grid list with cover and name of anime series (cards)
  • Infinite scrolling (renders placeholder cards when loading data)
  • Lazy loading images using Intersection Observer API
  • Edit and save user profile + form validation before submitting (no business logic, shows an error toast when submitting)
  • Delete user profile (no business logic, shows an error toast when performing action)
  • Anime details are shown in a modal when clicking on a card
  • Using container and presentational components pattern to separate business logic form UI logic. This makes testing presentational components much easier
  • My App's architecture is inspired by the atomic design methodology, it consists of the following major folders:
    • build: contains optimized build for production
    • src: source code
      • shared: reusable UI components, constants and utils that are used all over the app
      • pages: all components that represent a React route and are composed using multiple containers
        • components (UI logic)
        • containers (business logic)
        • {pageName}Page.tsx
          • layout: components specifically used for building a layout
  • Write tests
  • Implement a loading state for buttons
  • Confirmation modal when deleting user account
  • Add default actions buttons to modal component
  • Use ref forwarding for anime cards ✅
  • Use cached image when showing modal with Anime details
  • Use storybook to organize, document and build components in isolation
  • Theme app with Material UI's and styled components' theme provider
  • Improve accessibility
  • Change placeholder for lazy image (now dark grey)
  • Fix height image when viewing Anime details, because now some images are not taking full height of modal container
  • Create singleton for Intersection Observer class in the lazy image component as now IO is instantiated for every image
  • Look on how to organize styled components better as some are now organized in a dedicated file (component-name.styles.tsx), while others are just included with the component
  • Create reusable form buttons component (can be used as base for other forms)
  • Make GraphQL API URL configurable as it's now hardcoded (environment vars or config file)
  • Lots more...

In the project directory, you can run:

npm install

Will install all app dependencies.

npm start

Runs the app in the development mode.
Open http://localhost:3000 to view it in the browser.

The page will reload if you make edits.
You will also see any lint errors in the console.

npm test

Launches the test runner in the interactive watch mode.
See the section about running tests for more information.

npm run build

Builds the app for production to the build folder.
It correctly bundles React in production mode and optimizes the build for the best performance.

The build is minified and the filenames include the hashes.
Your app is ready to be deployed!

See the section about deployment for more information.

npm run eject

Note: this is a one-way operation. Once you eject, you can’t go back!

If you aren’t satisfied with the build tool and configuration choices, you can eject at any time. This command will remove the single build dependency from your project.

Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except eject will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own.

You don’t have to ever use eject. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.

About

React client that connects to Anilist, a public GraphQL API that provides data on Anime series.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published