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'; 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'; export default function WebsiteChartList({ websites, showCharts, limit }) { const { formatMessage, labels } = useMessages(); const { websiteOrder } = useDashboard(); const { dir } = useLocale(); const ordered = useMemo( () => websites .map(website => ({ ...website, order: websiteOrder.indexOf(website.id) || 0 })) .sort(firstBy('order')), [websites, websiteOrder], ); return (
{ordered.map(({ id }, index) => { return index < limit ? (
) : null; })}
); }