import { useMemo, useState } from 'react'; import { StatusLight, Icon } from 'react-basics'; import { useIntl, FormattedMessage } from 'react-intl'; import { FixedSizeList } from 'react-window'; import firstBy from 'thenby'; import FilterButtons from 'components/common/FilterButtons'; import NoData from 'components/common/NoData'; import { getDeviceMessage, labels } from 'components/messages'; import useLocale from 'hooks/useLocale'; import useCountryNames from 'hooks/useCountryNames'; import { BROWSERS } from 'lib/constants'; import { stringToColor } from 'lib/format'; import { dateFormat } from 'lib/date'; import { safeDecodeURI } from 'next-basics'; import Icons from 'components/icons'; import styles from './RealtimeLog.module.css'; const TYPE_ALL = 'type-all'; const TYPE_PAGEVIEW = 'type-pageview'; const TYPE_SESSION = 'type-session'; const TYPE_EVENT = 'type-event'; const TYPE_ICONS = { [TYPE_PAGEVIEW]: , [TYPE_SESSION]: , [TYPE_EVENT]: , }; export default function RealtimeLog({ data, websiteDomain }) { const { formatMessage } = useIntl(); const { locale } = useLocale(); const countryNames = useCountryNames(locale); const [filter, setFilter] = useState(TYPE_ALL); const logs = useMemo(() => { if (!data) { return []; } const { pageviews, sessions, events } = data; const logs = [...pageviews, ...sessions, ...events].sort(firstBy('createdAt', -1)); if (filter) { return logs.filter(row => getType(row) === filter); } return logs; }, [data, filter]); const uuids = useMemo(() => { if (!data) { return []; } return data.sessions.reduce((obj, { sessionId, sessionUuid }) => { obj[sessionId] = sessionUuid; return obj; }, {}); }, [data]); const buttons = [ { label: formatMessage(labels.all), key: TYPE_ALL, }, { label: formatMessage(labels.views), key: TYPE_PAGEVIEW, }, { label: formatMessage(labels.sessions), key: TYPE_SESSION, }, { label: formatMessage(labels.events), key: TYPE_EVENT, }, ]; function getType({ pageviewId, sessionId, eventId }) { if (eventId) { return TYPE_EVENT; } if (pageviewId) { return TYPE_PAGEVIEW; } if (sessionId) { return TYPE_SESSION; } return null; } function getIcon(row) { return TYPE_ICONS[getType(row)]; } function getDetail({ eventName, pageviewId, sessionId, url, browser, os, country, device, websiteId, }) { if (eventName) { return
{eventName}
; } if (pageviewId) { return ( {safeDecodeURI(url)} ); } if (sessionId) { return ( {countryNames[country] || formatMessage(labels.unknown)}, browser: {BROWSERS[browser]}, os: {os}, device: {formatMessage(getDeviceMessage(device))}, }} /> ); } } function getTime({ createdAt }) { return dateFormat(new Date(createdAt), 'pp', locale); } function getColor(row) { const { sessionId } = row; return stringToColor(uuids[sessionId] || `${sessionId}}`); } const Row = ({ index, style }) => { const row = logs[index]; return (
{getTime(row)}
{getDetail(row)}
); }; return (
{logs?.length === 0 && } {logs?.length > 0 && ( {Row} )}
); }