feat: add Online Orders to feature flag toggles

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-06-08 04:06:39 +03:00
parent f136abe17e
commit 34b58b3f2e
2 changed files with 10 additions and 9 deletions

View File

@@ -39,7 +39,7 @@ export default function Sidebar() {
const ALL_NAV = [
{ to: '/dashboard', icon: BarChart2, label: 'Dashboard' },
{ to: '/tables', icon: LayoutGrid, label: 'Τραπέζια' },
{ to: '/online-orders', icon: ShoppingBag, label: 'Online Orders', badge: pendingCount },
{ to: '/online-orders', icon: ShoppingBag, label: 'Online Orders', badge: pendingCount, phase2: 'online-orders' },
{ to: '/reports', icon: ClipboardList, label: 'Αναφορές' },
{ to: '/management', icon: Package, label: 'Διαχείριση' },
{ to: '/notes', icon: NotebookPen, label: 'Σημειώσεις', phase2: 'notes' },

View File

@@ -6,14 +6,15 @@ const STORAGE_KEY = 'phase2_features'
// enabled: true = shown by default (feature is polished)
// enabled: false = hidden by default (still in development)
export const PHASE2_FEATURE_DEFS = [
{ id: 'notes', label: 'Σημειώσεις & Εργασίες', route: '/notes', enabled: true },
{ id: 'expenses', label: 'Έξοδα', route: '/expenses', enabled: true },
{ id: 'contacts', label: 'Επαφές / Προμηθευτές', route: '/contacts', enabled: true },
{ id: 'customers', label: 'Πελάτες', route: '/customers',enabled: true },
{ id: 'tabs', label: 'Καρτέλες', route: '/tabs', enabled: true },
{ id: 'waste', label: 'Αποβλήτα / Φθορές', route: '/waste', enabled: true },
{ id: 'kds', label: 'KDS — Κουζίνα', route: '/kds', enabled: true },
{ id: 'schedule', label: 'Πρόγραμμα Βαρδιών', route: '/schedule', enabled: true },
{ id: 'online-orders', label: 'Online Orders', route: '/online-orders', enabled: true },
{ id: 'notes', label: 'Σημειώσεις & Εργασίες', route: '/notes', enabled: true },
{ id: 'expenses', label: 'Έξοδα', route: '/expenses', enabled: true },
{ id: 'contacts', label: 'Επαφές / Προμηθευτές', route: '/contacts', enabled: true },
{ id: 'customers', label: 'Πελάτες', route: '/customers', enabled: true },
{ id: 'tabs', label: 'Καρτέλες', route: '/tabs', enabled: true },
{ id: 'waste', label: 'Αποβλήτα / Φθορές', route: '/waste', enabled: true },
{ id: 'kds', label: 'KDS — Κουζίνα', route: '/kds', enabled: true },
{ id: 'schedule', label: 'Πρόγραμμα Βαρδιών', route: '/schedule', enabled: true },
]
function _load() {