// @ts-nocheck import React from 'react'; import { Alignment, Navbar, NavbarGroup } from '@blueprintjs/core'; import { DashboardViewsTabs } from '@/components'; import { withRouter } from 'react-router-dom'; import withItems from './withItems'; import withItemsActions from './withItemsActions'; import { useItemsListContext } from './ItemsListProvider'; import { compose, transfromViewsToTabs } from '@/utils'; /** * Items views tabs. */ function ItemsViewsTabs({ // #withItemsActions setItemsTableState, // #withItems itemsCurrentView, }) { const { itemsViews } = useItemsListContext(); // Mapped items views. const tabs = transfromViewsToTabs(itemsViews); // Handles the active tab change. const handleTabChange = (viewSlug) => { setItemsTableState({ viewSlug }); }; return ( ); } export default compose( withRouter, withItems(({ itemsTableState }) => ({ itemsCurrentView: itemsTableState?.viewSlug, })), withItemsActions, )(ItemsViewsTabs);