// @ts-nocheck import React from 'react'; import { DashboardPageContent } from '@/components'; import WarehouseTransfersActionsBar from './WarehouseTransfersActionsBar'; import WarehouseTransfersDataTable from './WarehouseTransfersDataTable'; import withWarehouseTransfers from './withWarehouseTransfers'; import withWarehouseTransfersActions from './withWarehouseTransfersActions'; import { WarehouseTransfersListProvider } from './WarehouseTransfersListProvider'; import { transformTableStateToQuery, compose } from '@/utils'; function WarehouseTransfersList({ // #withWarehouseTransfers warehouseTransferTableState, warehouseTransferTableStateChanged, // #withWarehouseTransfersActions resetWarehouseTransferTableState, }) { // Resets the warehouse transfer table state once the page unmount. React.useEffect( () => () => { resetWarehouseTransferTableState(); }, [resetWarehouseTransferTableState], ); return ( ); } export default compose( withWarehouseTransfersActions, withWarehouseTransfers( ({ warehouseTransferTableState, warehouseTransferTableStateChanged }) => ({ warehouseTransferTableState, warehouseTransferTableStateChanged, }), ), )(WarehouseTransfersList);