umami/components/pages/websites/WebsiteChartList.js

51 lines
1.7 KiB
JavaScript
Raw Normal View History

import { Button, Text, Icon } from 'react-basics';
import { useMemo } from 'react';
import { firstBy } from 'thenby';
import Link from 'next/link';
import WebsiteChart from 'components/pages/websites/WebsiteChart';
2023-02-02 03:39:54 +01:00
import useDashboard from 'store/dashboard';
import styles from './WebsiteList.module.css';
import WebsiteHeader from './WebsiteHeader';
import { WebsiteMetricsBar } from './WebsiteMetricsBar';
import { useMessages, useLocale } from 'hooks';
import Icons from 'components/icons';
2023-02-02 03:39:54 +01:00
export default function WebsiteChartList({ websites, showCharts, limit }) {
const { formatMessage, labels } = useMessages();
2022-08-04 12:56:30 +02:00
const { websiteOrder } = useDashboard();
const { dir } = useLocale();
2022-08-05 06:37:18 +02:00
const ordered = useMemo(
() =>
websites
2022-11-01 07:42:37 +01:00
.map(website => ({ ...website, order: websiteOrder.indexOf(website.id) || 0 }))
.sort(firstBy('order')),
2022-08-05 06:37:18 +02:00
[websites, websiteOrder],
);
return (
2022-08-04 12:56:30 +02:00
<div>
{ordered.map(({ id }, index) => {
2023-02-02 03:39:54 +01:00
return index < limit ? (
2022-11-01 07:42:37 +01:00
<div key={id} className={styles.website}>
<WebsiteHeader websiteId={id} showLinks={false}>
<Link href={`/websites/${id}`}>
<Button variant="primary">
<Text>{formatMessage(labels.viewDetails)}</Text>
<Icon>
<Icon rotate={dir === 'rtl' ? 180 : 0}>
<Icons.ArrowRight />
</Icon>
</Icon>
</Button>
</Link>
</WebsiteHeader>
<WebsiteMetricsBar websiteId={id} />
2023-07-13 12:02:35 +02:00
{showCharts && <WebsiteChart websiteId={id} />}
2022-08-04 12:56:30 +02:00
</div>
2023-02-02 03:39:54 +01:00
) : null;
})}
2022-03-04 04:45:49 +01:00
</div>
);
}