223 lines
8.1 KiB
TypeScript
223 lines
8.1 KiB
TypeScript
'use client';
|
|
|
|
import { useState } from 'react';
|
|
import { motion, AnimatePresence } from 'framer-motion';
|
|
import { FaTimes, FaCreditCard, FaLock } from 'react-icons/fa';
|
|
import { Album } from '@/lib/types';
|
|
|
|
interface PaymentModalProps {
|
|
album: Album | null;
|
|
onClose: () => void;
|
|
onSuccess: (albumId: string, transactionId: string) => void;
|
|
}
|
|
|
|
export default function PaymentModal({ album, onClose, onSuccess }: PaymentModalProps) {
|
|
const [cardNumber, setCardNumber] = useState('');
|
|
const [cardName, setCardName] = useState('');
|
|
const [expiry, setExpiry] = useState('');
|
|
const [cvv, setCvv] = useState('');
|
|
const [processing, setProcessing] = useState(false);
|
|
const [error, setError] = useState('');
|
|
|
|
const formatCardNumber = (value: string) => {
|
|
const numbers = value.replace(/\s/g, '');
|
|
const groups = numbers.match(/.{1,4}/g);
|
|
return groups ? groups.join(' ') : numbers;
|
|
};
|
|
|
|
const formatExpiry = (value: string) => {
|
|
const numbers = value.replace(/\D/g, '');
|
|
if (numbers.length >= 2) {
|
|
return numbers.slice(0, 2) + '/' + numbers.slice(2, 4);
|
|
}
|
|
return numbers;
|
|
};
|
|
|
|
const handleSubmit = async (e: React.FormEvent) => {
|
|
e.preventDefault();
|
|
setError('');
|
|
|
|
// Basic validation
|
|
if (cardNumber.replace(/\s/g, '').length !== 16) {
|
|
setError('Invalid card number');
|
|
return;
|
|
}
|
|
|
|
if (!cardName.trim()) {
|
|
setError('Card name is required');
|
|
return;
|
|
}
|
|
|
|
if (expiry.length !== 5) {
|
|
setError('Invalid expiry date');
|
|
return;
|
|
}
|
|
|
|
if (cvv.length !== 3 && cvv.length !== 4) {
|
|
setError('Invalid CVV');
|
|
return;
|
|
}
|
|
|
|
setProcessing(true);
|
|
|
|
// Simulate payment processing
|
|
setTimeout(() => {
|
|
// Generate a mock transaction ID
|
|
const transactionId = 'TXN-' + Date.now() + '-' + Math.random().toString(36).substr(2, 9).toUpperCase();
|
|
|
|
setProcessing(false);
|
|
if (album) {
|
|
onSuccess(album.id, transactionId);
|
|
}
|
|
}, 2000);
|
|
};
|
|
|
|
if (!album) return null;
|
|
|
|
return (
|
|
<AnimatePresence>
|
|
{album && (
|
|
<motion.div
|
|
initial={{ opacity: 0 }}
|
|
animate={{ opacity: 1 }}
|
|
exit={{ opacity: 0 }}
|
|
className="fixed inset-0 bg-black/80 backdrop-blur-sm z-50 flex items-center justify-center p-4"
|
|
onClick={onClose}
|
|
>
|
|
<motion.div
|
|
initial={{ scale: 0.9, opacity: 0 }}
|
|
animate={{ scale: 1, opacity: 1 }}
|
|
exit={{ scale: 0.9, opacity: 0 }}
|
|
onClick={(e) => e.stopPropagation()}
|
|
className="glass-effect rounded-2xl max-w-md w-full p-8 border-2 border-accent-cyan/30"
|
|
>
|
|
{/* Header */}
|
|
<div className="flex items-center justify-between mb-6">
|
|
<h2 className="text-2xl font-bold text-transparent bg-clip-text bg-gradient-to-r from-accent-cyan to-accent-orange">
|
|
Purchase Album
|
|
</h2>
|
|
<button
|
|
onClick={onClose}
|
|
className="p-2 hover:bg-white/10 rounded-full transition-colors"
|
|
aria-label="Close"
|
|
>
|
|
<FaTimes className="text-xl text-gray-400" />
|
|
</button>
|
|
</div>
|
|
|
|
{/* Album Info */}
|
|
<div className="mb-6 p-4 bg-white/5 rounded-lg">
|
|
<h3 className="font-semibold text-white">{album.title}</h3>
|
|
<p className="text-sm text-gray-400">{album.songs.length} tracks • {album.genre}</p>
|
|
<p className="text-2xl font-bold text-accent-orange mt-2">${album.price}</p>
|
|
</div>
|
|
|
|
{/* Payment Form */}
|
|
<form onSubmit={handleSubmit} className="space-y-4">
|
|
{/* Card Number */}
|
|
<div>
|
|
<label className="block text-sm font-medium text-gray-300 mb-2">
|
|
<FaCreditCard className="inline mr-2" />
|
|
Card Number
|
|
</label>
|
|
<input
|
|
type="text"
|
|
value={cardNumber}
|
|
onChange={(e) => {
|
|
const formatted = formatCardNumber(e.target.value.replace(/\D/g, '').slice(0, 16));
|
|
setCardNumber(formatted);
|
|
}}
|
|
placeholder="1234 5678 9012 3456"
|
|
className="w-full px-4 py-3 bg-white/5 border border-white/10 rounded-lg focus:border-accent-cyan focus:outline-none focus:ring-2 focus:ring-accent-cyan/50 text-white placeholder-gray-500"
|
|
required
|
|
/>
|
|
</div>
|
|
|
|
{/* Card Name */}
|
|
<div>
|
|
<label className="block text-sm font-medium text-gray-300 mb-2">
|
|
Name on Card
|
|
</label>
|
|
<input
|
|
type="text"
|
|
value={cardName}
|
|
onChange={(e) => setCardName(e.target.value.toUpperCase())}
|
|
placeholder="JOHN DOE"
|
|
className="w-full px-4 py-3 bg-white/5 border border-white/10 rounded-lg focus:border-accent-cyan focus:outline-none focus:ring-2 focus:ring-accent-cyan/50 text-white placeholder-gray-500"
|
|
required
|
|
/>
|
|
</div>
|
|
|
|
{/* Expiry and CVV */}
|
|
<div className="grid grid-cols-2 gap-4">
|
|
<div>
|
|
<label className="block text-sm font-medium text-gray-300 mb-2">
|
|
Expiry Date
|
|
</label>
|
|
<input
|
|
type="text"
|
|
value={expiry}
|
|
onChange={(e) => setExpiry(formatExpiry(e.target.value))}
|
|
placeholder="MM/YY"
|
|
className="w-full px-4 py-3 bg-white/5 border border-white/10 rounded-lg focus:border-accent-cyan focus:outline-none focus:ring-2 focus:ring-accent-cyan/50 text-white placeholder-gray-500"
|
|
required
|
|
/>
|
|
</div>
|
|
<div>
|
|
<label className="block text-sm font-medium text-gray-300 mb-2">
|
|
CVV
|
|
</label>
|
|
<input
|
|
type="text"
|
|
value={cvv}
|
|
onChange={(e) => setCvv(e.target.value.replace(/\D/g, '').slice(0, 4))}
|
|
placeholder="123"
|
|
className="w-full px-4 py-3 bg-white/5 border border-white/10 rounded-lg focus:border-accent-cyan focus:outline-none focus:ring-2 focus:ring-accent-cyan/50 text-white placeholder-gray-500"
|
|
required
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Error Message */}
|
|
{error && (
|
|
<motion.div
|
|
initial={{ opacity: 0, y: -10 }}
|
|
animate={{ opacity: 1, y: 0 }}
|
|
className="p-3 bg-red-500/20 border border-red-500/50 rounded-lg text-red-300 text-sm"
|
|
>
|
|
{error}
|
|
</motion.div>
|
|
)}
|
|
|
|
{/* Submit Button */}
|
|
<button
|
|
type="submit"
|
|
disabled={processing}
|
|
className="w-full py-4 bg-gradient-to-r from-accent-orange to-accent-orange/80 hover:from-accent-orange/90 hover:to-accent-orange/70 rounded-lg font-semibold text-white transition-all glow-orange disabled:opacity-50 disabled:cursor-not-allowed flex items-center justify-center gap-2"
|
|
>
|
|
{processing ? (
|
|
<>
|
|
<div className="animate-spin rounded-full h-5 w-5 border-b-2 border-white"></div>
|
|
Processing...
|
|
</>
|
|
) : (
|
|
<>
|
|
<FaLock />
|
|
Complete Purchase - ${album.price}
|
|
</>
|
|
)}
|
|
</button>
|
|
|
|
{/* Security Notice */}
|
|
<p className="text-xs text-gray-500 text-center mt-4">
|
|
<FaLock className="inline mr-1" />
|
|
This is a demo payment form. No real charges will be made.
|
|
</p>
|
|
</form>
|
|
</motion.div>
|
|
</motion.div>
|
|
)}
|
|
</AnimatePresence>
|
|
);
|
|
}
|