export const useBi = () => {
  return useState<any[]>('bi', () => ([
    {
      menu: true,
      text: 'BI',
      translatedText: '',
      value: 'bi',
      link: '#',
      icon: 'menu-icon tf-icons ti ti-chart-line',
      active: false,
      child: true,
      children: [
        {
          text: 'Shipments by Org',
          translatedText: '',
          value: 'bi_shipments_by_org',
          link: '/bi/shipments',
          active: false,
        },
        {
          text: 'Commission Analytics',
          translatedText: '',
          value: 'bi_commission_analytics',
          link: '/bi/commission-analytics',
          active: false,
        },
        {
          text: 'Inventory Valuation',
          translatedText: '',
          value: 'bi_inventory_valuation',
          link: '/bi/inventory-valuation',
          active: false,
        },
        {
          text: 'Storage Usage (QM3)',
          translatedText: '',
          value: 'bi_storage_usage',
          link: '/materials/storage-usage',
          active: false,
        },
        {
          text: 'Fee Line Browser',
          translatedText: '',
          value: 'bi_fee_line_browser',
          link: '/fulfillment/fee-line-browser',
          active: false,
        },
        {
          text: 'Transactions',
          translatedText: '',
          value: 'bi_transactions',
          link: '/materials/transactions',
          active: false,
        },
        {
          text: 'Material Planning',
          translatedText: '',
          value: 'bi_material_planning',
          link: '/materials/planning',
          active: false,
        },
        {
          text: 'Shipment Line Browser',
          translatedText: '',
          value: 'bi_shipment_line_browser',
          link: '/sales/shipment-line-browser',
          active: false,
        },
        {
          text: 'Margin Browser',
          translatedText: '',
          value: 'bi_margin_browser',
          link: '/bi/margin-browser',
          active: false,
        },
        {
          text: 'Locator Usage',
          translatedText: '',
          value: 'bi_locator_usage',
          link: '/bi/locator-usage',
          active: false,
        }
      ]
    },
  ]))
}
