Files
pwap/web/src/pages/P2PTrade.tsx
T
pezkuwichain 508f0763f4 fix: payment proof lifecycle, repeating toast, and escrow migrations
- Replace IPFS/Pinata upload with Supabase Storage for payment proofs
- Add 1-day auto-expiry for proof images (retained if disputed)
- Fix repeating "payment deadline expired" toast (fire once, clear interval)
- Fix cancel_reason → cancellation_reason column reference
- Add payment proof lifecycle migration (proof_expires_at, cleanup functions)
- Add atomic escrow migration (accept_p2p_offer, complete/cancel trade)
- Add cleanup-proofs edge function for daily expired proof deletion
2026-02-24 06:15:22 +03:00

864 lines
30 KiB
TypeScript

import React, { useState, useEffect, useCallback } from 'react';
import { useParams, useNavigate } from 'react-router-dom';
import { useTranslation } from 'react-i18next';
import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card';
import { Button } from '@/components/ui/button';
import { Badge } from '@/components/ui/badge';
import { Avatar, AvatarFallback } from '@/components/ui/avatar';
import { Alert, AlertDescription } from '@/components/ui/alert';
import { Input } from '@/components/ui/input';
import { Label } from '@/components/ui/label';
import {
Dialog,
DialogContent,
DialogHeader,
DialogTitle,
DialogDescription,
DialogFooter,
} from '@/components/ui/dialog';
import {
ArrowLeft,
Clock,
CheckCircle2,
XCircle,
AlertTriangle,
Loader2,
Copy,
Upload,
Shield,
Zap,
MessageSquare,
Ban,
ExternalLink,
RefreshCw,
Star,
} from 'lucide-react';
import { useP2PIdentity } from '@/contexts/P2PIdentityContext';
import { toast } from 'sonner';
import { supabase } from '@/lib/supabase';
import {
markPaymentSent,
confirmPaymentReceived,
cancelTrade,
getUserReputation,
type P2PFiatTrade,
type P2PFiatOffer,
type P2PReputation,
} from '@shared/lib/p2p-fiat';
import { TradeChat } from '@/components/p2p/TradeChat';
import { RatingModal } from '@/components/p2p/RatingModal';
import { DisputeModal } from '@/components/p2p/DisputeModal';
// Trade status type
type TradeStatus = 'pending' | 'payment_sent' | 'completed' | 'cancelled' | 'disputed' | 'refunded';
// Extended trade with offer details
interface TradeWithDetails extends P2PFiatTrade {
offer?: P2PFiatOffer;
seller_reputation?: P2PReputation;
buyer_reputation?: P2PReputation;
payment_method_name?: string;
payment_details?: Record<string, string>;
}
// Timeline step interface
interface TimelineStep {
id: string;
label: string;
description: string;
status: 'completed' | 'current' | 'pending';
timestamp?: string;
}
export default function P2PTrade() {
const { tradeId } = useParams<{ tradeId: string }>();
const navigate = useNavigate();
const { t } = useTranslation();
const { userId } = useP2PIdentity();
const [trade, setTrade] = useState<TradeWithDetails | null>(null);
const [loading, setLoading] = useState(true);
const [actionLoading, setActionLoading] = useState(false);
const [timeRemaining, setTimeRemaining] = useState<number>(0);
const [showCancelModal, setShowCancelModal] = useState(false);
const [showProofModal, setShowProofModal] = useState(false);
const [showRatingModal, setShowRatingModal] = useState(false);
const [showDisputeModal, setShowDisputeModal] = useState(false);
const [showChat, setShowChat] = useState(false);
const [paymentProof, setPaymentProof] = useState<File | null>(null);
const [paymentReference, setPaymentReference] = useState('');
const [cancelReason, setCancelReason] = useState('');
// Determine user role
const isSeller = trade?.seller_id === userId;
const isBuyer = trade?.buyer_id === userId;
const isParticipant = isSeller || isBuyer;
// Fetch trade details
const fetchTrade = useCallback(async () => {
if (!tradeId) return;
try {
// Fetch trade
const { data: tradeData, error: tradeError } = await supabase
.from('p2p_fiat_trades')
.select('*')
.eq('id', tradeId)
.single();
if (tradeError) throw tradeError;
if (!tradeData) throw new Error('Trade not found');
// Fetch offer details
const { data: offerData } = await supabase
.from('p2p_fiat_offers')
.select('*')
.eq('id', tradeData.offer_id)
.single();
// Fetch payment method
let paymentMethodName = 'Unknown';
let paymentDetails: Record<string, string> = {};
if (offerData?.payment_method_id) {
const { data: methodData } = await supabase
.from('payment_methods')
.select('method_name')
.eq('id', offerData.payment_method_id)
.single();
paymentMethodName = methodData?.method_name || 'Unknown';
// Decrypt payment details for buyer (only after trade starts)
if (offerData.payment_details_encrypted && tradeData.status !== 'cancelled') {
try {
paymentDetails = JSON.parse(atob(offerData.payment_details_encrypted));
} catch {
paymentDetails = {};
}
}
}
// Fetch reputations
const [sellerRep, buyerRep] = await Promise.all([
getUserReputation(tradeData.seller_id),
getUserReputation(tradeData.buyer_id),
]);
setTrade({
...tradeData,
offer: offerData || undefined,
seller_reputation: sellerRep || undefined,
buyer_reputation: buyerRep || undefined,
payment_method_name: paymentMethodName,
payment_details: paymentDetails,
});
} catch (error) {
console.error('Fetch trade error:', error);
toast.error(t('p2pTrade.failedToLoad'));
} finally {
setLoading(false);
}
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [tradeId]);
// Initial fetch
useEffect(() => {
fetchTrade();
}, [fetchTrade]);
// Real-time subscription
useEffect(() => {
if (!tradeId) return;
const channel = supabase
.channel(`trade-${tradeId}`)
.on(
'postgres_changes',
{
event: 'UPDATE',
schema: 'public',
table: 'p2p_fiat_trades',
filter: `id=eq.${tradeId}`,
},
() => {
fetchTrade();
}
)
.subscribe();
return () => {
supabase.removeChannel(channel);
};
}, [tradeId, fetchTrade]);
// Countdown timer
useEffect(() => {
if (!trade?.payment_deadline || trade.status !== 'pending') {
setTimeRemaining(0);
return;
}
const deadline = new Date(trade.payment_deadline).getTime();
let expired = false;
const updateTimer = () => {
const now = Date.now();
const remaining = Math.max(0, Math.floor((deadline - now) / 1000));
setTimeRemaining(remaining);
if (remaining === 0 && !expired) {
expired = true;
toast.warning(t('p2pTrade.paymentDeadlineExpired'));
clearInterval(interval);
}
};
updateTimer();
const interval = setInterval(updateTimer, 1000);
return () => clearInterval(interval);
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [trade?.payment_deadline, trade?.status]);
// Format time remaining
const formatTimeRemaining = (seconds: number): string => {
if (seconds <= 0) return t('p2pTrade.expired');
const mins = Math.floor(seconds / 60);
const secs = seconds % 60;
return `${mins}:${secs.toString().padStart(2, '0')}`;
};
// Get timeline steps
const getTimelineSteps = (): TimelineStep[] => {
const status = trade?.status as TradeStatus;
const steps: TimelineStep[] = [
{
id: 'created',
label: t('p2pTrade.orderCreated'),
description: t('p2pTrade.tradeInitiatedStep'),
status: 'completed',
timestamp: trade?.created_at,
},
{
id: 'pending',
label: t('p2pTrade.awaitingPayment'),
description: isBuyer ? t('p2pTrade.sendPaymentToSeller') : t('p2pTrade.waitingForBuyerPayment'),
status: status === 'pending' ? 'current' :
['payment_sent', 'completed'].includes(status) ? 'completed' : 'pending',
},
{
id: 'payment_sent',
label: t('p2pTrade.paymentSent'),
description: isSeller ? t('p2pTrade.verifyAndRelease') : t('p2pTrade.waitingForConfirmation'),
status: status === 'payment_sent' ? 'current' :
status === 'completed' ? 'completed' : 'pending',
timestamp: trade?.buyer_marked_paid_at,
},
{
id: 'completed',
label: t('p2pTrade.completedStep'),
description: t('p2pTrade.cryptoReleased'),
status: status === 'completed' ? 'completed' : 'pending',
timestamp: trade?.completed_at,
},
];
return steps;
};
// Handle mark as paid
const handleMarkAsPaid = async () => {
if (!trade || !userId) return;
setActionLoading(true);
try {
await markPaymentSent(trade.id, paymentProof || undefined);
// Update payment reference if provided
if (paymentReference) {
await supabase
.from('p2p_fiat_trades')
.update({ buyer_payment_reference: paymentReference })
.eq('id', trade.id);
}
setShowProofModal(false);
setPaymentProof(null);
setPaymentReference('');
toast.success(t('p2pTrade.paymentMarkedSent'));
fetchTrade();
} catch (error) {
console.error('Mark as paid error:', error);
} finally {
setActionLoading(false);
}
};
// Handle release crypto
const handleReleaseCrypto = async () => {
if (!trade || !userId) {
toast.error(t('p2p.connectWalletAndLogin'));
return;
}
setActionLoading(true);
try {
await confirmPaymentReceived(trade.id, userId);
toast.success(t('p2pTrade.cryptoReleasedToast'));
fetchTrade();
} catch (error) {
console.error('Release crypto error:', error);
} finally {
setActionLoading(false);
}
};
// Handle cancel trade
const handleCancelTrade = async () => {
if (!trade || !userId) return;
setActionLoading(true);
try {
await cancelTrade(trade.id, userId, cancelReason || undefined);
setShowCancelModal(false);
toast.success(t('p2pTrade.tradeCancelledToast'));
fetchTrade();
} catch (error) {
console.error('Cancel trade error:', error);
toast.error(t('p2pTrade.failedToCancel'));
} finally {
setActionLoading(false);
}
};
// Copy to clipboard
const copyToClipboard = (text: string, label: string) => {
navigator.clipboard.writeText(text);
toast.success(t('p2pTrade.addressCopied', { label }));
};
// Render loading state
if (loading) {
return (
<div className="container mx-auto px-4 py-8 max-w-4xl">
<div className="flex items-center justify-center py-20">
<Loader2 className="w-8 h-8 animate-spin text-green-500" />
</div>
</div>
);
}
// Render not found
if (!trade) {
return (
<div className="container mx-auto px-4 py-8 max-w-4xl">
<Card className="bg-gray-900 border-gray-800">
<CardContent className="py-12 text-center">
<XCircle className="w-16 h-16 text-red-500 mx-auto mb-4" />
<h2 className="text-xl font-semibold text-white mb-2">{t('p2pTrade.tradeNotFound')}</h2>
<p className="text-gray-400 mb-6">{t('p2pTrade.tradeNotFoundDesc')}</p>
<Button onClick={() => navigate('/p2p')}>{t('p2pTrade.backToP2P')}</Button>
</CardContent>
</Card>
</div>
);
}
// Get status color
const getStatusColor = (status: TradeStatus) => {
switch (status) {
case 'pending': return 'bg-yellow-500/20 text-yellow-400 border-yellow-500/30';
case 'payment_sent': return 'bg-blue-500/20 text-blue-400 border-blue-500/30';
case 'completed': return 'bg-green-500/20 text-green-400 border-green-500/30';
case 'cancelled': return 'bg-gray-500/20 text-gray-400 border-gray-500/30';
case 'disputed': return 'bg-red-500/20 text-red-400 border-red-500/30';
case 'refunded': return 'bg-purple-500/20 text-purple-400 border-purple-500/30';
default: return 'bg-gray-500/20 text-gray-400 border-gray-500/30';
}
};
const counterparty = isSeller ?
{ id: trade.buyer_id, wallet: trade.buyer_wallet, reputation: trade.buyer_reputation, label: t('p2p.buyer') } :
{ id: trade.seller_id, wallet: trade.offer?.seller_wallet || '', reputation: trade.seller_reputation, label: t('p2p.seller') };
return (
<div className="container mx-auto px-4 py-8 max-w-4xl">
{/* Header */}
<div className="flex items-center gap-4 mb-6">
<Button
variant="ghost"
size="sm"
onClick={() => navigate('/p2p/orders')}
className="text-gray-400 hover:text-white"
>
<ArrowLeft className="w-4 h-4 mr-2" />
{t('p2p.myTrades')}
</Button>
<div className="flex-1" />
<Button
variant="ghost"
size="sm"
onClick={fetchTrade}
className="text-gray-400 hover:text-white"
>
<RefreshCw className="w-4 h-4" />
</Button>
</div>
{/* Trade Header Card */}
<Card className="bg-gray-900 border-gray-800 mb-6">
<CardHeader className="pb-4">
<div className="flex items-center justify-between">
<div className="flex items-center gap-4">
<CardTitle className="text-white">
{isBuyer ? t('p2p.buy') : t('p2p.sell')} {trade.offer?.token || 'HEZ'}
</CardTitle>
<Badge className={getStatusColor(trade.status as TradeStatus)}>
{trade.status.replace('_', ' ').toUpperCase()}
</Badge>
</div>
{trade.status === 'pending' && timeRemaining > 0 && (
<div className="flex items-center gap-2 text-yellow-400">
<Clock className="w-5 h-5" />
<span className="text-xl font-mono font-bold">
{formatTimeRemaining(timeRemaining)}
</span>
</div>
)}
</div>
</CardHeader>
<CardContent>
<div className="grid grid-cols-2 md:grid-cols-4 gap-4">
<div>
<p className="text-sm text-gray-400">{t('p2p.amount')}</p>
<p className="text-lg font-semibold text-white">
{trade.crypto_amount} {trade.offer?.token || 'HEZ'}
</p>
</div>
<div>
<p className="text-sm text-gray-400">{t('p2p.price')}</p>
<p className="text-lg font-semibold text-green-400">
{trade.fiat_amount.toFixed(2)} {trade.offer?.fiat_currency || 'TRY'}
</p>
</div>
<div>
<p className="text-sm text-gray-400">{t('p2pTrade.unitPrice')}</p>
<p className="text-lg font-semibold text-white">
{trade.price_per_unit.toFixed(2)} {trade.offer?.fiat_currency || 'TRY'}
</p>
</div>
<div>
<p className="text-sm text-gray-400">{t('p2pTrade.paymentMethod')}</p>
<p className="text-lg font-semibold text-white">
{trade.payment_method_name}
</p>
</div>
</div>
</CardContent>
</Card>
{/* Timeline */}
<Card className="bg-gray-900 border-gray-800 mb-6">
<CardHeader>
<CardTitle className="text-white text-lg">{t('p2pTrade.tradeProgress')}</CardTitle>
</CardHeader>
<CardContent>
<div className="relative">
{/* Timeline line */}
<div className="absolute left-4 top-0 bottom-0 w-0.5 bg-gray-700" />
{/* Steps */}
<div className="space-y-6">
{getTimelineSteps().map((step, index) => (
<div key={step.id} className="relative flex items-start gap-4">
{/* Icon */}
<div className={`
relative z-10 w-8 h-8 rounded-full flex items-center justify-center
${step.status === 'completed' ? 'bg-green-500' :
step.status === 'current' ? 'bg-yellow-500' : 'bg-gray-700'}
`}>
{step.status === 'completed' ? (
<CheckCircle2 className="w-5 h-5 text-white" />
) : step.status === 'current' ? (
<Clock className="w-5 h-5 text-white" />
) : (
<span className="text-gray-400 text-sm">{index + 1}</span>
)}
</div>
{/* Content */}
<div className="flex-1 pb-2">
<p className={`font-medium ${
step.status === 'completed' ? 'text-green-400' :
step.status === 'current' ? 'text-yellow-400' : 'text-gray-500'
}`}>
{step.label}
</p>
<p className="text-sm text-gray-400">{step.description}</p>
{step.timestamp && (
<p className="text-xs text-gray-500 mt-1">
{new Date(step.timestamp).toLocaleString()}
</p>
)}
</div>
</div>
))}
</div>
</div>
</CardContent>
</Card>
{/* Counterparty Info */}
<Card className="bg-gray-900 border-gray-800 mb-6">
<CardHeader>
<CardTitle className="text-white text-lg">{t('p2pTrade.counterpartyInfo', { role: counterparty.label })}</CardTitle>
</CardHeader>
<CardContent>
<div className="flex items-center gap-4">
<Avatar className="h-14 w-14">
<AvatarFallback className="bg-green-500/20 text-green-400 text-lg">
{counterparty.wallet.slice(0, 2).toUpperCase()}
</AvatarFallback>
</Avatar>
<div className="flex-1">
<div className="flex items-center gap-2">
<p className="font-semibold text-white">
{counterparty.wallet.slice(0, 8)}...{counterparty.wallet.slice(-6)}
</p>
<Button
variant="ghost"
size="sm"
className="h-6 w-6 p-0"
onClick={() => copyToClipboard(counterparty.wallet, 'Address')}
>
<Copy className="w-3 h-3" />
</Button>
{counterparty.reputation?.verified_merchant && (
<Shield className="w-4 h-4 text-blue-400" title={t('p2p.verifiedMerchant')} />
)}
{counterparty.reputation?.fast_trader && (
<Zap className="w-4 h-4 text-yellow-400" title={t('p2p.fastTrader')} />
)}
</div>
{counterparty.reputation && (
<p className="text-sm text-gray-400">
{t('p2p.trades', { count: counterparty.reputation.completed_trades })}
{' '}{t('p2p.completion', { percent: ((counterparty.reputation.completed_trades / (counterparty.reputation.total_trades || 1)) * 100).toFixed(0) })}
</p>
)}
</div>
</div>
</CardContent>
</Card>
{/* Payment Details (Buyer only, when trade is active) */}
{isBuyer && trade.status === 'pending' && trade.payment_details && Object.keys(trade.payment_details).length > 0 && (
<Card className="bg-gray-900 border-gray-800 mb-6">
<CardHeader>
<CardTitle className="text-white text-lg">{t('p2pTrade.paymentDetailsTitle')}</CardTitle>
</CardHeader>
<CardContent>
<Alert className="bg-yellow-500/10 border-yellow-500/30 mb-4">
<AlertTriangle className="h-4 w-4 text-yellow-400" />
<AlertDescription className="text-yellow-200">
{t('p2pTrade.sendExactly', { amount: trade.fiat_amount.toFixed(2), currency: trade.offer?.fiat_currency })}
</AlertDescription>
</Alert>
<div className="space-y-3">
{Object.entries(trade.payment_details).map(([key, value]) => (
<div key={key} className="flex items-center justify-between p-3 bg-gray-800 rounded-lg">
<div>
<p className="text-sm text-gray-400">
{key.replace(/_/g, ' ').replace(/\b\w/g, l => l.toUpperCase())}
</p>
<p className="text-white font-medium">{value}</p>
</div>
<Button
variant="ghost"
size="sm"
onClick={() => copyToClipboard(value, key)}
>
<Copy className="w-4 h-4" />
</Button>
</div>
))}
</div>
</CardContent>
</Card>
)}
{/* Payment Proof (if uploaded) */}
{trade.buyer_payment_proof_url && (
<Card className="bg-gray-900 border-gray-800 mb-6">
<CardHeader>
<CardTitle className="text-white text-lg">{t('p2pTrade.paymentProof')}</CardTitle>
</CardHeader>
<CardContent>
<a
href={trade.buyer_payment_proof_url}
target="_blank"
rel="noopener noreferrer"
className="flex items-center gap-2 text-blue-400 hover:text-blue-300"
>
<ExternalLink className="w-4 h-4" />
{t('p2pTrade.viewPaymentProof')}
</a>
</CardContent>
</Card>
)}
{/* Action Buttons */}
{isParticipant && !['completed', 'cancelled', 'refunded'].includes(trade.status) && (
<Card className="bg-gray-900 border-gray-800 mb-6">
<CardContent className="pt-6">
<div className="flex flex-col sm:flex-row gap-4">
{/* Buyer Actions */}
{isBuyer && trade.status === 'pending' && (
<>
<Button
className="flex-1 bg-green-600 hover:bg-green-700"
onClick={() => setShowProofModal(true)}
disabled={actionLoading}
>
<CheckCircle2 className="w-4 h-4 mr-2" />
{t('p2pTrade.iHavePaid')}
</Button>
<Button
variant="outline"
className="flex-1 border-gray-700"
onClick={() => setShowCancelModal(true)}
disabled={actionLoading}
>
<Ban className="w-4 h-4 mr-2" />
{t('p2pTrade.cancelTrade')}
</Button>
</>
)}
{/* Seller Actions */}
{isSeller && trade.status === 'payment_sent' && (
<>
<Button
className="flex-1 bg-green-600 hover:bg-green-700"
onClick={handleReleaseCrypto}
disabled={actionLoading}
>
{actionLoading ? (
<Loader2 className="w-4 h-4 mr-2 animate-spin" />
) : (
<CheckCircle2 className="w-4 h-4 mr-2" />
)}
{t('p2pTrade.releaseCrypto')}
</Button>
<Button
variant="outline"
className="flex-1 border-red-500/50 text-red-400 hover:bg-red-500/10"
onClick={() => setShowDisputeModal(true)}
disabled={actionLoading}
>
<AlertTriangle className="w-4 h-4 mr-2" />
{t('p2pTrade.openDispute')}
</Button>
</>
)}
{/* Chat Button */}
<Button
variant="outline"
className="border-gray-700"
onClick={() => setShowChat(!showChat)}
>
<MessageSquare className="w-4 h-4 mr-2" />
{showChat ? t('p2pTrade.hideChat') : t('p2pTrade.chat')}
</Button>
</div>
</CardContent>
</Card>
)}
{/* Chat Section */}
{showChat && isParticipant && (
<div className="mb-6">
<TradeChat
tradeId={tradeId!}
counterpartyId={counterparty.id}
counterpartyWallet={counterparty.wallet}
isTradeActive={!['completed', 'cancelled', 'refunded'].includes(trade.status)}
/>
</div>
)}
{/* Completed Message */}
{trade.status === 'completed' && (
<Card className="bg-green-500/10 border-green-500/30 mb-6">
<CardContent className="py-6 text-center">
<CheckCircle2 className="w-16 h-16 text-green-500 mx-auto mb-4" />
<h3 className="text-xl font-semibold text-green-400 mb-2">{t('p2pTrade.tradeCompleted')}</h3>
<p className="text-gray-400 mb-4">
{isBuyer
? t('p2pTrade.youReceived', { amount: trade.crypto_amount, token: trade.offer?.token })
: t('p2pTrade.youReceivedFiat', { amount: trade.fiat_amount.toFixed(2), currency: trade.offer?.fiat_currency })
}
</p>
<Button
onClick={() => setShowRatingModal(true)}
className="bg-yellow-500 hover:bg-yellow-600 text-black"
>
<Star className="w-4 h-4 mr-2" />
{t('p2pTrade.rateTrade')}
</Button>
</CardContent>
</Card>
)}
{/* Cancelled Message */}
{trade.status === 'cancelled' && (
<Card className="bg-gray-500/10 border-gray-500/30 mb-6">
<CardContent className="py-6 text-center">
<XCircle className="w-16 h-16 text-gray-500 mx-auto mb-4" />
<h3 className="text-xl font-semibold text-gray-400 mb-2">{t('p2pTrade.tradeCancelled')}</h3>
{trade.cancellation_reason && (
<p className="text-gray-500">{t('p2pTrade.cancelReason', { reason: trade.cancellation_reason })}</p>
)}
</CardContent>
</Card>
)}
{/* Mark as Paid Modal */}
<Dialog open={showProofModal} onOpenChange={setShowProofModal}>
<DialogContent className="bg-gray-900 border-gray-800">
<DialogHeader>
<DialogTitle className="text-white">{t('p2pTrade.confirmPayment')}</DialogTitle>
<DialogDescription className="text-gray-400">
{t('p2pTrade.confirmPaymentDesc')}
</DialogDescription>
</DialogHeader>
<div className="space-y-4 py-4">
<div>
<Label htmlFor="reference">{t('p2pTrade.paymentReference')}</Label>
<Input
id="reference"
value={paymentReference}
onChange={(e) => setPaymentReference(e.target.value)}
placeholder={t('p2pTrade.paymentReferencePlaceholder')}
className="bg-gray-800 border-gray-700"
/>
</div>
<div>
<Label>{t('p2pTrade.paymentProofOptional')}</Label>
<div className="mt-2">
<label className="flex flex-col items-center justify-center w-full h-32 border-2 border-gray-700 border-dashed rounded-lg cursor-pointer hover:bg-gray-800">
<div className="flex flex-col items-center justify-center pt-5 pb-6">
<Upload className="w-8 h-8 text-gray-400 mb-2" />
<p className="text-sm text-gray-400">
{paymentProof ? paymentProof.name : t('p2pTrade.clickToUpload')}
</p>
</div>
<input
type="file"
className="hidden"
accept="image/*"
onChange={(e) => setPaymentProof(e.target.files?.[0] || null)}
/>
</label>
</div>
</div>
<Alert className="bg-yellow-500/10 border-yellow-500/30">
<AlertTriangle className="h-4 w-4 text-yellow-400" />
<AlertDescription className="text-yellow-200">
{t('p2pTrade.falsePaymentWarning')}
</AlertDescription>
</Alert>
</div>
<DialogFooter>
<Button
variant="outline"
onClick={() => setShowProofModal(false)}
disabled={actionLoading}
className="border-gray-700"
>
{t('p2p.cancel')}
</Button>
<Button
onClick={handleMarkAsPaid}
disabled={actionLoading}
className="bg-green-600 hover:bg-green-700"
>
{actionLoading ? (
<Loader2 className="w-4 h-4 mr-2 animate-spin" />
) : (
<CheckCircle2 className="w-4 h-4 mr-2" />
)}
{t('p2pTrade.confirmPaymentSent')}
</Button>
</DialogFooter>
</DialogContent>
</Dialog>
{/* Cancel Trade Modal */}
<Dialog open={showCancelModal} onOpenChange={setShowCancelModal}>
<DialogContent className="bg-gray-900 border-gray-800">
<DialogHeader>
<DialogTitle className="text-white">{t('p2pTrade.cancelTradeTitle')}</DialogTitle>
<DialogDescription className="text-gray-400">
{t('p2pTrade.cancelTradeDesc')}
</DialogDescription>
</DialogHeader>
<div className="py-4">
<Label htmlFor="cancelReason">{t('p2pTrade.cancelReasonLabel')}</Label>
<Input
id="cancelReason"
value={cancelReason}
onChange={(e) => setCancelReason(e.target.value)}
placeholder={t('p2pTrade.cancelReasonPlaceholder')}
className="bg-gray-800 border-gray-700 mt-2"
/>
</div>
<DialogFooter>
<Button
variant="outline"
onClick={() => setShowCancelModal(false)}
disabled={actionLoading}
className="border-gray-700"
>
{t('p2pTrade.keepTrade')}
</Button>
<Button
variant="destructive"
onClick={handleCancelTrade}
disabled={actionLoading}
>
{actionLoading ? (
<Loader2 className="w-4 h-4 mr-2 animate-spin" />
) : (
<XCircle className="w-4 h-4 mr-2" />
)}
{t('p2pTrade.cancelTrade')}
</Button>
</DialogFooter>
</DialogContent>
</Dialog>
{/* Rating Modal */}
<RatingModal
isOpen={showRatingModal}
onClose={() => setShowRatingModal(false)}
tradeId={tradeId!}
counterpartyId={counterparty.id}
counterpartyWallet={counterparty.wallet}
isBuyer={isBuyer}
/>
{/* Dispute Modal */}
<DisputeModal
isOpen={showDisputeModal}
onClose={() => setShowDisputeModal(false)}
tradeId={tradeId!}
counterpartyId={counterparty.id}
counterpartyWallet={counterparty.wallet}
isBuyer={isBuyer}
/>
</div>
);
}