import { useMemo } from 'react'; import { firstBy } from 'thenby'; import WebsiteChart from 'components/metrics/WebsiteChart'; import useDashboard from 'store/dashboard'; import styles from './WebsiteList.module.css'; export default function WebsiteChartList({ websites, showCharts, limit }) { const { websiteOrder } = useDashboard(); const ordered = useMemo( () => websites .map(website => ({ ...website, order: websiteOrder.indexOf(website.id) || 0 })) .sort(firstBy('order')), [websites, websiteOrder], ); return (
{ordered.map(({ id, name, domain }, index) => { return index < limit ? (
) : null; })}
); }