2022-07-24 08:02:47 +02:00
|
|
|
import { useMemo } from 'react';
|
2022-08-30 05:57:34 +02:00
|
|
|
import { firstBy } from 'thenby';
|
2023-02-02 03:39:54 +01:00
|
|
|
import WebsiteChart from 'components/metrics/WebsiteChart';
|
|
|
|
import useDashboard from 'store/dashboard';
|
|
|
|
import styles from './WebsiteList.module.css';
|
2022-07-24 08:02:47 +02:00
|
|
|
|
2023-02-02 03:39:54 +01:00
|
|
|
export default function WebsiteChartList({ websites, showCharts, limit }) {
|
2022-08-04 12:56:30 +02:00
|
|
|
const { websiteOrder } = useDashboard();
|
2020-07-28 10:17:45 +02:00
|
|
|
|
2022-08-05 06:37:18 +02:00
|
|
|
const ordered = useMemo(
|
2022-08-30 05:57:34 +02:00
|
|
|
() =>
|
|
|
|
websites
|
2022-11-01 07:42:37 +01:00
|
|
|
.map(website => ({ ...website, order: websiteOrder.indexOf(website.id) || 0 }))
|
2022-08-30 05:57:34 +02:00
|
|
|
.sort(firstBy('order')),
|
2022-08-05 06:37:18 +02:00
|
|
|
[websites, websiteOrder],
|
|
|
|
);
|
2022-07-25 08:25:04 +02:00
|
|
|
|
2021-04-28 10:52:06 +02:00
|
|
|
return (
|
2022-08-04 12:56:30 +02:00
|
|
|
<div>
|
2023-02-02 03:39:54 +01:00
|
|
|
{ordered.map(({ id, name, domain }, index) => {
|
|
|
|
return index < limit ? (
|
2022-11-01 07:42:37 +01:00
|
|
|
<div key={id} className={styles.website}>
|
2022-08-04 12:56:30 +02:00
|
|
|
<WebsiteChart
|
2022-11-01 07:42:37 +01:00
|
|
|
websiteId={id}
|
2023-03-31 14:55:28 +02:00
|
|
|
name={name}
|
2022-08-04 12:56:30 +02:00
|
|
|
domain={domain}
|
|
|
|
showChart={showCharts}
|
2023-02-02 03:39:54 +01:00
|
|
|
showDetailsButton={true}
|
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>
|
2020-07-28 10:17:45 +02:00
|
|
|
);
|
|
|
|
}
|