{# app/templates/store/partials/sidebar.html #} {# Collapsible sidebar sections with localStorage persistence - matching admin pattern #} {# ============================================================================ REUSABLE MACROS FOR SIDEBAR ITEMS ============================================================================ #} {# Macro for collapsible section header #} {% macro section_header(title, section_key, icon=none) %}

{% endmacro %} {# Macro for collapsible section content wrapper #} {% macro section_content(section_key) %} {% endmacro %} {# Macro for menu item - uses storeCode for dynamic URLs #} {% macro menu_item(page_id, path, icon, label) %}
  • {{ label }}
  • {% endmacro %} {# ============================================================================ SIDEBAR CONTENT (shared between desktop and mobile) ============================================================================ #} {% macro sidebar_content() %}
    🏪 {{ section_header('Products & Inventory', 'products', 'cube') }} {% call section_content('products') %} {{ menu_item('products', 'products', 'shopping-bag', 'All Products') }} {{ menu_item('inventory', 'inventory', 'clipboard-list', 'Inventory') }} {{ menu_item('marketplace', 'marketplace', 'download', 'Marketplace Import') }} {% endcall %} {{ section_header('Sales & Orders', 'sales', 'shopping-cart') }} {% call section_content('sales') %} {{ menu_item('orders', 'orders', 'document-text', 'Orders') }} {{ menu_item('letzshop', 'letzshop', 'external-link', 'Letzshop Orders') }} {{ menu_item('invoices', 'invoices', 'currency-euro', 'Invoices') }} {% endcall %} {{ section_header('Customers', 'customers', 'users') }} {% call section_content('customers') %} {{ menu_item('customers', 'customers', 'user-group', 'All Customers') }} {{ menu_item('messages', 'messages', 'chat-bubble-left-right', 'Messages') }} {{ menu_item('notifications', 'notifications', 'bell', 'Notifications') }} {% endcall %} {{ section_header('Shop & Content', 'shop', 'color-swatch') }} {% call section_content('shop') %} {{ menu_item('content-pages', 'content-pages', 'document-text', 'Content Pages') }} {{ menu_item('media', 'media', 'photograph', 'Media Library') }} {# Future: Theme customization, if enabled for store tier {{ menu_item('theme', 'theme', 'paint-brush', 'Theme') }} #} {% endcall %} {{ section_header('Account & Settings', 'account', 'cog') }} {% call section_content('account') %} {{ menu_item('team', 'team', 'user-group', 'Team') }} {{ menu_item('profile', 'profile', 'user', 'Profile') }} {{ menu_item('billing', 'billing', 'credit-card', 'Billing') }} {{ menu_item('email-templates', 'email-templates', 'mail', 'Email Templates') }} {{ menu_item('settings', 'settings', 'adjustments', 'Settings') }} {% endcall %}
    {% endmacro %} {# ============================================================================ DESKTOP SIDEBAR ============================================================================ #} {# ============================================================================ MOBILE SIDEBAR ============================================================================ #}