mirror of
https://github.com/umami-software/umami.git
synced 2026-02-12 08:37:13 +01:00
68 lines
2.1 KiB
TypeScript
68 lines
2.1 KiB
TypeScript
import { ReactNode } from 'react';
|
|
import { Row, Text, Icon, DataTable, DataColumn, MenuItem } from '@umami/react-zen';
|
|
import { useMessages, useNavigation } from '@/components/hooks';
|
|
import { MenuButton } from '@/components/input/MenuButton';
|
|
import { Eye, SquarePen } from '@/components/icons';
|
|
import { Empty } from '@/components/common/Empty';
|
|
|
|
export function WebsitesTable({
|
|
data = [],
|
|
showActions,
|
|
allowEdit,
|
|
allowView,
|
|
renderLink,
|
|
}: {
|
|
data: Record<string, any>[];
|
|
showActions?: boolean;
|
|
allowEdit?: boolean;
|
|
allowView?: boolean;
|
|
renderLink?: (row: any) => ReactNode;
|
|
}) {
|
|
const { formatMessage, labels } = useMessages();
|
|
const { renderUrl } = useNavigation();
|
|
|
|
if (data.length === 0) {
|
|
return <Empty />;
|
|
}
|
|
|
|
return (
|
|
<DataTable data={data}>
|
|
<DataColumn id="name" label={formatMessage(labels.name)}>
|
|
{renderLink}
|
|
</DataColumn>
|
|
<DataColumn id="domain" label={formatMessage(labels.domain)} />
|
|
{showActions && (
|
|
<DataColumn id="action" label=" " align="end">
|
|
{(row: any) => {
|
|
const websiteId = row.id;
|
|
|
|
return (
|
|
<MenuButton>
|
|
{allowView && (
|
|
<MenuItem href={renderUrl(`/websites/${websiteId}`)}>
|
|
<Row alignItems="center" gap>
|
|
<Icon data-test="link-button-view">
|
|
<Eye />
|
|
</Icon>
|
|
<Text>{formatMessage(labels.view)}</Text>
|
|
</Row>
|
|
</MenuItem>
|
|
)}
|
|
{allowEdit && (
|
|
<MenuItem href={renderUrl(`/websites/${websiteId}/settings`)}>
|
|
<Row alignItems="center" gap>
|
|
<Icon data-test="link-button-edit">
|
|
<SquarePen />
|
|
</Icon>
|
|
<Text>{formatMessage(labels.edit)}</Text>
|
|
</Row>
|
|
</MenuItem>
|
|
)}
|
|
</MenuButton>
|
|
);
|
|
}}
|
|
</DataColumn>
|
|
)}
|
|
</DataTable>
|
|
);
|
|
}
|