umami/components/metrics/RealtimeLog.js

188 lines
5.0 KiB
JavaScript
Raw Normal View History

2020-10-13 01:31:51 +02:00
import React, { useMemo, useState } from 'react';
2020-10-14 23:16:00 +02:00
import { FormattedMessage, useIntl } from 'react-intl';
2020-10-09 13:21:59 +02:00
import { FixedSizeList } from 'react-window';
2020-10-09 11:56:15 +02:00
import firstBy from 'thenby';
2020-10-09 13:21:59 +02:00
import Icon from 'components/common/Icon';
2020-10-09 21:39:03 +02:00
import Tag from 'components/common/Tag';
2020-10-13 01:31:51 +02:00
import Dot from 'components/common/Dot';
import FilterButtons from 'components/common/FilterButtons';
2021-02-27 07:41:05 +01:00
import NoData from 'components/common/NoData';
2022-02-22 22:31:37 +01:00
import { getDeviceMessage, labels } from 'components/messages';
2020-10-09 13:21:59 +02:00
import useLocale from 'hooks/useLocale';
import useCountryNames from 'hooks/useCountryNames';
import { BROWSERS } from 'lib/constants';
import Bolt from 'assets/bolt.svg';
import Visitor from 'assets/visitor.svg';
import Eye from 'assets/eye.svg';
import { stringToColor } from 'lib/format';
2021-02-27 07:41:05 +01:00
import { dateFormat } from 'lib/date';
2020-10-09 11:56:15 +02:00
import styles from './RealtimeLog.module.css';
2020-10-13 01:31:51 +02:00
const TYPE_ALL = 0;
const TYPE_PAGEVIEW = 1;
const TYPE_SESSION = 2;
const TYPE_EVENT = 3;
2020-10-10 02:58:27 +02:00
const TYPE_ICONS = {
[TYPE_PAGEVIEW]: <Eye />,
[TYPE_SESSION]: <Visitor />,
[TYPE_EVENT]: <Bolt />,
};
2020-11-07 02:43:04 +01:00
export default function RealtimeLog({ data, websites, websiteId }) {
2020-10-14 23:16:00 +02:00
const intl = useIntl();
const { locale } = useLocale();
2020-10-09 11:56:15 +02:00
const countryNames = useCountryNames(locale);
2020-10-13 01:31:51 +02:00
const [filter, setFilter] = useState(TYPE_ALL);
2020-10-09 11:56:15 +02:00
const logs = useMemo(() => {
const { pageviews, sessions, events } = data;
2020-10-13 01:31:51 +02:00
const logs = [...pageviews, ...sessions, ...events].sort(firstBy('created_at', -1));
if (filter) {
return logs.filter(row => getType(row) === filter);
}
return logs;
}, [data, filter]);
2020-10-09 11:56:15 +02:00
const uuids = useMemo(() => {
return data.sessions.reduce((obj, { session_id, session_uuid }) => {
obj[session_id] = session_uuid;
return obj;
}, {});
}, [data]);
2020-10-13 01:31:51 +02:00
const buttons = [
{
label: <FormattedMessage id="label.all" defaultMessage="All" />,
value: TYPE_ALL,
},
{
2020-10-14 03:24:27 +02:00
label: <FormattedMessage id="metrics.views" defaultMessage="Views" />,
2020-10-13 01:31:51 +02:00
value: TYPE_PAGEVIEW,
},
{
label: <FormattedMessage id="metrics.visitors" defaultMessage="Visitors" />,
value: TYPE_SESSION,
},
{
label: <FormattedMessage id="metrics.events" defaultMessage="Events" />,
value: TYPE_EVENT,
},
];
2020-10-09 11:56:15 +02:00
function getType({ view_id, session_id, event_id }) {
if (event_id) {
2020-10-10 02:58:27 +02:00
return TYPE_EVENT;
2020-10-09 11:56:15 +02:00
}
if (view_id) {
2020-10-10 02:58:27 +02:00
return TYPE_PAGEVIEW;
2020-10-09 11:56:15 +02:00
}
if (session_id) {
2020-10-10 02:58:27 +02:00
return TYPE_SESSION;
2020-10-09 13:21:59 +02:00
}
return null;
}
2020-10-10 02:58:27 +02:00
function getIcon(row) {
return TYPE_ICONS[getType(row)];
2020-10-09 11:56:15 +02:00
}
function getWebsite({ website_id }) {
2020-11-07 02:30:21 +01:00
return websites.find(n => n.website_id === website_id);
2020-10-09 11:56:15 +02:00
}
2020-10-10 02:58:27 +02:00
function getDetail({
2020-10-09 11:56:15 +02:00
event_type,
event_value,
view_id,
session_id,
url,
browser,
os,
country,
device,
2020-11-03 04:37:13 +01:00
website_id,
2020-10-09 11:56:15 +02:00
}) {
if (event_type) {
2020-10-09 13:21:59 +02:00
return (
<div>
2020-10-09 21:39:03 +02:00
<Tag>{event_type}</Tag> {event_value}
2020-10-09 13:21:59 +02:00
</div>
);
2020-10-09 11:56:15 +02:00
}
if (view_id) {
2020-11-07 02:30:21 +01:00
const domain = getWebsite({ website_id })?.domain;
2020-11-03 04:37:13 +01:00
return (
<a
className={styles.link}
href={`//${domain}${url}`}
target="_blank"
rel="noreferrer noopener"
>
{url}
</a>
);
2020-10-09 11:56:15 +02:00
}
if (session_id) {
return (
<FormattedMessage
id="message.log.visitor"
defaultMessage="Visitor from {country} using {browser} on {os} {device}"
2020-10-13 01:31:51 +02:00
values={{
2022-02-22 22:31:37 +01:00
country: <b>{countryNames[country] || intl.formatMessage(labels.unknown)}</b>,
2020-10-14 23:16:00 +02:00
browser: <b>{BROWSERS[browser]}</b>,
os: <b>{os}</b>,
2022-02-22 22:31:37 +01:00
device: <b>{intl.formatMessage(getDeviceMessage(device))}</b>,
2020-10-13 01:31:51 +02:00
}}
2020-10-09 11:56:15 +02:00
/>
);
}
}
2020-10-11 07:36:55 +02:00
function getTime({ created_at }) {
2021-02-27 07:41:05 +01:00
return dateFormat(new Date(created_at), 'pp', locale);
2020-10-11 07:36:55 +02:00
}
function getColor(row) {
const { session_id } = row;
return stringToColor(uuids[session_id] || `${session_id}${getWebsite(row)}`);
}
2020-10-09 13:21:59 +02:00
const Row = ({ index, style }) => {
2020-10-10 10:16:28 +02:00
const row = logs[index];
2020-10-09 13:21:59 +02:00
return (
2020-10-10 10:16:28 +02:00
<div className={styles.row} style={style}>
<div>
2020-10-11 07:36:55 +02:00
<Dot color={getColor(row)} />
</div>
2020-10-11 07:36:55 +02:00
<div className={styles.time}>{getTime(row)}</div>
2020-10-10 10:16:28 +02:00
<div className={styles.detail}>
<Icon className={styles.icon} icon={getIcon(row)} />
{getDetail(row)}
</div>
2020-11-07 02:43:04 +01:00
{!websiteId && websites.length > 1 && (
<div className={styles.website}>{getWebsite(row)?.domain}</div>
)}
2020-10-09 13:21:59 +02:00
</div>
);
};
2020-10-09 11:56:15 +02:00
return (
2020-10-10 10:16:28 +02:00
<div className={styles.table}>
2020-10-13 01:31:51 +02:00
<FilterButtons buttons={buttons} selected={filter} onClick={setFilter} />
2020-10-10 05:37:24 +02:00
<div className={styles.header}>
<FormattedMessage id="label.realtime-logs" defaultMessage="Realtime logs" />
</div>
2020-10-10 10:16:28 +02:00
<div className={styles.body}>
2020-10-14 23:16:00 +02:00
{logs?.length === 0 && <NoData />}
{logs?.length > 0 && (
<FixedSizeList height={400} itemCount={logs.length} itemSize={40}>
{Row}
</FixedSizeList>
)}
2020-10-10 10:16:28 +02:00
</div>
2020-10-09 11:56:15 +02:00
</div>
);
}