32 lines
738 B
TypeScript
32 lines
738 B
TypeScript
import { WebsitesTable } from './WebsitesTable';
|
|
import { DataGrid } from '@/components/common/DataGrid';
|
|
import { useUserWebsitesQuery } from '@/components/hooks';
|
|
|
|
export function WebsitesDataTable({
|
|
teamId,
|
|
allowEdit = true,
|
|
allowView = true,
|
|
showActions = true,
|
|
}: {
|
|
teamId?: string;
|
|
allowEdit?: boolean;
|
|
allowView?: boolean;
|
|
showActions?: boolean;
|
|
}) {
|
|
const queryResult = useUserWebsitesQuery({ teamId });
|
|
|
|
return (
|
|
<DataGrid query={queryResult} allowSearch allowPaging>
|
|
{({ data }) => (
|
|
<WebsitesTable
|
|
teamId={teamId}
|
|
data={data}
|
|
showActions={showActions}
|
|
allowEdit={allowEdit}
|
|
allowView={allowView}
|
|
/>
|
|
)}
|
|
</DataGrid>
|
|
);
|
|
}
|