import { useVegaWallet } from '@vegaprotocol/wallet'; import { FillsManager } from '@vegaprotocol/fills'; import { create } from 'zustand'; import { persist } from 'zustand/middleware'; import { useDataGridEvents } from '@vegaprotocol/datagrid'; import { t } from '@vegaprotocol/i18n'; import { Splash } from '@vegaprotocol/ui-toolkit'; import type { DataGridSlice } from '../../stores/datagrid-store-slice'; import { createDataGridSlice } from '../../stores/datagrid-store-slice'; import { useMarketClickHandler } from '../../lib/hooks/use-market-click-handler'; export const FillsContainer = () => { const onMarketClick = useMarketClickHandler(true); const { pubKey } = useVegaWallet(); const gridStore = useFillsStore((store) => store.gridStore); const updateGridStore = useFillsStore((store) => store.updateGridStore); const gridStoreCallbacks = useDataGridEvents(gridStore, (colState) => { updateGridStore(colState); }); if (!pubKey) { return (

{t('Please connect Vega wallet')}

); } return ( ); }; const useFillsStore = create()( persist(createDataGridSlice, { name: 'vega_fills_store', }) );