Skip to content

Latest commit

 

History

History
52 lines (32 loc) · 1.12 KB

File metadata and controls

52 lines (32 loc) · 1.12 KB

Learn React With Harshi Series

Documenting my learning journey of Namaste React Live Course conducted by Akshay Saini

Features : Chapter-15 Building Advanced Features (12/02/2023)

Reference :

Component UI Hierarchy

App Header Body SideBar MainContainer CategoriesButtonContainer CategoryButton VideosListContainer VideoCard VideoPageContainer VideoContainer VideoStream VideoDescription VideoComments CategoriesButtonContainer CategoryButton VideosListContainer VideoCard

Basic features that we are going to develop in this chapter

  1. Search for a keyword

  2. Fetch list of videos that matches the keywords

  3. Display the list of videos

  4. Implement debouncing to fetch an API only when there is a delay of 200ms while typing

  5. Implement Caching of searched results

  6. Implement nested comments feature in Video Watch Page under comments section.

All the above fetaured are generic and important which can be used in almost every application.