Skip to content

feat(ui): redesign all merchant locations experience#820

Open
romchornyi wants to merge 9 commits into
masterfrom
feat/all-locations-redesign
Open

feat(ui): redesign all merchant locations experience#820
romchornyi wants to merge 9 commits into
masterfrom
feat/all-locations-redesign

Conversation

@romchornyi

@romchornyi romchornyi commented Jul 16, 2026

Copy link
Copy Markdown
Contributor

Issue being fixed or feature implemented

Redesigns the all merchant locations experience in Explore Dash. The previous list-only "all locations" screen is replaced with a redesigned, map-and-list experience and a dedicated "where to spend" navigation flow, along with supporting data-layer and merchant-details improvements.

What was done?

  • Redesigned all-merchant-locations screen — new SwiftUI-based AllMerchantLocationsView, AllMerchantLocationsViewController, and AllMerchantLocationsViewModel, plus a new MerchantCellRow; the old List/AllMerchantLocationsViewController is removed.
  • Custom "where to spend" navigation bar flow for the redesigned experience.
  • Point-of-use details refactorPOIDetailsViewController, POIDetailsView, and POIDetailsViewModel reworked (significant simplification of the view controller).
  • Merchant list / cells — added MerchantItemCell, updated PointOfUseItemCell, MerchantListViewController, ExplorePointOfUseListViewController, and list model/data-provider changes.
  • Data layerMerchantDAO improvements (pagination behavior, coordinate validation), ExploreDatabaseConnection and ExploreDash updates, ExplorePointOfUse preview mocks.
  • Misc — map view / list handler / empty-results / location-service popup updates, navigation bar icon assets, Home shortcut and bridging-header adjustments.

Approx. 1,842 insertions / 657 deletions across 32 files.

How Has This Been Tested?

Manual testing in the Explore Dash flow:

  • Where to Spend → merchant list, Nearby tab, and Show all locations (map + list).
  • Merchant details screen (POI details) for online and physical merchants.
  • Pagination and coordinate/tap validation on the all-locations list.

Reviewers: please confirm coverage on your device/simulator matrix and network (mainnet/testnet); automated test coverage for the new screens is not yet added.

Breaking Changes

None.

Checklist:

  • I have performed a self-review of my own code
  • I have commented my code, particularly in hard-to-understand areas
  • I have added or updated relevant unit/integration/functional/e2e tests
  • I have made corresponding changes to the documentation

For repository code-owners and collaborators only

  • I have assigned this pull request to a milestone

jeanpierreroma and others added 8 commits June 1, 2026 23:05
Why:
- consolidate the local explore redesign work into a single reviewable changeset
- keep the where-to-spend and all-locations flows aligned after the sheet, navigation, and pagination updates
- bump the build number to 14 for the next app build

What:
- add custom where-to-spend navigation bar assets and related SwiftUI navigation updates
- finalize merchant details and all-locations redesign flows, including native sheet behavior and map integration
- add paginated all-locations loading, real total counts, infinite scroll, and segmented-bar visibility fixes
- update project build settings to 8.6.0 (14)

Validation:
- build was not reliably runnable in this environment because xcodebuild was blocked by CoreSimulatorService issues
Why:
- keep paginated all-locations results deterministic across pages
- preserve the current radius when navigating between all-locations and details

What:
- add a stable secondary sort for all-locations pagination
- validate coordinates in the all-locations count path
- pass the current search radius back into merchant details
- narrow POIDetailsViewController initializer visibility to internal

Validation:
- no reliable xcodebuild validation was available in this environment because CoreSimulatorService remained unavailable
…difier

Update Explore Dash database layer and clean up unused UI components:
- Optimize ExploreDatabaseConnection query performance
- Remove SelfSizingSheetModifier (consolidated into unified sheet infrastructure)
- Update bridging header configuration
- Update project configuration

This improves database efficiency in the all-locations redesign.
@romchornyi romchornyi changed the title feat(explore): redesign all merchant locations experience feat(ui): redesign all merchant locations experience Jul 16, 2026
@coderabbitai

coderabbitai Bot commented Jul 16, 2026

Copy link
Copy Markdown

Warning

Review limit reached

@romchornyi, you've reached your PR review limit, so we couldn't start this review.

Next review available in: 35 minutes

Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available.
You're only billed for reviews past your plan's rate limits ($0.25/file).

How can I continue?

After more reviews become available, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews.

How do review limits work?

CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability.

For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window.

Please refer docs for additional details.

Review details
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: 6f407909-5b13-453d-bfb3-e34670e42eed

📥 Commits

Reviewing files that changed from the base of the PR and between 2829885 and 4cba48c.

📒 Files selected for processing (27)
  • DashWallet.xcodeproj/project.pbxproj
  • DashWallet/Sources/Models/Explore Dash/ExploreDash.swift
  • DashWallet/Sources/Models/Explore Dash/Infrastructure/DAO Impl/MerchantDAO.swift
  • DashWallet/Sources/Models/Explore Dash/Infrastructure/Database Connection/ExploreDatabaseConnection.swift
  • DashWallet/Sources/Models/Explore Dash/Model/Entites/ExplorePointOfUse+PreviewMock.swift
  • DashWallet/Sources/Models/Explore Dash/Model/Entites/ExplorePointOfUse.swift
  • DashWallet/Sources/UI/Explore Dash/ExploreViewController.swift
  • DashWallet/Sources/UI/Explore Dash/Merchants & ATMs/Details/POIDetailsViewController.swift
  • DashWallet/Sources/UI/Explore Dash/Merchants & ATMs/Details/Views/POIDetailsView.swift
  • DashWallet/Sources/UI/Explore Dash/Merchants & ATMs/Details/Views/POIDetailsViewModel.swift
  • DashWallet/Sources/UI/Explore Dash/Merchants & ATMs/List/AllMerchantLocations/AllMerchantLocationsView.swift
  • DashWallet/Sources/UI/Explore Dash/Merchants & ATMs/List/AllMerchantLocations/AllMerchantLocationsViewController.swift
  • DashWallet/Sources/UI/Explore Dash/Merchants & ATMs/List/AllMerchantLocations/AllMerchantLocationsViewModel.swift
  • DashWallet/Sources/UI/Explore Dash/Merchants & ATMs/List/AllMerchantLocations/Components/MerchantCellRow.swift
  • DashWallet/Sources/UI/Explore Dash/Merchants & ATMs/List/AllMerchantLocationsViewController.swift
  • DashWallet/Sources/UI/Explore Dash/Merchants & ATMs/List/Cells/MerchantItemCell.swift
  • DashWallet/Sources/UI/Explore Dash/Merchants & ATMs/List/Cells/PointOfUseItemCell.swift
  • DashWallet/Sources/UI/Explore Dash/Merchants & ATMs/List/ExplorePointOfUseListViewController.swift
  • DashWallet/Sources/UI/Explore Dash/Merchants & ATMs/List/MerchantListViewController.swift
  • DashWallet/Sources/UI/Explore Dash/Merchants & ATMs/List/Model/AllMerchantLocationsDataProvider.swift
  • DashWallet/Sources/UI/Explore Dash/Merchants & ATMs/List/Model/PointOfUseListModel.swift
  • DashWallet/Sources/UI/Explore Dash/Merchants & ATMs/List/Views/ExploreMapView.swift
  • DashWallet/Sources/UI/Explore Dash/Merchants & ATMs/List/Views/ListHandlerView.swift
  • DashWallet/Sources/UI/Explore Dash/Merchants & ATMs/List/Views/PointOfUseListEmptyResultsView.swift
  • DashWallet/Sources/UI/Explore Dash/Merchants & ATMs/List/Views/PointOfUseLocationServicePopup.swift
  • DashWallet/Sources/UI/Home/HomeViewController+Shortcuts.swift
  • DashWallet/dashwallet-Bridging-Header.h
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch feat/all-locations-redesign

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

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.

2 participants