mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 17:55:08 +01:00
164 lines
5.2 KiB
JavaScript
164 lines
5.2 KiB
JavaScript
import React, { useEffect, useState } from 'react';
|
|
import classNames from 'classnames';
|
|
import WebsiteChart from 'components/metrics/WebsiteChart';
|
|
import WorldMap from 'components/common/WorldMap';
|
|
import Page from 'components/layout/Page';
|
|
import WebsiteHeader from 'components/metrics/WebsiteHeader';
|
|
import MenuLayout from 'components/layout/MenuLayout';
|
|
import Button from 'components/common/Button';
|
|
import { getDateRange } from 'lib/date';
|
|
import { get } from 'lib/web';
|
|
import Arrow from 'assets/arrow-right.svg';
|
|
import styles from './WebsiteDetails.module.css';
|
|
import PagesTable from './metrics/PagesTable';
|
|
import ReferrersTable from './metrics/ReferrersTable';
|
|
import BrowsersTable from './metrics/BrowsersTable';
|
|
import OSTable from './metrics/OSTable';
|
|
import DevicesTable from './metrics/DevicesTable';
|
|
import CountriesTable from './metrics/CountriesTable';
|
|
import EventsTable from './metrics/EventsTable';
|
|
|
|
export default function WebsiteDetails({ websiteId, defaultDateRange = '7day' }) {
|
|
const [data, setData] = useState();
|
|
const [chartLoaded, setChartLoaded] = useState(false);
|
|
const [countryData, setCountryData] = useState();
|
|
const [dateRange, setDateRange] = useState(getDateRange(defaultDateRange));
|
|
const [expand, setExpand] = useState();
|
|
const [showEvents, setShowEvents] = useState(false);
|
|
const { startDate, endDate } = dateRange;
|
|
|
|
const BackButton = () => (
|
|
<Button
|
|
className={styles.backButton}
|
|
icon={<Arrow />}
|
|
size="xsmall"
|
|
onClick={() => setExpand(null)}
|
|
>
|
|
<div>Back</div>
|
|
</Button>
|
|
);
|
|
|
|
const menuOptions = [
|
|
{
|
|
render: BackButton,
|
|
},
|
|
{ label: 'Pages', value: 'url', component: PagesTable },
|
|
{ label: 'Referrers', value: 'referrer', component: ReferrersTable },
|
|
{ label: 'Browsers', value: 'browser', component: BrowsersTable },
|
|
{ label: 'Operating system', value: 'os', component: OSTable },
|
|
{ label: 'Devices', value: 'device', component: DevicesTable },
|
|
{
|
|
label: 'Countries',
|
|
value: 'country',
|
|
component: props => <CountriesTable {...props} onDataLoad={data => setCountryData(data)} />,
|
|
},
|
|
{ label: 'Events', value: 'event', component: EventsTable },
|
|
];
|
|
|
|
const tableProps = {
|
|
websiteId,
|
|
startDate,
|
|
endDate,
|
|
limit: 10,
|
|
onExpand: handleExpand,
|
|
websiteDomain: data?.domain,
|
|
};
|
|
|
|
const DetailsComponent = expand?.component;
|
|
|
|
async function loadData() {
|
|
setData(await get(`/api/website/${websiteId}`));
|
|
}
|
|
|
|
function handleDataLoad() {
|
|
if (!chartLoaded) setTimeout(() => setChartLoaded(true), 300);
|
|
}
|
|
|
|
function handleDateChange(values) {
|
|
setTimeout(() => setDateRange(values), 300);
|
|
}
|
|
|
|
function handleExpand(value) {
|
|
setExpand(menuOptions.find(e => e.value === value));
|
|
}
|
|
|
|
function handleMenuSelect(value) {
|
|
setExpand(menuOptions.find(e => e.value === value));
|
|
}
|
|
|
|
useEffect(() => {
|
|
if (websiteId) {
|
|
loadData();
|
|
}
|
|
}, [websiteId]);
|
|
|
|
if (!data) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<Page>
|
|
<div className="row">
|
|
<div className={classNames(styles.chart, 'col')}>
|
|
<WebsiteHeader websiteId={websiteId} name={data.name} showLink={false} />
|
|
<WebsiteChart
|
|
websiteId={websiteId}
|
|
onDataLoad={handleDataLoad}
|
|
onDateChange={handleDateChange}
|
|
stickyHeader
|
|
/>
|
|
</div>
|
|
</div>
|
|
{chartLoaded && !expand && (
|
|
<>
|
|
<div className={classNames(styles.row, 'row')}>
|
|
<div className="col-md-12 col-lg-6">
|
|
<PagesTable {...tableProps} />
|
|
</div>
|
|
<div className="col-md-12 col-lg-6">
|
|
<ReferrersTable {...tableProps} />
|
|
</div>
|
|
</div>
|
|
<div className={classNames(styles.row, 'row')}>
|
|
<div className="col-md-12 col-lg-4">
|
|
<BrowsersTable {...tableProps} />
|
|
</div>
|
|
<div className="col-md-12 col-lg-4">
|
|
<OSTable {...tableProps} />
|
|
</div>
|
|
<div className="col-md-12 col-lg-4">
|
|
<DevicesTable {...tableProps} />
|
|
</div>
|
|
</div>
|
|
<div className={classNames(styles.row, 'row')}>
|
|
<div className="col-12 col-md-12 col-lg-8">
|
|
<WorldMap data={countryData} />
|
|
</div>
|
|
<div className="col-12 col-md-12 col-lg-4">
|
|
<CountriesTable {...tableProps} onDataLoad={data => setCountryData(data)} />
|
|
</div>
|
|
</div>
|
|
<div className={classNames(styles.row, 'row', { [styles.hidden]: !showEvents })}>
|
|
<div className="col-12 col-md-12 col-lg-4">
|
|
<EventsTable {...tableProps} onDataLoad={data => setShowEvents(data.length > 0)} />
|
|
</div>
|
|
<div className="col-12 col-md-12 col-lg-8">events</div>
|
|
</div>
|
|
</>
|
|
)}
|
|
{expand && (
|
|
<MenuLayout
|
|
className={styles.expand}
|
|
menuClassName={styles.menu}
|
|
optionClassName={styles.option}
|
|
menu={menuOptions}
|
|
selectedOption={expand.value}
|
|
onMenuSelect={handleMenuSelect}
|
|
>
|
|
<DetailsComponent {...tableProps} limit={false} />
|
|
</MenuLayout>
|
|
)}
|
|
</Page>
|
|
);
|
|
}
|