Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
学ぶ Challenge: Retrieve and Display Data | Fetching and Displaying Data in Next.js
Next.js 14 Mastery for Building Modern Web Apps

bookChallenge: Retrieve and Display Data

メニューを表示するにはスワイプしてください

Let's focus on the next component, LatestInvoices. Its purpose is to display the last five invoices, sorted chronologically by date.

You might think that achieving this with JavaScript is straightforward. However, as the app grows and more data appears, it's preferable to handle the sorting and limiting of invoices using SQL. This approach prevents overloading the frontend with unnecessary calculations.

To inspect the fetchLatestInvoices function, please visit app/lib/data.ts.

Back to the Project

We'll employ the fetchLatestInvoices function on the dashboard page to retrieve the most recent invoices and display them using the LatestInvoices component.

Don't forget to visit app/ui/dashboard/latest-invoices.tsx and uncomment the provided UI.

Challenge

Now, it's your chance to fetch the data and present the information to the user.

Primarily, we have a Card component on the dashboard page. Your task is to import the fetchCardData function, which provides:

  • numberOfSellers;
  • numberOfInvoices;
  • totalFulfilledInvoices;
  • totalAwaitingInvoices.

Based on the retrieved data, uncomment the corresponding Card component.

Result

In Practice

すべて明確でしたか?

どのように改善できますか?

フィードバックありがとうございます!

セクション 5.  3

AIに質問する

expand

AIに質問する

ChatGPT

何でも質問するか、提案された質問の1つを試してチャットを始めてください

セクション 5.  3
some-alt