Spaces:
Build error
Build error
File size: 5,736 Bytes
d5b3857 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 | import { useState, useEffect } from 'react';
import { X, Plus, Edit2 } from 'lucide-react';
const INCOME_CATEGORIES = [
'Sales',
'Services',
'Consulting',
'Subscriptions',
'Refunds',
'Other Income',
];
const EXPENSE_CATEGORIES = [
'Supplies',
'Equipment',
'Marketing',
'Utilities',
'Software',
'Travel',
'Professional Services',
'Taxes',
'Other',
];
export default function TransactionModal({
isOpen,
onClose,
onSubmit,
type = 'income',
editingTransaction = null,
}) {
const [formData, setFormData] = useState({
amount: '',
category: '',
description: '',
date: new Date().toISOString().split('T')[0],
});
useEffect(() => {
if (editingTransaction) {
setFormData({
amount: editingTransaction.amount.toString(),
category: editingTransaction.category,
description: editingTransaction.description || '',
date: editingTransaction.date,
});
} else {
setFormData({
amount: '',
category: '',
description: '',
date: new Date().toISOString().split('T')[0],
});
}
}, [editingTransaction, isOpen]);
if (!isOpen) return null;
const categories = type === 'income' ? INCOME_CATEGORIES : EXPENSE_CATEGORIES;
const handleSubmit = (e) => {
e.preventDefault();
const amount = parseFloat(formData.amount);
if (!amount || isNaN(amount)) return;
onSubmit({
id: editingTransaction?.id || Date.now(),
type,
amount: Math.abs(amount),
category: formData.category,
description: formData.description,
date: formData.date,
createdAt: editingTransaction?.createdAt || new Date().toISOString(),
});
onClose();
};
return (
<div className="fixed inset-0 z-50 overflow-y-auto">
<div className="flex min-h-full items-center justify-center p-4">
{/* Backdrop */}
<div
className="fixed inset-0 bg-neutral-900/50 transition-opacity"
onClick={onClose}
/>
{/* Modal */}
<div className="relative bg-white rounded-xl shadow-xl max-w-md w-full animate-fadeIn">
{/* Header */}
<div className="flex items-center justify-between p-6 border-b border-neutral-100">
<h2 className="text-lg font-semibold text-neutral-800">
{editingTransaction ? 'Edit' : 'Add'} {type === 'income' ? 'Income' : 'Expense'}
</h2>
<button
onClick={onClose}
className="p-2 text-neutral-400 hover:text-neutral-600 rounded-lg hover:bg-neutral-100 transition-colors"
>
<X className="w-5 h-5" />
</button>
</div>
{/* Form */}
<form onSubmit={handleSubmit} className="p-6 space-y-4">
{/* Amount */}
<div>
<label className="label">Amount</label>
<div className="relative">
<span className="absolute left-4 top-1/2 -translate-y-1/2 text-neutral-400">
$
</span>
<input
type="number"
step="0.01"
min="0"
value={formData.amount}
onChange={(e) => setFormData({ ...formData, amount: e.target.value })}
className="input-field pl-8"
placeholder="0.00"
required
autoFocus
/>
</div>
</div>
{/* Category */}
<div>
<label className="label">Category</label>
<select
value={formData.category}
onChange={(e) => setFormData({ ...formData, category: e.target.value })}
className="input-field"
required
>
<option value="">Select a category</option>
{categories.map((cat) => (
<option key={cat} value={cat}>
{cat}
</option>
))}
</select>
</div>
{/* Description */}
<div>
<label className="label">Description (optional)</label>
<input
type="text"
value={formData.description}
onChange={(e) => setFormData({ ...formData, description: e.target.value })}
className="input-field"
placeholder="What was this for?"
/>
</div>
{/* Date */}
<div>
<label className="label">Date</label>
<input
type="date"
value={formData.date}
onChange={(e) => setFormData({ ...formData, date: e.target.value })}
className="input-field"
required
/>
</div>
{/* Actions */}
<div className="flex gap-3 pt-4">
<button type="button" onClick={onClose} className="btn-secondary flex-1">
Cancel
</button>
<button type="submit" className={type === 'income' ? 'btn-success flex-1' : 'btn-danger flex-1'}>
{editingTransaction ? (
<>
<Edit2 className="w-4 h-4 inline mr-2" />
Save Changes
</>
) : (
<>
<Plus className="w-4 h-4 inline mr-2" />
Add {type === 'income' ? 'Income' : 'Expense'}
</>
)}
</button>
</div>
</form>
</div>
</div>
</div>
);
} |