43 lines
977 B
TypeScript
43 lines
977 B
TypeScript
'use client';
|
|
import { ReactNode } from 'react';
|
|
import WebsitesTable from 'app/(main)/settings/websites/WebsitesTable';
|
|
import DataTable from 'components/common/DataTable';
|
|
import useWebsites from 'components/hooks/queries/useWebsites';
|
|
|
|
export interface WebsitesDataTableProps {
|
|
userId?: string;
|
|
teamId?: string;
|
|
allowEdit?: boolean;
|
|
allowView?: boolean;
|
|
showActions?: boolean;
|
|
children?: ReactNode;
|
|
}
|
|
|
|
export function WebsitesDataTable({
|
|
userId,
|
|
teamId,
|
|
allowEdit = true,
|
|
allowView = true,
|
|
showActions = true,
|
|
children,
|
|
}: WebsitesDataTableProps) {
|
|
const queryResult = useWebsites({ userId, teamId });
|
|
|
|
return (
|
|
<DataTable queryResult={queryResult}>
|
|
{({ data }) => (
|
|
<WebsitesTable
|
|
data={data}
|
|
showActions={showActions}
|
|
allowEdit={allowEdit}
|
|
allowView={allowView}
|
|
>
|
|
{children}
|
|
</WebsitesTable>
|
|
)}
|
|
</DataTable>
|
|
);
|
|
}
|
|
|
|
export default WebsitesDataTable;
|