deckhearth/components/BulkSelectionToolbar.js
Randall Stillwell e2e5e5bcab 🚀 Added Bulk Selection System to Cards Page
 New Components:
- BulkSelectionToolbar: Floating bottom toolbar with selection count and actions
- CardItem: Modular card component with selection checkboxes and individual actions

🎯 Features:
- Multi-select cards with checkboxes (grid and list view)
- Floating toolbar shows selected count and quick actions
- Primary actions: Add to Collection, Add to Deck, Mark as Owned
- Secondary actions: Add to Favorites, Remove from Owned, Bulk Delete
- Individual card actions: Favorite, Add to Collection, Add to Deck
- Visual feedback: Selected cards get purple border and ring
- Hover effects: Quick actions appear on card hover

🎨 UX Improvements:
- Professional selection states with purple theming
- Smooth animations and transitions
- Responsive design for both grid and list views
- Clear selection button and action confirmations
- Tooltips and visual indicators

Ready for bulk card management! 📦
2025-07-25 23:22:15 -05:00

164 lines
No EOL
6.8 KiB
JavaScript

import { useState } from 'react';
export default function BulkSelectionToolbar({
selectedCards,
onClearSelection,
onAddToCollection,
onAddToDeck,
onMarkAsOwned,
onRemoveFromOwned,
onBulkFavorite,
onBulkDelete
}) {
const [showActions, setShowActions] = useState(false);
const selectedCount = selectedCards.length;
if (selectedCount === 0) return null;
const handleAddToCollection = () => {
onAddToCollection(selectedCards);
};
const handleAddToDeck = () => {
onAddToDeck(selectedCards);
};
const handleMarkAsOwned = () => {
onMarkAsOwned(selectedCards);
};
const handleRemoveFromOwned = () => {
onRemoveFromOwned(selectedCards);
};
const handleBulkFavorite = () => {
onBulkFavorite(selectedCards);
};
const handleBulkDelete = () => {
if (confirm(`Are you sure you want to delete ${selectedCount} selected cards?`)) {
onBulkDelete(selectedCards);
}
};
return (
<div className="fixed bottom-6 left-1/2 transform -translate-x-1/2 z-50">
<div className="bg-white rounded-xl shadow-2xl border border-gray-200 px-6 py-4 flex items-center space-x-4 min-w-96">
{/* Selection Count */}
<div className="flex items-center space-x-2">
<div className="w-8 h-8 bg-purple-600 rounded-full flex items-center justify-center">
<span className="text-white text-sm font-bold">{selectedCount}</span>
</div>
<span className="text-gray-700 font-medium">
{selectedCount} card{selectedCount !== 1 ? 's' : ''} selected
</span>
</div>
{/* Divider */}
<div className="h-6 w-px bg-gray-300"></div>
{/* Quick Actions */}
<div className="flex items-center space-x-2">
<button
onClick={handleAddToCollection}
className="px-3 py-2 bg-blue-600 text-white rounded-lg hover:bg-blue-700 text-sm font-medium flex items-center space-x-1 transition-colors"
>
<svg className="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M19 11H5m14 0a2 2 0 012 2v6a2 2 0 01-2 2H5a2 2 0 01-2-2v-6a2 2 0 012-2m14 0V9a2 2 0 00-2-2M5 11V9a2 2 0 012-2m0 0V5a2 2 0 012-2h6a2 2 0 012 2v2M7 7h10" />
</svg>
<span>Collection</span>
</button>
<button
onClick={handleAddToDeck}
className="px-3 py-2 bg-green-600 text-white rounded-lg hover:bg-green-700 text-sm font-medium flex items-center space-x-1 transition-colors"
>
<svg className="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M19 11H5m14 0a2 2 0 012 2v6a2 2 0 01-2 2H5a2 2 0 01-2-2v-6a2 2 0 012-2m14 0V9a2 2 0 00-2-2M5 11V9a2 2 0 012-2m0 0V5a2 2 0 012-2h6a2 2 0 012 2v2M7 7h10" />
</svg>
<span>Deck</span>
</button>
<button
onClick={handleMarkAsOwned}
className="px-3 py-2 bg-purple-600 text-white rounded-lg hover:bg-purple-700 text-sm font-medium flex items-center space-x-1 transition-colors"
>
<svg className="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M5 13l4 4L19 7" />
</svg>
<span>Own</span>
</button>
</div>
{/* More Actions Button */}
<div className="relative">
<button
onClick={() => setShowActions(!showActions)}
className="p-2 text-gray-600 hover:text-gray-800 hover:bg-gray-100 rounded-lg transition-colors"
>
<svg className="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M12 5v.01M12 12v.01M12 19v.01M12 6a1 1 0 110-2 1 1 0 010 2zm0 7a1 1 0 110-2 1 1 0 010 2zm0 7a1 1 0 110-2 1 1 0 010 2z" />
</svg>
</button>
{/* Dropdown Actions */}
{showActions && (
<div className="absolute bottom-full right-0 mb-2 bg-white rounded-lg shadow-xl border border-gray-200 py-2 min-w-48">
<button
onClick={() => {
handleBulkFavorite();
setShowActions(false);
}}
className="w-full px-4 py-2 text-left text-sm text-gray-700 hover:bg-gray-100 flex items-center space-x-2"
>
<svg className="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M4.318 6.318a4.5 4.5 0 000 6.364L12 20.364l7.682-7.682a4.5 4.5 0 00-6.364-6.364L12 7.636l-1.318-1.318a4.5 4.5 0 00-6.364 0z" />
</svg>
<span>Add to Favorites</span>
</button>
<button
onClick={() => {
handleRemoveFromOwned();
setShowActions(false);
}}
className="w-full px-4 py-2 text-left text-sm text-gray-700 hover:bg-gray-100 flex items-center space-x-2"
>
<svg className="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M6 18L18 6M6 6l12 12" />
</svg>
<span>Remove from Owned</span>
</button>
<div className="border-t border-gray-200 my-1"></div>
<button
onClick={() => {
handleBulkDelete();
setShowActions(false);
}}
className="w-full px-4 py-2 text-left text-sm text-red-600 hover:bg-red-50 flex items-center space-x-2"
>
<svg className="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M19 7l-.867 12.142A2 2 0 0116.138 21H7.862a2 2 0 01-1.995-1.858L5 7m5 4v6m4-6v6m1-10V4a1 1 0 00-1-1h-4a1 1 0 00-1 1v3M4 7h16" />
</svg>
<span>Delete Selected</span>
</button>
</div>
)}
</div>
{/* Clear Selection */}
<button
onClick={onClearSelection}
className="p-2 text-gray-400 hover:text-gray-600 hover:bg-gray-100 rounded-lg transition-colors"
title="Clear selection"
>
<svg className="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M6 18L18 6M6 6l12 12" />
</svg>
</button>
</div>
</div>
);
}