4adaeea40a
Co-authored-by: Dariusz Majcherczyk <dariusz.majcherczyk@gmail.com> Co-authored-by: Matthew Russell <mattrussell36@gmail.com>
68 lines
1.6 KiB
TypeScript
68 lines
1.6 KiB
TypeScript
import { act, renderHook } from '@testing-library/react';
|
|
import { STORAGE_KEY, useOrderListGridState } from './orders-container';
|
|
import { Filter } from '@vegaprotocol/orders';
|
|
import { OrderType } from '@vegaprotocol/types';
|
|
|
|
describe('useOrderListGridState', () => {
|
|
afterAll(() => {
|
|
localStorage.clear();
|
|
});
|
|
|
|
const setup = (filter: Filter | undefined) => {
|
|
return renderHook(() => useOrderListGridState(filter));
|
|
};
|
|
|
|
it.each(Object.values(Filter))(
|
|
'sets and stores column state and filters for %s',
|
|
(filter) => {
|
|
const filterModel = {
|
|
type: {
|
|
value: [OrderType.TYPE_LIMIT],
|
|
},
|
|
};
|
|
const { result } = setup(filter);
|
|
|
|
act(() => {
|
|
result.current.updateGridState(filter, {
|
|
filterModel,
|
|
});
|
|
});
|
|
|
|
expect(result.current.gridState).toEqual({
|
|
columnState: undefined,
|
|
filterModel,
|
|
});
|
|
|
|
const columnState = [{ colId: 'status', width: 200 }];
|
|
|
|
act(() => {
|
|
result.current.updateGridState(filter, {
|
|
columnState,
|
|
});
|
|
});
|
|
|
|
expect(result.current.gridState).toEqual({
|
|
columnState,
|
|
filterModel,
|
|
});
|
|
|
|
const storeKeyMap = {
|
|
[Filter.Open]: 'open',
|
|
[Filter.Rejected]: 'rejected',
|
|
[Filter.Closed]: 'closed',
|
|
};
|
|
|
|
expect(JSON.parse(localStorage.getItem(STORAGE_KEY) || '')).toMatchObject(
|
|
{
|
|
state: {
|
|
[storeKeyMap[filter]]: {
|
|
columnState,
|
|
filterModel, // no need to check that status is set, hook will return status
|
|
},
|
|
},
|
|
}
|
|
);
|
|
}
|
|
);
|
|
});
|