Removed filters from pages.

This commit is contained in:
Mike Cao 2023-03-29 23:29:37 -07:00
parent a026fc97fc
commit 358519dddd
4 changed files with 6 additions and 28 deletions

View File

@ -1,38 +1,16 @@
import { useState } from 'react';
import FilterLink from 'components/common/FilterLink';
import FilterButtons from 'components/common/FilterButtons';
import { urlFilter } from 'lib/filters';
import MetricsTable from './MetricsTable';
import { FILTER_COMBINED, FILTER_RAW } from 'lib/constants';
import useMessages from 'hooks/useMessages';
const filters = {
[FILTER_RAW]: null,
[FILTER_COMBINED]: urlFilter,
};
export default function PagesTable({ websiteId, showFilters, ...props }) {
const [filter, setFilter] = useState(FILTER_COMBINED);
export default function PagesTable({ websiteId, ...props }) {
const { formatMessage, labels } = useMessages();
const buttons = [
{
label: formatMessage(labels.filterCombined),
key: FILTER_COMBINED,
},
{
label: formatMessage(labels.filterRaw),
key: FILTER_RAW,
},
];
const renderLink = ({ x: url }) => {
return <FilterLink id="url" value={url} />;
};
return (
<>
{showFilters && <FilterButtons items={buttons} selectedKey={filter} onSelect={setFilter} />}
<MetricsTable
title={formatMessage(labels.pages)}
type="url"

View File

@ -24,12 +24,12 @@
min-height: 90px;
margin-bottom: 20px;
background: var(--base50);
z-index: var(--z-index300);
}
.sticky {
position: sticky;
top: -1px;
z-index: 2;
}
.isSticky {

View File

@ -58,7 +58,7 @@ async function relationalQuery(
${filterQuery}
group by 1
order by 2 desc
limit 200`,
limit 100`,
params,
);
}
@ -93,7 +93,7 @@ async function clickhouseQuery(
${filterQuery}
group by x
order by y desc
limit 200`,
limit 100`,
params,
);
}

View File

@ -44,7 +44,7 @@ async function relationalQuery(
)
group by 1
order by 2 desc
limit 200`,
limit 100`,
params,
);
}
@ -70,7 +70,7 @@ async function clickhouseQuery(
${filterQuery}
group by x
order by y desc
limit 200`,
limit 100`,
params,
);
}