mirror of
https://github.com/umami-software/umami.git
synced 2025-12-06 01:18:00 +01:00
51 lines
1.8 KiB
TypeScript
51 lines
1.8 KiB
TypeScript
import { DataColumn, DataTable, type DataTableProps, Row } from '@umami/react-zen';
|
|
import Link from 'next/link';
|
|
import { DateDistance } from '@/components/common/DateDistance';
|
|
import { ExternalLink } from '@/components/common/ExternalLink';
|
|
import { useMessages, useNavigation, useSlug } from '@/components/hooks';
|
|
import { LinkDeleteButton } from './LinkDeleteButton';
|
|
import { LinkEditButton } from './LinkEditButton';
|
|
|
|
export function LinksTable(props: DataTableProps) {
|
|
const { formatMessage, labels } = useMessages();
|
|
const { websiteId, renderUrl } = useNavigation();
|
|
const { getSlugUrl } = useSlug('link');
|
|
|
|
return (
|
|
<DataTable {...props}>
|
|
<DataColumn id="name" label={formatMessage(labels.name)}>
|
|
{({ id, name }: any) => {
|
|
return <Link href={renderUrl(`/links/${id}`)}>{name}</Link>;
|
|
}}
|
|
</DataColumn>
|
|
<DataColumn id="slug" label={formatMessage(labels.link)}>
|
|
{({ slug }: any) => {
|
|
const url = getSlugUrl(slug);
|
|
return (
|
|
<ExternalLink href={url} prefetch={false}>
|
|
{url}
|
|
</ExternalLink>
|
|
);
|
|
}}
|
|
</DataColumn>
|
|
<DataColumn id="url" label={formatMessage(labels.destinationUrl)}>
|
|
{({ url }: any) => {
|
|
return <ExternalLink href={url}>{url}</ExternalLink>;
|
|
}}
|
|
</DataColumn>
|
|
<DataColumn id="created" label={formatMessage(labels.created)} width="200px">
|
|
{(row: any) => <DateDistance date={new Date(row.createdAt)} />}
|
|
</DataColumn>
|
|
<DataColumn id="action" align="end" width="100px">
|
|
{({ id, name }: any) => {
|
|
return (
|
|
<Row>
|
|
<LinkEditButton linkId={id} />
|
|
<LinkDeleteButton linkId={id} websiteId={websiteId} name={name} />
|
|
</Row>
|
|
);
|
|
}}
|
|
</DataColumn>
|
|
</DataTable>
|
|
);
|
|
}
|