- Added `prop-types` for better prop validation in components. - Introduced `CurrencyProvider` to manage currency context and preload exchange rates. - Updated pricing logic in various components to support new price structure and display currency. - Refactored BOMSummary, MotorStep, and PowerSupplyStep to utilize new pricing methods and improve user experience. - Enhanced export utilities to format prices correctly in markdown and Excel outputs. - Updated hardware and component data structures to include detailed pricing information.
89 lines
3.4 KiB
JavaScript
89 lines
3.4 KiB
JavaScript
import { useState } from 'react';
|
|
import { useCurrency } from '../contexts/CurrencyContext';
|
|
|
|
const currencies = [
|
|
{ code: 'USD', symbol: '$', name: 'US Dollar' },
|
|
{ code: 'CAD', symbol: 'C$', name: 'Canadian Dollar' },
|
|
{ code: 'EUR', symbol: '€', name: 'Euro' },
|
|
{ code: 'GBP', symbol: '£', name: 'British Pound' },
|
|
{ code: 'AUD', symbol: 'A$', name: 'Australian Dollar' },
|
|
{ code: 'JPY', symbol: '¥', name: 'Japanese Yen' },
|
|
{ code: 'CNY', symbol: '¥', name: 'Chinese Yuan' },
|
|
];
|
|
|
|
export default function CurrencySwitcher() {
|
|
const { currency, setCurrency } = useCurrency();
|
|
const [isOpen, setIsOpen] = useState(false);
|
|
|
|
const currentCurrency = currencies.find(c => c.code === currency) || currencies[0];
|
|
|
|
const handleCurrencyChange = (newCurrency) => {
|
|
setCurrency(newCurrency);
|
|
setIsOpen(false);
|
|
};
|
|
|
|
return (
|
|
<div className="fixed top-4 right-20 sm:right-24 z-50">
|
|
<div className="relative">
|
|
<button
|
|
onClick={() => setIsOpen(!isOpen)}
|
|
className="p-2 sm:p-3 rounded-full bg-white dark:bg-gray-800 border border-gray-200 dark:border-gray-700 shadow-lg hover:shadow-xl transition-all duration-200 hover:scale-110 flex items-center gap-1 sm:gap-2 min-w-[70px] sm:min-w-[80px] justify-center"
|
|
aria-label="Change currency"
|
|
aria-expanded={isOpen}
|
|
>
|
|
<span className="text-xs sm:text-sm font-semibold text-gray-900 dark:text-white whitespace-nowrap">
|
|
{currentCurrency.symbol} {currentCurrency.code}
|
|
</span>
|
|
<svg
|
|
className={`w-4 h-4 text-gray-600 dark:text-gray-400 transition-transform flex-shrink-0 ${isOpen ? 'rotate-180' : ''}`}
|
|
fill="none"
|
|
stroke="currentColor"
|
|
viewBox="0 0 24 24"
|
|
>
|
|
<path
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeWidth={2}
|
|
d="M19 9l-7 7-7-7"
|
|
/>
|
|
</svg>
|
|
</button>
|
|
|
|
{isOpen && (
|
|
<>
|
|
<div
|
|
className="fixed inset-0 z-40"
|
|
onClick={() => setIsOpen(false)}
|
|
/>
|
|
<div className="absolute right-0 mt-2 w-56 bg-white dark:bg-gray-800 border border-gray-200 dark:border-gray-700 rounded-lg shadow-xl z-50 overflow-hidden">
|
|
<div className="py-1">
|
|
{currencies.map((curr) => (
|
|
<button
|
|
key={curr.code}
|
|
onClick={() => handleCurrencyChange(curr.code)}
|
|
className={`w-full text-left px-4 py-2 text-sm transition-colors ${
|
|
currency === curr.code
|
|
? 'bg-blue-50 dark:bg-blue-900/30 text-blue-600 dark:text-blue-400 font-semibold'
|
|
: 'text-gray-700 dark:text-gray-300 hover:bg-gray-50 dark:hover:bg-gray-700'
|
|
}`}
|
|
>
|
|
<div className="flex items-center justify-between">
|
|
<div>
|
|
<span className="font-medium">{curr.symbol}</span>
|
|
<span className="ml-2">{curr.code}</span>
|
|
</div>
|
|
<span className="text-xs text-gray-500 dark:text-gray-400">
|
|
{curr.name}
|
|
</span>
|
|
</div>
|
|
</button>
|
|
))}
|
|
</div>
|
|
</div>
|
|
</>
|
|
)}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|