This project was bootstrapped with Create React App. You can find the most recent version on how to perform common tasks in the guide here.
This repo is part of the tiny project/demo/portfolio for a Super Simple Book Lending App.
It is responsible for creating the graphical user interface, managing the API calls, and control user access in each action (borrow, reserve, return).
Assuming you already have Create React App and you already installed and deployed the repos book-lending-app-auth and book-lending-app-api, the following steps will explain how to install this project on your machine.
- Clone this repo
- Install the dependent modules
- Open the file
src/components/dialogs/LoginDialog.js
and update the urls of the API call in the methods handleLogin and handleRegister to the one you created installing the repo book-lending-app-auth. - Open the file
src/components/dialogs/ItemDetailDialog.js
and update the url of the API call in the method callAPI- Don't paste the entire url. This method is dynamically taking the last two path parameters, the first one is the utility (reservations/lendings/returnings), and the second one is the id of the book.
- Open the file
src/components/AppContent.js
and update the url of the API call in the method fetchAllBooks - To execute in local mode run
npm start
.
Just delete the entire folder.