231 lines
10 KiB
JavaScript
231 lines
10 KiB
JavaScript
import React, { useState, useEffect, useRef } from 'react';
|
|
import { Link, useLocation } from 'react-router-dom';
|
|
import { Home, Hash, FileSpreadsheet, Wand2, GitCompare, Menu, X, LinkIcon, Code2, ChevronDown, Type, Edit3 } from 'lucide-react';
|
|
import ThemeToggle from './ThemeToggle';
|
|
import ToolSidebar from './ToolSidebar';
|
|
|
|
const Layout = ({ children }) => {
|
|
const location = useLocation();
|
|
const [isDropdownOpen, setIsDropdownOpen] = useState(false);
|
|
const [isMobileMenuOpen, setIsMobileMenuOpen] = useState(false);
|
|
const dropdownRef = useRef(null);
|
|
|
|
const isActive = (path) => {
|
|
return location.pathname === path;
|
|
};
|
|
|
|
// Close dropdown when clicking outside
|
|
useEffect(() => {
|
|
const handleClickOutside = (event) => {
|
|
if (dropdownRef.current && !dropdownRef.current.contains(event.target)) {
|
|
setIsDropdownOpen(false);
|
|
}
|
|
};
|
|
|
|
document.addEventListener('mousedown', handleClickOutside);
|
|
return () => {
|
|
document.removeEventListener('mousedown', handleClickOutside);
|
|
};
|
|
}, []);
|
|
|
|
// Close mobile menu when route changes
|
|
useEffect(() => {
|
|
setIsMobileMenuOpen(false);
|
|
setIsDropdownOpen(false);
|
|
}, [location.pathname]);
|
|
|
|
const tools = [
|
|
{ path: '/object-editor', name: 'Object Editor', icon: Edit3, description: 'Visual editor for JSON & PHP objects' },
|
|
{ path: '/url', name: 'URL Tool', icon: LinkIcon, description: 'URL encode/decode' },
|
|
{ path: '/base64', name: 'Base64 Tool', icon: Hash, description: 'Base64 encode/decode' },
|
|
{ path: '/csv-json', name: 'CSV/JSON Tool', icon: FileSpreadsheet, description: 'Convert CSV ↔ JSON' },
|
|
{ path: '/beautifier', name: 'Beautifier Tool', icon: Wand2, description: 'Beautify/minify code' },
|
|
{ path: '/diff', name: 'Diff Tool', icon: GitCompare, description: 'Compare text differences' },
|
|
{ path: '/text-length', name: 'Text Length Checker', icon: Type, description: 'Analyze text length & stats' },
|
|
];
|
|
|
|
// Check if we're on a tool page (not homepage)
|
|
const isToolPage = location.pathname !== '/';
|
|
|
|
return (
|
|
<div className="min-h-screen bg-gray-50 dark:bg-gray-900 flex flex-col">
|
|
{/* Header */}
|
|
<header className="sticky top-0 z-50 bg-white dark:bg-gray-800 shadow-sm border-b border-gray-200 dark:border-gray-700 flex-shrink-0">
|
|
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
|
<div className="flex justify-between items-center h-16">
|
|
<Link to="/" className="flex items-center space-x-2">
|
|
<Code2 className="h-8 w-8 text-primary-600" />
|
|
<span className="text-xl font-bold text-gray-900 dark:text-white">
|
|
DevTools
|
|
</span>
|
|
</Link>
|
|
|
|
<div className="flex items-center space-x-4">
|
|
{/* Desktop Navigation - only show on homepage */}
|
|
{!isToolPage && (
|
|
<nav className="hidden md:flex items-center space-x-6">
|
|
<Link
|
|
to="/"
|
|
className={`flex items-center space-x-1 px-3 py-2 rounded-md text-sm font-medium transition-colors ${
|
|
isActive('/')
|
|
? 'bg-primary-100 text-primary-700 dark:bg-primary-900 dark:text-primary-300'
|
|
: 'text-gray-600 hover:text-gray-900 dark:text-gray-300 dark:hover:text-white'
|
|
}`}
|
|
>
|
|
<Home className="h-4 w-4" />
|
|
<span>Home</span>
|
|
</Link>
|
|
|
|
{/* Tools Dropdown */}
|
|
<div className="relative" ref={dropdownRef}>
|
|
<button
|
|
onClick={() => setIsDropdownOpen(!isDropdownOpen)}
|
|
className="flex items-center space-x-1 px-3 py-2 rounded-md text-sm font-medium text-gray-600 hover:text-gray-900 dark:text-gray-300 dark:hover:text-white transition-colors"
|
|
>
|
|
<span>Tools</span>
|
|
<ChevronDown className={`h-4 w-4 transition-transform ${
|
|
isDropdownOpen ? 'rotate-180' : ''
|
|
}`} />
|
|
</button>
|
|
|
|
{/* Dropdown Menu */}
|
|
{isDropdownOpen && (
|
|
<div className="absolute top-full left-0 mt-2 w-64 bg-white dark:bg-gray-800 rounded-lg shadow-lg border border-gray-200 dark:border-gray-700 py-2 z-50">
|
|
{tools.map((tool) => {
|
|
const IconComponent = tool.icon;
|
|
return (
|
|
<Link
|
|
key={tool.path}
|
|
to={tool.path}
|
|
onClick={() => setIsDropdownOpen(false)}
|
|
className={`flex items-center space-x-3 px-4 py-3 text-sm hover:bg-gray-50 dark:hover:bg-gray-700 transition-colors ${
|
|
isActive(tool.path)
|
|
? 'bg-primary-50 text-primary-700 dark:bg-primary-900 dark:text-primary-300'
|
|
: 'text-gray-700 dark:text-gray-300'
|
|
}`}
|
|
>
|
|
<IconComponent className="h-4 w-4" />
|
|
<div>
|
|
<div className="font-medium">{tool.name}</div>
|
|
<div className="text-xs text-gray-500 dark:text-gray-400">{tool.description}</div>
|
|
</div>
|
|
</Link>
|
|
);
|
|
})}
|
|
</div>
|
|
)}
|
|
</div>
|
|
</nav>
|
|
)}
|
|
|
|
<ThemeToggle />
|
|
|
|
{/* Mobile Menu Button */}
|
|
<button
|
|
onClick={() => setIsMobileMenuOpen(!isMobileMenuOpen)}
|
|
className="md:hidden p-2 rounded-md text-gray-600 hover:text-gray-900 dark:text-gray-300 dark:hover:text-white transition-colors"
|
|
>
|
|
{isMobileMenuOpen ? <X className="h-6 w-6" /> : <Menu className="h-6 w-6" />}
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
|
|
{/* Mobile Navigation Menu */}
|
|
{isMobileMenuOpen && (
|
|
<div className="md:hidden bg-white dark:bg-gray-800 border-b border-gray-200 dark:border-gray-700">
|
|
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-4">
|
|
<div className="space-y-2">
|
|
<Link
|
|
to="/"
|
|
onClick={() => setIsMobileMenuOpen(false)}
|
|
className={`flex items-center space-x-3 px-3 py-2 rounded-md text-sm font-medium transition-colors ${
|
|
isActive('/')
|
|
? 'bg-primary-100 text-primary-700 dark:bg-primary-900 dark:text-primary-300'
|
|
: 'text-gray-600 hover:text-gray-900 dark:text-gray-300 dark:hover:text-white'
|
|
}`}
|
|
>
|
|
<Home className="h-5 w-5" />
|
|
<span>Home</span>
|
|
</Link>
|
|
|
|
<div className="border-t border-gray-200 dark:border-gray-700 pt-2 mt-2">
|
|
<div className="text-xs font-semibold text-gray-500 dark:text-gray-400 uppercase tracking-wider px-3 py-1">
|
|
{isToolPage ? 'Switch Tools' : 'Tools'}
|
|
</div>
|
|
{tools.map((tool) => {
|
|
const IconComponent = tool.icon;
|
|
return (
|
|
<Link
|
|
key={tool.path}
|
|
to={tool.path}
|
|
onClick={() => setIsMobileMenuOpen(false)}
|
|
className={`flex items-center space-x-3 px-3 py-2 rounded-md text-sm font-medium transition-colors ${
|
|
isActive(tool.path)
|
|
? 'bg-primary-100 text-primary-700 dark:bg-primary-900 dark:text-primary-300'
|
|
: 'text-gray-600 hover:text-gray-900 dark:text-gray-300 dark:hover:text-white'
|
|
}`}
|
|
>
|
|
<IconComponent className="h-5 w-5" />
|
|
<div>
|
|
<div className="font-medium">{tool.name}</div>
|
|
<div className="text-xs text-gray-500 dark:text-gray-400">{tool.description}</div>
|
|
</div>
|
|
</Link>
|
|
);
|
|
})}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)}
|
|
|
|
{/* Main Content */}
|
|
<div className="flex flex-1">
|
|
{/* Tool Sidebar - only show on tool pages */}
|
|
{isToolPage && (
|
|
<div className="hidden lg:block flex-shrink-0">
|
|
<ToolSidebar />
|
|
</div>
|
|
)}
|
|
|
|
{/* Main Content Area */}
|
|
<main className={`flex-1 flex flex-col ${isToolPage ? 'overflow-hidden' : ''}`}>
|
|
{isToolPage ? (
|
|
<div className="flex-1 overflow-auto">
|
|
<div className="px-4 sm:px-6 lg:px-8 py-8">
|
|
{children}
|
|
</div>
|
|
{/* Footer for tool pages - inside scrollable content */}
|
|
<footer className="bg-white dark:bg-gray-800 border-t border-gray-200 dark:border-gray-700">
|
|
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-8">
|
|
<div className="text-center text-gray-600 dark:text-gray-400">
|
|
<p>© {new Date().getFullYear()} Dewe Toolsites - Developer Tools.</p>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
</div>
|
|
) : (
|
|
<div className="flex-1">
|
|
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-8">
|
|
{children}
|
|
</div>
|
|
{/* Footer for homepage */}
|
|
<footer className="bg-white dark:bg-gray-800 border-t border-gray-200 dark:border-gray-700 mt-16">
|
|
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-8">
|
|
<div className="text-center text-gray-600 dark:text-gray-400">
|
|
<p>© {new Date().getFullYear()} Dewe Toolsites - Developer Tools.</p>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
</div>
|
|
)}
|
|
</main>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Layout;
|