mirror of
https://github.com/pezkuwichain/pwap.git
synced 2026-04-22 09:07:55 +00:00
309c8ded1a
Changed all references to the project token from PZKW/PZK to HEZ: - DelegationManager.tsx: Updated token symbol in comments, delegate cards, and user delegations - DelegateProfile.tsx: Updated min/max delegation placeholders and display - ProposalWizard.tsx: Updated budget input placeholder and review display - TreasuryOverview.tsx: Updated treasury balance display - TransactionModal.tsx: Updated send transaction title, description, and amount label - WalletButton.tsx: Updated balance display in button and dropdown All components now consistently use HEZ as the token symbol.
197 lines
5.8 KiB
TypeScript
197 lines
5.8 KiB
TypeScript
import React, { useState } from 'react';
|
|
import { Send, Loader2, CheckCircle, XCircle } from 'lucide-react';
|
|
import {
|
|
Dialog,
|
|
DialogContent,
|
|
DialogDescription,
|
|
DialogHeader,
|
|
DialogTitle,
|
|
} from '@/components/ui/dialog';
|
|
import { Button } from '@/components/ui/button';
|
|
import { Input } from '@/components/ui/input';
|
|
import { Label } from '@/components/ui/label';
|
|
import { Textarea } from '@/components/ui/textarea';
|
|
import { useWallet } from '@/contexts/WalletContext';
|
|
import { Alert, AlertDescription } from '@/components/ui/alert';
|
|
|
|
interface TransactionModalProps {
|
|
isOpen: boolean;
|
|
onClose: () => void;
|
|
type: 'send' | 'vote' | 'delegate';
|
|
data?: any;
|
|
}
|
|
|
|
export const TransactionModal: React.FC<TransactionModalProps> = ({
|
|
isOpen,
|
|
onClose,
|
|
type,
|
|
data
|
|
}) => {
|
|
const { address, signTransaction, signMessage } = useWallet();
|
|
const [recipient, setRecipient] = useState('');
|
|
const [amount, setAmount] = useState('');
|
|
const [message, setMessage] = useState('');
|
|
const [loading, setLoading] = useState(false);
|
|
const [txHash, setTxHash] = useState<string | null>(null);
|
|
const [error, setError] = useState<string | null>(null);
|
|
|
|
const handleSendTransaction = async () => {
|
|
if (!recipient || !amount) {
|
|
setError('Please fill in all fields');
|
|
return;
|
|
}
|
|
|
|
setLoading(true);
|
|
setError(null);
|
|
|
|
try {
|
|
const tx = {
|
|
to: recipient,
|
|
value: '0x' + (parseFloat(amount) * 1e18).toString(16),
|
|
data: '0x',
|
|
};
|
|
|
|
const hash = await signTransaction(tx);
|
|
setTxHash(hash);
|
|
} catch (err: any) {
|
|
setError(err.message || 'Transaction failed');
|
|
} finally {
|
|
setLoading(false);
|
|
}
|
|
};
|
|
|
|
const handleSignMessage = async () => {
|
|
if (!message) {
|
|
setError('Please enter a message to sign');
|
|
return;
|
|
}
|
|
|
|
setLoading(true);
|
|
setError(null);
|
|
|
|
try {
|
|
const signature = await signMessage(message);
|
|
setTxHash(signature);
|
|
} catch (err: any) {
|
|
setError(err.message || 'Failed to sign message');
|
|
} finally {
|
|
setLoading(false);
|
|
}
|
|
};
|
|
|
|
const resetForm = () => {
|
|
setRecipient('');
|
|
setAmount('');
|
|
setMessage('');
|
|
setTxHash(null);
|
|
setError(null);
|
|
onClose();
|
|
};
|
|
|
|
return (
|
|
<Dialog open={isOpen} onOpenChange={resetForm}>
|
|
<DialogContent className="sm:max-w-md">
|
|
<DialogHeader>
|
|
<DialogTitle className="flex items-center gap-2">
|
|
<Send className="h-5 w-5 text-kesk" />
|
|
{type === 'send' ? 'Send HEZ' : type === 'vote' ? 'Cast Vote' : 'Delegate Voting Power'}
|
|
</DialogTitle>
|
|
<DialogDescription>
|
|
{type === 'send'
|
|
? 'Send HEZ tokens to another address'
|
|
: type === 'vote'
|
|
? 'Submit your vote for the proposal'
|
|
: 'Delegate your voting power to another address'}
|
|
</DialogDescription>
|
|
</DialogHeader>
|
|
|
|
{!txHash ? (
|
|
<div className="space-y-4">
|
|
{type === 'send' && (
|
|
<>
|
|
<div>
|
|
<Label htmlFor="recipient">Recipient Address</Label>
|
|
<Input
|
|
id="recipient"
|
|
placeholder="0x..."
|
|
value={recipient}
|
|
onChange={(e) => setRecipient(e.target.value)}
|
|
className="font-mono"
|
|
/>
|
|
</div>
|
|
<div>
|
|
<Label htmlFor="amount">Amount (HEZ)</Label>
|
|
<Input
|
|
id="amount"
|
|
type="number"
|
|
placeholder="0.0"
|
|
value={amount}
|
|
onChange={(e) => setAmount(e.target.value)}
|
|
/>
|
|
</div>
|
|
</>
|
|
)}
|
|
|
|
{type === 'vote' && (
|
|
<div>
|
|
<Label htmlFor="message">Vote Message</Label>
|
|
<Textarea
|
|
id="message"
|
|
placeholder="Enter your vote reason (optional)"
|
|
value={message}
|
|
onChange={(e) => setMessage(e.target.value)}
|
|
/>
|
|
</div>
|
|
)}
|
|
|
|
{error && (
|
|
<Alert variant="destructive">
|
|
<XCircle className="h-4 w-4" />
|
|
<AlertDescription>{error}</AlertDescription>
|
|
</Alert>
|
|
)}
|
|
|
|
<div className="flex gap-2">
|
|
<Button
|
|
onClick={type === 'send' ? handleSendTransaction : handleSignMessage}
|
|
disabled={loading}
|
|
className="flex-1 bg-kesk hover:bg-kesk/90"
|
|
>
|
|
{loading ? (
|
|
<>
|
|
<Loader2 className="mr-2 h-4 w-4 animate-spin" />
|
|
Processing...
|
|
</>
|
|
) : (
|
|
<>
|
|
<Send className="mr-2 h-4 w-4" />
|
|
{type === 'send' ? 'Send Transaction' : 'Sign & Submit'}
|
|
</>
|
|
)}
|
|
</Button>
|
|
<Button variant="outline" onClick={resetForm} disabled={loading}>
|
|
Cancel
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
) : (
|
|
<div className="space-y-4">
|
|
<Alert className="border-kesk/20">
|
|
<CheckCircle className="h-4 w-4 text-kesk" />
|
|
<AlertDescription>
|
|
Transaction submitted successfully!
|
|
</AlertDescription>
|
|
</Alert>
|
|
<div className="p-3 bg-muted rounded-lg">
|
|
<div className="text-sm text-muted-foreground">Transaction Hash</div>
|
|
<div className="font-mono text-xs break-all">{txHash}</div>
|
|
</div>
|
|
<Button onClick={resetForm} className="w-full">
|
|
Close
|
|
</Button>
|
|
</div>
|
|
)}
|
|
</DialogContent>
|
|
</Dialog>
|
|
);
|
|
}; |