File size: 18,673 Bytes
25f22bf |
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 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 |
import React, { useState, useEffect } from 'react';
import { useDispatch, useSelector } from 'react-redux';
import { useNavigate } from 'react-router-dom';
import { logoutUser } from '../../store/reducers/authSlice';
import './Header.css'; // Import the CSS file
const Header = ({ onMenuToggle, isMenuOpen: propIsMenuOpen, isMobile = false }) => {
const dispatch = useDispatch();
const navigate = useNavigate();
const { user } = useSelector(state => state.auth);
// Removed local isMenuOpen state
const isMenuOpen = propIsMenuOpen; // Use prop directly
// pendingNavigation state removed
// Removed useEffect to sync with parent menu state (not needed if fully controlled)
const [isLoading, setIsLoading] = useState(false);
const handleLogout = async () => {
setIsLoading(true);
try {
await dispatch(logoutUser()).unwrap();
navigate('/login');
} catch (error) {
console.error('Logout failed:', error);
} finally {
setIsLoading(false);
}
};
const toggleMenu = () => {
// Only notify parent to toggle its state
if (onMenuToggle) {
onMenuToggle(!isMenuOpen);
}
};
// Removed the useEffect for pendingNavigation
// Close menu when clicking outside - needs to notify parent
useEffect(() => {
const handleClickOutside = (event) => {
if (isMenuOpen && event.target.closest('.header-menu') === null) {
// Notify parent to close menu
if (onMenuToggle) {
onMenuToggle(false);
}
}
};
document.addEventListener('mousedown', handleClickOutside);
return () => {
document.removeEventListener('mousedown', handleClickOutside);
};
}, [isMenuOpen, onMenuToggle]); // Depend on isMenuOpen prop
// Handle keyboard navigation for mobile menu - needs to notify parent
useEffect(() => {
const handleGlobalKeyDown = (e) => {
// Close mobile menu with Escape
if (e.key === 'Escape' && isMenuOpen) {
// Notify parent to close menu
if (onMenuToggle) {
onMenuToggle(false);
}
}
};
document.addEventListener('keydown', handleGlobalKeyDown);
return () => document.removeEventListener('keydown', handleGlobalKeyDown);
}, [isMenuOpen, onMenuToggle]); // Depend on isMenuOpen prop
const handleNavigation = (path) => {
console.log("Attempting to navigate to:", path); // Add log
navigate(path);
console.log("Navigation called, now closing menu"); // Add log
// Notify parent to close menu
if (onMenuToggle) {
onMenuToggle(false);
}
};
return (
<header className="header fixed top-0 left-0 right-0 z-50 bg-white/90 backdrop-blur-md border-b border-gray-200/50 shadow-sm animate-fade-down">
<div className="header-content max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
{/* Desktop layout - flex for better control */}
<div className="hidden lg:flex items-center justify-between h-16">
{/* Logo and App Title - Aligned to the left */}
<div className="flex items-center space-x-3">
<div className="flex-shrink-0">
<div className="w-10 h-10 bg-gradient-to-br from-primary-600 to-primary-800 rounded-lg flex items-center justify-center transform transition-transform hover:scale-105 active:scale-95 touch-manipulation">
<span className="text-white font-bold text-xl">L</span>
</div>
</div>
<h1 className="app-title text-display text-2xl font-bold text-gray-900 tracking-tight whitespace-nowrap">
Lin
</h1>
</div>
{/* Desktop Navigation - Empty for now */}
<div className="flex-1 flex items-center justify-center">
{/* Navigation items can go here if needed */}
</div>
{/* User Profile and Logout - Aligned to the far right */}
{user && (
<div className="flex items-center space-x-4">
<div className="flex items-center space-x-3">
<div className="w-10 h-10 bg-gradient-to-br from-accent-400 to-accent-600 rounded-full flex items-center justify-center">
<span className="text-white font-medium text-sm">
{user.email ? user.email.charAt(0).toUpperCase() : 'U'}
</span>
</div>
<div className="hidden sm:block">
<p className="text-sm font-medium text-gray-900">
Welcome back
</p>
<p className="text-xs text-gray-500 truncate max-w-[150px]">
{user.email || '[email protected]'}
</p>
</div>
<button
onClick={handleLogout}
disabled={isLoading}
className="btn btn-primary flex items-center space-x-2 px-4 py-2 text-sm font-medium rounded-lg transition-all duration-200 hover:shadow-md focus:outline-none focus:ring-2 focus:ring-primary-500 focus:ring-offset-2 disabled:opacity-50 disabled:cursor-not-allowed touch-manipulation active:scale-95"
aria-label="Logout"
aria-busy={isLoading}
>
{isLoading ? (
<>
<svg className="animate-spin h-4 w-4 text-white" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24">
<circle className="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" strokeWidth="4"></circle>
<path className="opacity-75" fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
</svg>
<span className="text-sm">Logging out...</span>
</>
) : (
<>
<svg className="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M17 16l4-4m0 0l-4-4m4 4H7m6 4v1a3 3 0 01-3 3H6a3 3 0 01-3-3V7a3 3 0 013-3h4a3 3 0 013 3v1" />
</svg>
<span className="text-sm">Logout</span>
</>
)}
</button>
</div>
</div>
)}
</div>
{/* Mobile layout - grid for better control */}
<div className="lg:hidden grid grid-cols-[1fr_auto] items-center h-16 gap-4">
{/* Logo and App Title - Aligned to the left */}
<div className="flex items-center space-x-3">
<div className="flex-shrink-0">
<div className="w-10 h-10 bg-gradient-to-br from-primary-600 to-primary-800 rounded-lg flex items-center justify-center transform transition-transform hover:scale-105 active:scale-95 touch-manipulation">
<span className="text-white font-bold text-xl">L</span>
</div>
</div>
<h1 className="app-title text-display text-2xl font-bold text-gray-900 tracking-tight whitespace-nowrap">
Lin
</h1>
</div>
{/* Mobile menu button or user info - Aligned to the right */}
<div className="flex items-center justify-self-end space-x-2">
{user ? (
<div className="flex items-center space-x-2">
<div className="w-8 h-8 bg-gradient-to-br from-accent-400 to-accent-600 rounded-full flex items-center justify-center">
<span className="text-white font-medium text-xs">
{user.email ? user.email.charAt(0).toUpperCase() : 'U'}
</span>
</div>
<button
onClick={toggleMenu}
className="mobile-menu-button inline-flex items-center justify-center p-2.5 rounded-lg text-gray-400 hover:text-gray-600 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-primary-500 transition-colors duration-200 touch-manipulation active:scale-95"
aria-expanded={isMenuOpen}
aria-label="Open user menu"
aria-controls="mobile-menu"
>
<span className={`hamburger-line block w-5 h-0.5 bg-current transition-all duration-300 ease-in-out ${isMenuOpen ? 'rotate-45 translate-y-1.5' : ''}`}></span>
<span className={`hamburger-line block w-5 h-0.5 bg-current transition-all duration-300 ease-in-out my-1 ${isMenuOpen ? 'opacity-0' : ''}`}></span>
<span className={`hamburger-line block w-5 h-0.5 bg-current transition-all duration-300 ease-in-out ${isMenuOpen ? '-rotate-45 -translate-y-1.5' : ''}`}></span>
</button>
</div>
) : (
// Hamburger menu for mobile when not logged in
<button
onClick={toggleMenu}
className="mobile-menu-button inline-flex items-center justify-center p-2.5 rounded-lg text-gray-400 hover:text-gray-600 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-primary-500 transition-colors duration-200 touch-manipulation active:scale-95"
aria-expanded={isMenuOpen}
aria-label="Open navigation menu"
aria-controls="mobile-menu"
>
<span className={`hamburger-line block w-6 h-0.5 bg-current transition-all duration-300 ease-in-out ${isMenuOpen ? 'rotate-45 translate-y-1.5' : ''}`}></span>
<span className={`hamburger-line block w-6 h-0.5 bg-current transition-all duration-300 ease-in-out my-1 ${isMenuOpen ? 'opacity-0' : ''}`}></span>
<span className={`hamburger-line block w-6 h-0.5 bg-current transition-all duration-300 ease-in-out ${isMenuOpen ? '-rotate-45 -translate-y-1.5' : ''}`}></span>
</button>
)}
</div>
</div> {/* End of mobile grid layout */}
{/* Mobile menu */}
{user && isMenuOpen && (
<div className="lg:hidden fixed inset-0 z-50 bg-black bg-opacity-50 header-menu" id="mobile-menu">
<div className="fixed inset-y-0 right-0 max-w-full flex">
<div className="relative w-64 bg-white shadow-xl mobile-menu-content">
<div className="flex flex-col min-h-screen">
{/* Mobile menu header */}
<div className="flex items-center justify-between px-4 py-3 border-b">
<div className="flex items-center space-x-3">
<div className="w-10 h-10 bg-gradient-to-br from-accent-400 to-accent-600 rounded-full flex items-center justify-center">
<span className="text-white font-medium text-sm">
{user.email ? user.email.charAt(0).toUpperCase() : 'U'}
</span>
</div>
<div>
<p className="text-sm font-semibold text-gray-900">
{user.name || 'User'}
</p>
<p className="text-xs text-gray-500">
{user.email || '[email protected]'}
</p>
</div>
</div>
<button
onClick={toggleMenu}
className="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-primary-500"
aria-label="Close menu"
>
<svg className="h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M6 18L18 6M6 6l12 12" />
</svg>
</button>
</div>
{/* Mobile menu body - flex-1 to take available space */}
<div className="flex-1 overflow-y-auto">
<nav className="px-2 py-3">
<div className="space-y-1">
<button
className="flex items-center w-full px-3 py-2 text-base font-medium text-gray-700 rounded-md hover:bg-gray-100 hover:text-primary-600"
onClick={() => {
handleNavigation('/dashboard');
}}
>
<svg className="mr-3 h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M3 12l2-2m0 0l7-7 7 7M5 10v10a1 1 0 001 1h3m10-11l2 2m-2-2v10a1 1 0 01-1 1h-3m-6 0a1 1 0 001-1v-4a1 1 0 011-1h2a1 1 0 011 1v4a1 1 0 001 1m-6 0h6" />
</svg>
Dashboard
</button>
<button
className="flex items-center w-full px-3 py-2 text-base font-medium text-gray-700 rounded-md hover:bg-gray-100 hover:text-primary-600"
onClick={() => {
handleNavigation('/posts');
}}
>
<svg className="mr-3 h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M11 5H6a2 2 0 00-2 2v11a2 2 0 002 2h11a2 2 0 002-2v-5m-1.414-9.414a2 2 0 112.828 2.828L11.828 15H9v-2.828l8.586-8.586z" />
</svg>
Posts
</button>
<button
className="flex items-center w-full px-3 py-2 text-base font-medium text-gray-700 rounded-md hover:bg-gray-100 hover:text-primary-600"
onClick={() => {
console.log("Schedule button clicked"); // Add log
handleNavigation('/schedule');
}}
>
<svg className="mr-3 h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z" />
</svg>
Schedule
</button>
<button
className="flex items-center w-full px-3 py-2 text-base font-medium text-gray-700 rounded-md hover:bg-gray-100 hover:text-primary-600"
onClick={() => {
handleNavigation('/sources');
}}
>
<svg className="mr-3 h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<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>
Sources
</button>
<button
className="flex items-center w-full px-3 py-2 text-base font-medium text-gray-700 rounded-md hover:bg-gray-100 hover:text-primary-600"
onClick={() => {
handleNavigation('/accounts');
}}
>
<svg className="mr-3 h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M16 7a4 4 0 11-8 0 4 4 0 018 0zM12 14a7 7 0 00-7 7h14a7 7 0 00-7-7z" />
</svg>
Accounts
</button>
</div>
</nav>
</div>
{/* Mobile menu footer */}
<div className="border-t border-gray-200 p-4">
<button
onClick={handleLogout}
disabled={isLoading}
className="w-full flex items-center justify-center px-4 py-2 border border-transparent text-base font-medium rounded-md text-white bg-primary-600 shadow-sm hover:bg-primary-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-primary-500 disabled:opacity-50 disabled:cursor-not-allowed"
aria-label="Logout"
aria-busy={isLoading}
>
{isLoading ? (
<>
<svg className="animate-spin -ml-1 mr-2 h-4 w-4" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24">
<circle className="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" strokeWidth="4"></circle>
<path className="opacity-75" fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
</svg>
Logging out...
</>
) : (
<>
<svg className="mr-2 h-4 w-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M17 16l4-4m0 0l-4-4m4 4H7m6 4v1a3 3 0 01-3 3H6a3 3 0 01-3-3V7a3 3 0 013-3h4a3 3 0 013 3v1" />
</svg>
Logout
</>
)}
</button>
</div>
</div>
</div>
</div>
</div>
)}
</div>
</header>
);
};
export default Header; |