Simple book search web app using the Google Books API
This project was generated with Angular CLI version 16.0.0-next-1.
-
Welcome screen:
- When a user opens the app, he should insert his username (can’t be empty) and only after that redirected to the search page. There is no need to check if the user exists, just validate the form.
-
Search page:
- Will had greeted with the username from the welcome screen on the top
- Should have a search bar and a container which going to show the search result to the user.
- Search will be trigger with any user input.
- Search results should be limited to 20.
- Clicking on any search result item should open a dialog box which going to show more details and an option to add the item to my Wishlist.
- Bonus point: implement pagination for search.
-
Wishlist page:
- Should show all the Wishlist items with the option to remove from the Wishlist.
- Write clean and clear code
- Take performance into consideration
- Use Angular CLI to create and run the project
- Bonus point: The app should be responsive.
Run ng serve
for a dev server. Navigate to http://localhost:4200/
. The app will automatically reload if you change any of the source files.
Run ng generate component component-name
to generate a new component. You can also use ng generate directive|pipe|service|class|guard|interface|enum|module
.
Run ng build
to build the project. The build artifacts will be stored in the dist/
directory. Use the --prod
flag for a production build.
Run ng test
to execute the unit tests via Karma.
Run ng e2e
to execute the end-to-end tests via Protractor.
To get more help on the Angular CLI use ng help
or go check out the Angular CLI Overview and Command Reference page.