(function() { const Home = window.createIcon('Home'); const Film = window.createIcon('Film'); const Settings = window.createIcon('Settings'); const LogOut = window.createIcon('LogOut'); const User = window.createIcon('User'); const ConsoleSide = ({ activePage, setPage }) => { const { user, navigateTo } = window.useApp(); const menuItems = [ { id: 'dash', label: 'Overview', icon: Home }, { id: 'films', label: 'Manajemen Film', icon: Film }, { id: 'settings', label: 'Pengaturan', icon: Settings }, ]; const handleLogout = () => { // Logic Logout sederhana: redirect ke URL logout WP window.location.href = window.CFF_CONFIG.siteUrl + '/wp-login.php?action=logout'; }; return (
{/* Brand */}
navigateTo('home')}>

CFF Console

{/* User Profile Mini */}
{user.name.charAt(0)}

{user.name}

{user.roles[0] || 'Sineas'}

{/* Menu List */} {/* Footer Action */}
); }; window.ConsoleSide = ConsoleSide; })();