Get anime characters and display them as cards When the page loads, get the anime characters from https://bit.ly/3HPlkBl and display them as cards as shown in the image below. You only need to display the [Title, Rating , Image[Large] of the each anime character with a delete button. Caching Anime Data in IndexedDB Improve your application performance by caching the anime data in IndexedDB. Meaning, when you get the anime data save it to IndexedDB. Subsequent visits should read the data from IndexedDB. Only fetch data from the remote API if the anime data is not available in the IndexedDB. Display Anime Details When the user clicks a specific anime card from the list, you should pass the id to a function named displayAnimeDetails and get the anime’s full details from indexedDB. Then display the [Title, Rating, Image and Synopsis] of the anime character. You can simply replace the list by the card shown below. Also add a back link that replaces back the single card by the original list. Delete Anime from the Cards list and from IndexedDB If the user clicks on the Delete button, then delete the Anime from your IndexedDB and from the displayed list. 3. 4. Important: All data read/write operations should be implementation in a repository.
SQL
SQL stands for Structured Query Language, is a form of communication that uses queries structured in a specific format to store, manage & retrieve data from a relational database.
Queries
A query is a type of computer programming language that is used to retrieve data from a database. Databases are useful in a variety of ways. They enable the retrieval of records or parts of records, as well as the performance of various calculations prior to displaying the results. A search query is one type of query that many people perform several times per day. A search query is executed every time you use a search engine to find something. When you press the Enter key, the keywords are sent to the search engine, where they are processed by an algorithm that retrieves related results from the search index. Your query's results are displayed on a search engine results page, or SER.
Step by step
Solved in 3 steps