feat: Dispute Evidence Upload Frontend (Issue #124)#2
Open
FaithOnuh wants to merge 2 commits into
Open
Conversation
- Add migration: dispute_evidence table + evidence_download_tokens table - POST /disputes/:id/evidence — multipart upload with participant/arbitrator access control - GET /disputes/:id/evidence — list evidence (participants only) - GET /disputes/:id/evidence/:eid/download-url — issue 15-min signed token - GET /evidence/download/:token — redeem token and stream file - File validation (size/MIME) delegated to existing StorageService - DB helpers: check_dispute_participant, insert/list/get_dispute_evidence, create/consume_evidence_download_token Closes Stellar-xcrow#125
- Add evidenceService.js: uploadEvidence, listEvidence, getDownloadUrl, renderEvidenceList with signed URL support - Extend disputes.js: integrate EvidenceService for upload/display, uploadStagedEvidence after dispute raised, loadAndRenderEvidence in detail view, inline Add Evidence input in displayDisputeDetails Closes Stellar-xcrow#124
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 of Changes
frontend/evidenceService.jsmodule:uploadEvidence(disputeId, file, uploader)— POST to/disputes/:id/evidencelistEvidence(disputeId, requester)— fetch all evidence for a disputegetDownloadUrl(disputeId, evidenceId, requester)— fetch signed download tokenrenderEvidenceList(container, items, disputeId, requester)— renders evidence with on-demand Download buttonsfrontend/disputes.js:uploadStagedEvidencecalled after dispute is raisedloadAndRenderEvidencepopulates evidence list in detail viewdisplayDisputeDetailsCloses Stellar-xcrow#124