mirror of
https://github.com/kremalicious/umami.git
synced 2024-12-19 15:53:39 +01:00
29 lines
635 B
JavaScript
29 lines
635 B
JavaScript
import React from 'react';
|
|
import MetricsTable from './MetricsTable';
|
|
import styles from './EventsTable.module.css';
|
|
|
|
export default function EventsTable({ websiteId, limit, onExpand, onDataLoad }) {
|
|
return (
|
|
<MetricsTable
|
|
title="Events"
|
|
type="event"
|
|
metric="Actions"
|
|
websiteId={websiteId}
|
|
limit={limit}
|
|
renderLabel={({ x }) => <Label value={x} />}
|
|
onExpand={onExpand}
|
|
onDataLoad={onDataLoad}
|
|
/>
|
|
);
|
|
}
|
|
|
|
const Label = ({ value }) => {
|
|
const [event, label] = value.split(':');
|
|
return (
|
|
<>
|
|
<span className={styles.type}>{event}</span>
|
|
{label}
|
|
</>
|
|
);
|
|
};
|