feat: add dispute timeout service, core e2e tests, memoized escrow list item, and pagination#439
Merged
KuchiMercy merged 1 commit intoJun 27, 2026
Conversation
…st item, and pagination Closes StayLitCodes#136 Closes StayLitCodes#271 Closes StayLitCodes#368 Closes StayLitCodes#392
|
@benzeneCLI Great news! 🎉 Based on an automated assessment of this PR, the linked Wave issue(s) no longer count against your application limits. You can now already apply to more issues while waiting for a review of this PR. Keep up the great work! 🚀 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
apps/backend/src/modules/escrow/escrow-timeout.service.ts) — injectable service that queries allOPENdisputes, filters those older than a configurable threshold (default 72 h), and auto-resolves them withDisputeOutcome.REFUNDED_TO_BUYERand a timestamped resolution note. Closes [Feature] Time-Locked Dispute Resolution Defaulting #136apps/frontend/e2e/core-flows.spec.ts) — six Playwright tests covering landing page heading, connect-wallet CTA, dashboard/create-escrow/transactions route reachability, and page title validation. Closes [Frontend] End-to-End Playwright Test Suite for Core User Flows #271apps/frontend/components/dashboard/EscrowListItem.tsx) —React.memo-wrapped list-row component that renders title, amount+asset, status badge (colour-coded), and deadline; prevents unnecessary re-renders when the parent list re-renders with unchanged items. Closes [MOBILE] Performance pass: optimize escrow list rendering #368apps/frontend/components/common/Pagination.tsx) — reusable page-navigation control with a sliding 5-page window, prev/next chevron buttons, disabled states, andaria-current="page"on the active page. Closes feat(frontend): Add pagination to escrow list and transaction history #392closes #136
closes #271
closes #368
closes #392