2023-02-04 17:59:52 +01:00
|
|
|
import { useState } from 'react';
|
|
|
|
import { Icons, Loading } from 'react-basics';
|
|
|
|
import { useIntl } from 'react-intl';
|
|
|
|
import Link from 'next/link';
|
2020-08-01 04:05:14 +02:00
|
|
|
import classNames from 'classnames';
|
2023-01-06 04:39:29 +01:00
|
|
|
import Page from 'components/layout/Page';
|
|
|
|
import WebsiteChart from 'components/metrics/WebsiteChart';
|
2022-12-29 00:43:22 +01:00
|
|
|
import useApi from 'hooks/useApi';
|
2023-01-06 04:39:29 +01:00
|
|
|
import usePageQuery from 'hooks/usePageQuery';
|
2022-05-06 04:04:28 +02:00
|
|
|
import { DEFAULT_ANIMATION_DURATION } from 'lib/constants';
|
2023-02-08 01:29:25 +01:00
|
|
|
import { labels } from 'components/messages';
|
2022-03-02 06:13:15 +01:00
|
|
|
import styles from './WebsiteDetails.module.css';
|
2023-02-04 17:59:52 +01:00
|
|
|
import WebsiteTableView from './WebsiteTableView';
|
|
|
|
import WebsiteMenuView from './WebsiteMenuView';
|
2020-09-17 06:55:32 +02:00
|
|
|
|
2020-10-11 11:29:55 +02:00
|
|
|
export default function WebsiteDetails({ websiteId }) {
|
2023-02-04 17:59:52 +01:00
|
|
|
const { formatMessage } = useIntl();
|
2022-12-29 00:43:22 +01:00
|
|
|
const { get, useQuery } = useApi();
|
2023-02-04 17:59:52 +01:00
|
|
|
const { data, isLoading, error } = useQuery(['websites', websiteId], () =>
|
2022-12-29 00:43:22 +01:00
|
|
|
get(`/websites/${websiteId}`),
|
|
|
|
);
|
2020-08-04 08:20:35 +02:00
|
|
|
const [chartLoaded, setChartLoaded] = useState(false);
|
2023-02-04 17:59:52 +01:00
|
|
|
|
2020-09-17 06:55:32 +02:00
|
|
|
const {
|
2020-09-26 07:31:18 +02:00
|
|
|
resolve,
|
|
|
|
query: { view },
|
|
|
|
} = usePageQuery();
|
2020-09-17 06:55:32 +02:00
|
|
|
|
2020-08-04 08:20:35 +02:00
|
|
|
function handleDataLoad() {
|
2020-08-31 23:11:30 +02:00
|
|
|
if (!chartLoaded) {
|
2020-10-10 05:37:24 +02:00
|
|
|
setTimeout(() => setChartLoaded(true), DEFAULT_ANIMATION_DURATION);
|
2020-08-31 23:11:30 +02:00
|
|
|
}
|
2020-08-01 04:05:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
2023-02-04 17:59:52 +01:00
|
|
|
<Page loading={isLoading} error={error}>
|
2022-12-10 23:26:52 +01:00
|
|
|
<WebsiteChart
|
|
|
|
websiteId={websiteId}
|
2023-02-04 17:59:52 +01:00
|
|
|
title={data?.name}
|
|
|
|
domain={data?.domain}
|
2022-12-10 23:26:52 +01:00
|
|
|
onDataLoad={handleDataLoad}
|
|
|
|
showLink={false}
|
2023-02-09 08:14:11 +01:00
|
|
|
stickyHeader={true}
|
2022-12-10 23:26:52 +01:00
|
|
|
/>
|
2023-02-04 17:59:52 +01:00
|
|
|
{!chartLoaded && <Loading icon="dots" />}
|
|
|
|
{chartLoaded && (
|
2022-12-09 08:43:43 +01:00
|
|
|
<>
|
2023-02-04 17:59:52 +01:00
|
|
|
{!view && <WebsiteTableView websiteId={websiteId} />}
|
|
|
|
{view && <WebsiteMenuView websiteId={websiteId} />}
|
2022-12-09 08:43:43 +01:00
|
|
|
</>
|
2020-08-04 08:20:35 +02:00
|
|
|
)}
|
2020-08-06 04:04:02 +02:00
|
|
|
</Page>
|
2020-08-01 04:05:14 +02:00
|
|
|
);
|
|
|
|
}
|