57 lines
1.3 KiB
TypeScript
57 lines
1.3 KiB
TypeScript
import Background from '../../Layout/Background';
|
||
import { useFilteredQueries } from './lib/hooks';
|
||
import { QueryList } from './QueryList';
|
||
import { min } from '@/styles/mq';
|
||
import styled from 'styled-components';
|
||
import { Collapse, Divider, Input } from 'ui/elements';
|
||
|
||
const Wrapper = styled(Background)`
|
||
padding: 4px 6px;
|
||
width: 100vw;
|
||
|
||
${min('tablet')} {
|
||
min-height: 790px;
|
||
}
|
||
|
||
${min('laptop')} {
|
||
padding: 4px 18px 10px;
|
||
width: 1280px;
|
||
}
|
||
`;
|
||
|
||
const Flex = styled.div`
|
||
display: flex;
|
||
margin-bottom: 16px;
|
||
justify-content: space-between;
|
||
gap: 10px;
|
||
`;
|
||
|
||
export function Cache() {
|
||
const { filteredQueries, setFilterString } = useFilteredQueries();
|
||
|
||
if (!filteredQueries) {
|
||
return <div>Загрузка...</div>;
|
||
}
|
||
|
||
return (
|
||
<Wrapper>
|
||
<Divider>Управление кэшем</Divider>
|
||
<Flex>
|
||
<Input
|
||
placeholder="Поиск по запросу"
|
||
allowClear
|
||
onChange={(e) => setFilterString(e.target.value)}
|
||
/>
|
||
</Flex>
|
||
<Collapse
|
||
accordion
|
||
items={Object.keys(filteredQueries).map((queryGroupName) => ({
|
||
children: <QueryList {...filteredQueries[queryGroupName]} />,
|
||
key: queryGroupName,
|
||
label: queryGroupName,
|
||
}))}
|
||
/>
|
||
</Wrapper>
|
||
);
|
||
}
|