2020-08-31 00:29:31 +02:00
|
|
|
import React from 'react';
|
2020-09-06 02:27:01 +02:00
|
|
|
import { FormattedMessage } from 'react-intl';
|
2020-08-07 09:24:01 +02:00
|
|
|
import { useRouter } from 'next/router';
|
2020-08-21 22:43:42 +02:00
|
|
|
import WebsiteChart from 'components/metrics/WebsiteChart';
|
2020-08-12 07:24:41 +02:00
|
|
|
import Page from 'components/layout/Page';
|
|
|
|
import Button from 'components/common/Button';
|
|
|
|
import EmptyPlaceholder from 'components/common/EmptyPlaceholder';
|
2020-08-31 00:29:31 +02:00
|
|
|
import useFetch from 'hooks/useFetch';
|
2020-08-04 08:20:35 +02:00
|
|
|
import Arrow from 'assets/arrow-right.svg';
|
2020-07-30 08:25:52 +02:00
|
|
|
import styles from './WebsiteList.module.css';
|
2020-07-28 10:17:45 +02:00
|
|
|
|
|
|
|
export default function WebsiteList() {
|
2020-08-07 09:24:01 +02:00
|
|
|
const router = useRouter();
|
2020-08-31 00:29:31 +02:00
|
|
|
const { data } = useFetch('/api/websites');
|
2020-07-28 10:17:45 +02:00
|
|
|
|
2020-08-11 04:54:03 +02:00
|
|
|
if (!data) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2020-07-28 10:17:45 +02:00
|
|
|
return (
|
2020-08-06 04:04:02 +02:00
|
|
|
<Page>
|
2020-08-31 12:53:39 +02:00
|
|
|
{data.map(({ website_id, name }) => (
|
2020-08-07 11:27:12 +02:00
|
|
|
<div key={website_id} className={styles.website}>
|
2020-08-31 23:11:30 +02:00
|
|
|
<WebsiteChart websiteId={website_id} title={name} showLink />
|
2020-08-07 11:27:12 +02:00
|
|
|
</div>
|
|
|
|
))}
|
2020-08-11 04:54:03 +02:00
|
|
|
{data.length === 0 && (
|
2020-09-06 02:27:01 +02:00
|
|
|
<EmptyPlaceholder
|
|
|
|
msg={
|
|
|
|
<FormattedMessage
|
|
|
|
id="placeholder.message.no-websites-configured"
|
|
|
|
defaultMessage="You don't have any websites configured."
|
|
|
|
/>
|
|
|
|
}
|
|
|
|
>
|
2020-08-11 04:54:03 +02:00
|
|
|
<Button icon={<Arrow />} size="medium" onClick={() => router.push('/settings')}>
|
2020-09-06 02:27:01 +02:00
|
|
|
<div>
|
|
|
|
<FormattedMessage
|
|
|
|
id="placeholder.message.go-to-settings"
|
|
|
|
defaultMessage="Go to settings"
|
|
|
|
/>
|
|
|
|
</div>
|
2020-08-11 04:54:03 +02:00
|
|
|
</Button>
|
|
|
|
</EmptyPlaceholder>
|
|
|
|
)}
|
2020-08-06 04:04:02 +02:00
|
|
|
</Page>
|
2020-07-28 10:17:45 +02:00
|
|
|
);
|
|
|
|
}
|