2020-08-31 23:11:30 +02:00
|
|
|
import React, { useMemo } from 'react';
|
2020-08-02 06:20:52 +02:00
|
|
|
import classNames from 'classnames';
|
2020-07-28 10:17:45 +02:00
|
|
|
import PageviewsChart from './PageviewsChart';
|
2020-07-31 05:11:43 +02:00
|
|
|
import MetricsBar from './MetricsBar';
|
2020-09-18 07:52:20 +02:00
|
|
|
import WebsiteHeader from './WebsiteHeader';
|
2020-08-31 00:29:31 +02:00
|
|
|
import DateFilter from 'components/common/DateFilter';
|
|
|
|
import StickyHeader from 'components/helpers/StickyHeader';
|
2022-01-14 09:04:07 +01:00
|
|
|
import ErrorMessage from 'components/common/ErrorMessage';
|
|
|
|
import FilterTags from 'components/metrics/FilterTags';
|
2020-08-31 00:29:31 +02:00
|
|
|
import useFetch from 'hooks/useFetch';
|
2020-09-18 07:52:20 +02:00
|
|
|
import useDateRange from 'hooks/useDateRange';
|
2020-09-19 19:35:05 +02:00
|
|
|
import useTimezone from 'hooks/useTimezone';
|
2020-09-26 07:31:18 +02:00
|
|
|
import usePageQuery from 'hooks/usePageQuery';
|
2022-03-02 06:13:15 +01:00
|
|
|
import { getDateArray, getDateLength, getDateRangeValues } from 'lib/date';
|
|
|
|
import useApi from 'hooks/useApi';
|
2020-08-04 03:12:28 +02:00
|
|
|
import styles from './WebsiteChart.module.css';
|
2020-07-28 10:17:45 +02:00
|
|
|
|
2020-08-01 04:05:14 +02:00
|
|
|
export default function WebsiteChart({
|
|
|
|
websiteId,
|
2020-08-31 23:11:30 +02:00
|
|
|
title,
|
2020-10-21 15:44:43 +02:00
|
|
|
domain,
|
2020-08-04 08:20:35 +02:00
|
|
|
stickyHeader = false,
|
2020-08-31 23:11:30 +02:00
|
|
|
showLink = false,
|
2022-01-14 09:04:07 +01:00
|
|
|
showChart = true,
|
2020-08-04 08:20:35 +02:00
|
|
|
onDataLoad = () => {},
|
2020-08-01 04:05:14 +02:00
|
|
|
}) {
|
2020-09-19 19:35:05 +02:00
|
|
|
const [dateRange, setDateRange] = useDateRange(websiteId);
|
2020-09-01 00:02:32 +02:00
|
|
|
const { startDate, endDate, unit, value, modified } = dateRange;
|
2020-09-19 19:35:05 +02:00
|
|
|
const [timezone] = useTimezone();
|
2020-09-26 07:31:18 +02:00
|
|
|
const {
|
|
|
|
router,
|
|
|
|
resolve,
|
2022-04-10 12:51:43 +02:00
|
|
|
query: { url, referrer, os, browser, device, country },
|
2020-09-26 07:31:18 +02:00
|
|
|
} = usePageQuery();
|
2022-03-02 06:13:15 +01:00
|
|
|
const { get } = useApi();
|
2020-08-31 23:11:30 +02:00
|
|
|
|
2020-10-04 07:36:51 +02:00
|
|
|
const { data, loading, error } = useFetch(
|
2022-02-23 08:52:31 +01:00
|
|
|
`/website/${websiteId}/pageviews`,
|
2020-08-31 00:29:31 +02:00
|
|
|
{
|
2020-10-09 21:39:03 +02:00
|
|
|
params: {
|
|
|
|
start_at: +startDate,
|
|
|
|
end_at: +endDate,
|
|
|
|
unit,
|
|
|
|
tz: timezone,
|
|
|
|
url,
|
2022-03-20 22:10:41 +01:00
|
|
|
referrer,
|
2022-04-10 12:51:43 +02:00
|
|
|
os,
|
|
|
|
browser,
|
|
|
|
device,
|
|
|
|
country,
|
2020-10-09 21:39:03 +02:00
|
|
|
},
|
|
|
|
onDataLoad,
|
2020-08-31 00:29:31 +02:00
|
|
|
},
|
2022-04-10 12:51:43 +02:00
|
|
|
[modified, url, referrer, os, browser, device, country],
|
2020-08-31 00:29:31 +02:00
|
|
|
);
|
2020-07-30 10:08:21 +02:00
|
|
|
|
2020-10-09 08:26:05 +02:00
|
|
|
const chartData = useMemo(() => {
|
2020-07-29 04:04:45 +02:00
|
|
|
if (data) {
|
2020-10-09 08:26:05 +02:00
|
|
|
return {
|
|
|
|
pageviews: getDateArray(data.pageviews, startDate, endDate, unit),
|
|
|
|
sessions: getDateArray(data.sessions, startDate, endDate, unit),
|
|
|
|
};
|
2020-07-29 04:04:45 +02:00
|
|
|
}
|
2020-10-09 08:26:05 +02:00
|
|
|
return { pageviews: [], sessions: [] };
|
2022-01-21 04:54:58 +01:00
|
|
|
}, [data, startDate, endDate, unit]);
|
2020-07-28 10:17:45 +02:00
|
|
|
|
2021-11-22 07:00:14 +01:00
|
|
|
function handleCloseFilter(param) {
|
|
|
|
router.push(resolve({ [param]: undefined }));
|
2020-09-26 07:31:18 +02:00
|
|
|
}
|
|
|
|
|
2022-01-14 09:04:07 +01:00
|
|
|
async function handleDateChange(value) {
|
|
|
|
if (value === 'all') {
|
2022-03-02 06:13:15 +01:00
|
|
|
const { data, ok } = await get(`/website/${websiteId}`);
|
2022-01-14 09:04:07 +01:00
|
|
|
if (ok) {
|
|
|
|
setDateRange({ value, ...getDateRangeValues(new Date(data.created_at), Date.now()) });
|
|
|
|
}
|
2022-01-21 04:54:58 +01:00
|
|
|
} else {
|
|
|
|
setDateRange(value);
|
2022-01-14 09:04:07 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-29 04:04:45 +02:00
|
|
|
return (
|
2020-09-27 09:51:29 +02:00
|
|
|
<div className={styles.container}>
|
2020-10-21 15:44:43 +02:00
|
|
|
<WebsiteHeader websiteId={websiteId} title={title} domain={domain} showLink={showLink} />
|
2020-08-10 00:13:38 +02:00
|
|
|
<div className={classNames(styles.header, 'row')}>
|
|
|
|
<StickyHeader
|
|
|
|
className={classNames(styles.metrics, 'col row')}
|
|
|
|
stickyClassName={styles.sticky}
|
|
|
|
enabled={stickyHeader}
|
|
|
|
>
|
2022-04-10 12:51:43 +02:00
|
|
|
<FilterTags
|
|
|
|
params={{ url, referrer, os, browser, device, country }}
|
|
|
|
onClick={handleCloseFilter}
|
|
|
|
/>
|
2020-09-13 20:33:57 +02:00
|
|
|
<div className="col-12 col-lg-9">
|
2020-10-11 11:29:55 +02:00
|
|
|
<MetricsBar websiteId={websiteId} />
|
2020-09-13 20:33:57 +02:00
|
|
|
</div>
|
|
|
|
<div className={classNames(styles.filter, 'col-12 col-lg-3')}>
|
|
|
|
<DateFilter
|
|
|
|
value={value}
|
|
|
|
startDate={startDate}
|
|
|
|
endDate={endDate}
|
2022-01-14 09:04:07 +01:00
|
|
|
onChange={handleDateChange}
|
2020-09-13 20:33:57 +02:00
|
|
|
/>
|
|
|
|
</div>
|
2020-08-10 00:13:38 +02:00
|
|
|
</StickyHeader>
|
|
|
|
</div>
|
2020-08-02 06:20:52 +02:00
|
|
|
<div className="row">
|
2021-11-22 07:00:14 +01:00
|
|
|
<div className={classNames(styles.chart, 'col')}>
|
2020-10-04 07:36:51 +02:00
|
|
|
{error && <ErrorMessage />}
|
2022-01-14 09:04:07 +01:00
|
|
|
{showChart && (
|
2021-04-28 10:52:06 +02:00
|
|
|
<PageviewsChart
|
|
|
|
websiteId={websiteId}
|
|
|
|
data={chartData}
|
|
|
|
unit={unit}
|
|
|
|
records={getDateLength(startDate, endDate, unit)}
|
|
|
|
loading={loading}
|
|
|
|
/>
|
|
|
|
)}
|
2020-08-28 08:45:37 +02:00
|
|
|
</div>
|
2020-07-30 10:08:21 +02:00
|
|
|
</div>
|
2020-09-27 09:51:29 +02:00
|
|
|
</div>
|
2020-07-29 04:04:45 +02:00
|
|
|
);
|
2020-07-28 10:17:45 +02:00
|
|
|
}
|