Skip to content

feat(courses): integrate course API with offline-first pagination#42

Open
Gowreesh-A-M wants to merge 2 commits intoref/lesson-detailfrom
feat/integrate-course-list
Open

feat(courses): integrate course API with offline-first pagination#42
Gowreesh-A-M wants to merge 2 commits intoref/lesson-detailfrom
feat/integrate-course-list

Conversation

@Gowreesh-A-M
Copy link
Copy Markdown
Collaborator

@Gowreesh-A-M Gowreesh-A-M commented Mar 21, 2026

  • Implement HttpDataSource.getCourses with page/page_size params
  • Add PaginatedResponseDto to handle paginated API responses
  • Update CourseRepository to track pagination state via API next field
  • Show full-screen loader only on first visit with empty cache
  • Show bottom pagination loader while fetching subsequent pages

@Gowreesh-A-M Gowreesh-A-M changed the title feat(courses): integrate real course API with offline-first pagination feat(courses): integrate course API with offline-first pagination Mar 21, 2026
@gemini-code-assist
Copy link
Copy Markdown

Summary of Changes

Hello, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

This pull request significantly upgrades the Study tab by integrating a real course API, moving away from static mock data. It establishes a robust offline-first architecture with efficient pagination, ensuring a smooth user experience even with large datasets or intermittent connectivity. The changes include a new centralized networking layer, refined loading state management, and an updated data model to support richer course information.

Highlights

  • Real Course API Integration: The Study tab now fetches and displays live course data from the Testpress API, replacing static mock data. This is implemented with an offline-first approach, persisting data to a local Drift DB.
  • Offline-First Pagination: Courses are loaded incrementally with API-driven pagination. The UI supports infinite scrolling, fetching subsequent pages as the user approaches the end of the list.
  • Centralized Networking & Error Handling: Introduced ApiClient for all HTTP communication, wrapping Dio and automatically attaching Authorization headers. ApiException provides standardized error handling for network requests.
  • Dynamic Loading States: Improved user experience with loading indicators: a full-screen loader appears only on the very first visit when the cache is empty, while subsequent visits display cached data instantly. A small bottom spinner indicates ongoing pagination fetches.
  • Course Repository Enhancements: The CourseRepository now manages pagination state (_nextPage, _hasMore, _isSyncing) and includes a callback for sync state changes. It also handles upserting paginated results into the local database.
  • Course Image Support: The CourseDto and CoursesTable in the local database have been extended to include an image field, allowing course cards to display images fetched from the API.

🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console.

Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point by creating a comment using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for GitHub and other Google products, sign up here.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

Copy link
Copy Markdown

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request refactors the Study tab to integrate a real backend API for course data, transitioning from static mock data to an offline-first, paginated approach. Key changes include the introduction of ApiClient and ApiException for centralized HTTP communication with JWT authentication, and an updated HttpDataSource that fetches paginated course data. The data layer is enhanced with a new PaginatedResponseDto model and the CourseDto and local Drift database (CoursesTable) now support an image field, with the database schema version incremented. The CourseRepository is refactored to manage pagination state and supports incremental fetching, persisting data locally, and providing sync state callbacks. The StudyScreen is updated to use a CustomScrollView with a ScrollController for infinite scrolling, displaying appropriate loading indicators for initial fetches and pagination. Course cards are also enhanced to display fetched course images, with a fallback to a default icon. The application configuration now defaults to using the real HTTP data source.

@Gowreesh-A-M Gowreesh-A-M force-pushed the feat/integrate-course-list branch from e4558a7 to 0ef834d Compare March 23, 2026 14:03
Base automatically changed from feat/integrate-auth-api to main March 26, 2026 10:45
@Gowreesh-A-M Gowreesh-A-M force-pushed the feat/integrate-course-list branch 5 times, most recently from f0b161c to aa1252c Compare April 1, 2026 07:43
@Gowreesh-A-M Gowreesh-A-M force-pushed the feat/integrate-course-list branch from aa1252c to 34d015d Compare April 1, 2026 10:18
@Gowreesh-A-M Gowreesh-A-M changed the base branch from main to ref/lesson-detail April 1, 2026 10:19
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant