mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 17:55:08 +01:00
Refactored realtime API. Add dot component and colored dots in log.
This commit is contained in:
parent
f2cfab5078
commit
b72a4c001c
15
components/common/Dot.js
Normal file
15
components/common/Dot.js
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
import React from 'react';
|
||||||
|
import classNames from 'classnames';
|
||||||
|
import styles from './Dot.module.css';
|
||||||
|
|
||||||
|
export default function Dot({ color, size, className }) {
|
||||||
|
return (
|
||||||
|
<div
|
||||||
|
style={{ background: color }}
|
||||||
|
className={classNames(styles.dot, className, {
|
||||||
|
[styles.small]: size === 'small',
|
||||||
|
[styles.large]: size === 'large',
|
||||||
|
})}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
}
|
17
components/common/Dot.module.css
Normal file
17
components/common/Dot.module.css
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
.dot {
|
||||||
|
background: var(--green400);
|
||||||
|
width: 10px;
|
||||||
|
height: 10px;
|
||||||
|
border-radius: 100%;
|
||||||
|
margin-right: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dot.small {
|
||||||
|
width: 8px;
|
||||||
|
height: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dot.large {
|
||||||
|
width: 16px;
|
||||||
|
height: 16px;
|
||||||
|
}
|
@ -2,6 +2,7 @@ import React, { useMemo } from 'react';
|
|||||||
import { FormattedMessage } from 'react-intl';
|
import { FormattedMessage } from 'react-intl';
|
||||||
import classNames from 'classnames';
|
import classNames from 'classnames';
|
||||||
import useFetch from 'hooks/useFetch';
|
import useFetch from 'hooks/useFetch';
|
||||||
|
import Dot from 'components/common/Dot';
|
||||||
import styles from './ActiveUsers.module.css';
|
import styles from './ActiveUsers.module.css';
|
||||||
|
|
||||||
export default function ActiveUsers({ websiteId, token, className }) {
|
export default function ActiveUsers({ websiteId, token, className }) {
|
||||||
@ -19,7 +20,7 @@ export default function ActiveUsers({ websiteId, token, className }) {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<div className={classNames(styles.container, className)}>
|
<div className={classNames(styles.container, className)}>
|
||||||
<div className={styles.dot} />
|
<Dot />
|
||||||
<div className={styles.text}>
|
<div className={styles.text}>
|
||||||
<div>
|
<div>
|
||||||
<FormattedMessage
|
<FormattedMessage
|
||||||
|
@ -12,11 +12,3 @@
|
|||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
margin-right: 4px;
|
margin-right: 4px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.dot {
|
|
||||||
background: var(--green400);
|
|
||||||
width: 10px;
|
|
||||||
height: 10px;
|
|
||||||
border-radius: 100%;
|
|
||||||
margin-right: 10px;
|
|
||||||
}
|
|
||||||
|
@ -8,7 +8,13 @@ import styles from './RealtimeHeader.module.css';
|
|||||||
export default function RealtimeHeader({ websites, data, websiteId, onSelect }) {
|
export default function RealtimeHeader({ websites, data, websiteId, onSelect }) {
|
||||||
const options = [
|
const options = [
|
||||||
{ label: <FormattedMessage id="label.all-websites" defaultMessage="All websites" />, value: 0 },
|
{ label: <FormattedMessage id="label.all-websites" defaultMessage="All websites" />, value: 0 },
|
||||||
].concat(websites.map(({ name, website_id }) => ({ label: name, value: website_id })));
|
].concat(
|
||||||
|
websites.map(({ name, website_id }, index) => ({
|
||||||
|
label: name,
|
||||||
|
value: website_id,
|
||||||
|
divider: index === 0,
|
||||||
|
})),
|
||||||
|
);
|
||||||
|
|
||||||
const { pageviews, sessions, events, countries } = data;
|
const { pageviews, sessions, events, countries } = data;
|
||||||
|
|
||||||
|
@ -11,7 +11,9 @@ import { BROWSERS } from 'lib/constants';
|
|||||||
import Bolt from 'assets/bolt.svg';
|
import Bolt from 'assets/bolt.svg';
|
||||||
import Visitor from 'assets/visitor.svg';
|
import Visitor from 'assets/visitor.svg';
|
||||||
import Eye from 'assets/eye.svg';
|
import Eye from 'assets/eye.svg';
|
||||||
|
import { stringToColor } from 'lib/format';
|
||||||
import styles from './RealtimeLog.module.css';
|
import styles from './RealtimeLog.module.css';
|
||||||
|
import Dot from '../common/Dot';
|
||||||
|
|
||||||
const TYPE_PAGEVIEW = 0;
|
const TYPE_PAGEVIEW = 0;
|
||||||
const TYPE_SESSION = 1;
|
const TYPE_SESSION = 1;
|
||||||
@ -26,11 +28,19 @@ const TYPE_ICONS = {
|
|||||||
export default function RealtimeLog({ data, websites }) {
|
export default function RealtimeLog({ data, websites }) {
|
||||||
const [locale] = useLocale();
|
const [locale] = useLocale();
|
||||||
const countryNames = useCountryNames(locale);
|
const countryNames = useCountryNames(locale);
|
||||||
|
|
||||||
const logs = useMemo(() => {
|
const logs = useMemo(() => {
|
||||||
const { pageviews, sessions, events } = data;
|
const { pageviews, sessions, events } = data;
|
||||||
return [...pageviews, ...sessions, ...events].sort(firstBy('created_at', -1));
|
return [...pageviews, ...sessions, ...events].sort(firstBy('created_at', -1));
|
||||||
}, [data]);
|
}, [data]);
|
||||||
|
|
||||||
|
const uuids = useMemo(() => {
|
||||||
|
return data.sessions.reduce((obj, { session_id, session_uuid }) => {
|
||||||
|
obj[session_id] = session_uuid;
|
||||||
|
return obj;
|
||||||
|
}, {});
|
||||||
|
}, [data]);
|
||||||
|
|
||||||
function getType({ view_id, session_id, event_id }) {
|
function getType({ view_id, session_id, event_id }) {
|
||||||
if (event_id) {
|
if (event_id) {
|
||||||
return TYPE_EVENT;
|
return TYPE_EVENT;
|
||||||
@ -88,6 +98,9 @@ export default function RealtimeLog({ data, websites }) {
|
|||||||
const row = logs[index];
|
const row = logs[index];
|
||||||
return (
|
return (
|
||||||
<div className={styles.row} style={style}>
|
<div className={styles.row} style={style}>
|
||||||
|
<div>
|
||||||
|
<Dot color={stringToColor(uuids[row.session_id] || `${row.session_id}`)} />
|
||||||
|
</div>
|
||||||
<div className={styles.time}>{format(new Date(row.created_at), 'h:mm:ss')}</div>
|
<div className={styles.time}>{format(new Date(row.created_at), 'h:mm:ss')}</div>
|
||||||
<div className={styles.detail}>
|
<div className={styles.detail}>
|
||||||
<Icon className={styles.icon} icon={getIcon(row)} />
|
<Icon className={styles.icon} icon={getIcon(row)} />
|
||||||
|
@ -16,7 +16,7 @@ import useCountryNames from 'hooks/useCountryNames';
|
|||||||
import { FormattedMessage } from 'react-intl';
|
import { FormattedMessage } from 'react-intl';
|
||||||
|
|
||||||
const REALTIME_RANGE = 30;
|
const REALTIME_RANGE = 30;
|
||||||
const REALTIME_INTERVAL = 55000;
|
const REALTIME_INTERVAL = 3000;
|
||||||
|
|
||||||
function mergeData(state, data, time) {
|
function mergeData(state, data, time) {
|
||||||
const ids = state.map(({ __id }) => __id);
|
const ids = state.map(({ __id }) => __id);
|
||||||
@ -34,9 +34,9 @@ export default function RealtimeDashboard() {
|
|||||||
const countryNames = useCountryNames(locale);
|
const countryNames = useCountryNames(locale);
|
||||||
const [data, setData] = useState();
|
const [data, setData] = useState();
|
||||||
const [websiteId, setWebsiteId] = useState(0);
|
const [websiteId, setWebsiteId] = useState(0);
|
||||||
const { data: init, loading } = useFetch('/api/realtime', { params: { type: 'init' } });
|
const { data: init, loading } = useFetch('/api/realtime/init');
|
||||||
const { data: updates } = useFetch('/api/realtime', {
|
const { data: updates } = useFetch('/api/realtime/update', {
|
||||||
params: { type: 'update', start_at: data?.timestamp },
|
params: { start_at: data?.timestamp },
|
||||||
disabled: !init?.websites?.length || !data,
|
disabled: !init?.websites?.length || !data,
|
||||||
interval: REALTIME_INTERVAL,
|
interval: REALTIME_INTERVAL,
|
||||||
headers: { 'x-umami-token': init?.token },
|
headers: { 'x-umami-token': init?.token },
|
||||||
|
@ -62,3 +62,19 @@ export function formatLongNumber(value) {
|
|||||||
|
|
||||||
return formatNumber(n);
|
return formatNumber(n);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function stringToColor(str) {
|
||||||
|
if (!str) {
|
||||||
|
return '#ffffff';
|
||||||
|
}
|
||||||
|
let hash = 0;
|
||||||
|
for (let i = 0; i < str.length; i++) {
|
||||||
|
hash = str.charCodeAt(i) + ((hash << 5) - hash);
|
||||||
|
}
|
||||||
|
let color = '#';
|
||||||
|
for (let i = 0; i < 3; i++) {
|
||||||
|
let value = (hash >> (i * 8)) & 0xff;
|
||||||
|
color += ('00' + value.toString(16)).substr(-2);
|
||||||
|
}
|
||||||
|
return color;
|
||||||
|
}
|
||||||
|
@ -500,3 +500,30 @@ export function getEventMetrics(
|
|||||||
params,
|
params,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export async function getRealtimeData(websites, time) {
|
||||||
|
const [pageviews, sessions, events] = await Promise.all([
|
||||||
|
getPageviews(websites, time),
|
||||||
|
getSessions(websites, time),
|
||||||
|
getEvents(websites, time),
|
||||||
|
]);
|
||||||
|
|
||||||
|
return {
|
||||||
|
pageviews: pageviews.map(({ view_id, ...props }) => ({
|
||||||
|
__id: `p${view_id}`,
|
||||||
|
view_id,
|
||||||
|
...props,
|
||||||
|
})),
|
||||||
|
sessions: sessions.map(({ session_id, ...props }) => ({
|
||||||
|
__id: `s${session_id}`,
|
||||||
|
session_id,
|
||||||
|
...props,
|
||||||
|
})),
|
||||||
|
events: events.map(({ event_id, ...props }) => ({
|
||||||
|
__id: `e${event_id}`,
|
||||||
|
event_id,
|
||||||
|
...props,
|
||||||
|
})),
|
||||||
|
timestamp: Date.now(),
|
||||||
|
};
|
||||||
|
}
|
||||||
|
@ -1,72 +0,0 @@
|
|||||||
import { subMinutes } from 'date-fns';
|
|
||||||
import { useAuth } from 'lib/middleware';
|
|
||||||
import { ok, methodNotAllowed, badRequest } from 'lib/response';
|
|
||||||
import { getEvents, getPageviews, getSessions, getUserWebsites } from 'lib/queries';
|
|
||||||
import { createToken, parseToken } from 'lib/crypto';
|
|
||||||
|
|
||||||
export default async (req, res) => {
|
|
||||||
await useAuth(req, res);
|
|
||||||
|
|
||||||
async function getData(websites, time) {
|
|
||||||
const [pageviews, sessions, events] = await Promise.all([
|
|
||||||
getPageviews(websites, time),
|
|
||||||
getSessions(websites, time),
|
|
||||||
getEvents(websites, time),
|
|
||||||
]);
|
|
||||||
|
|
||||||
return {
|
|
||||||
pageviews: pageviews.map(({ view_id, ...props }) => ({
|
|
||||||
__id: `p${view_id}`,
|
|
||||||
view_id,
|
|
||||||
...props,
|
|
||||||
})),
|
|
||||||
sessions: sessions.map(({ session_id, ...props }) => ({
|
|
||||||
__id: `s${session_id}`,
|
|
||||||
session_id,
|
|
||||||
...props,
|
|
||||||
})),
|
|
||||||
events: events.map(({ event_id, ...props }) => ({
|
|
||||||
__id: `e${event_id}`,
|
|
||||||
event_id,
|
|
||||||
...props,
|
|
||||||
})),
|
|
||||||
timestamp: Date.now(),
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
if (req.method === 'GET') {
|
|
||||||
const { type, start_at } = req.query;
|
|
||||||
const { user_id } = req.auth;
|
|
||||||
|
|
||||||
if (type === 'init') {
|
|
||||||
const websites = await getUserWebsites(user_id);
|
|
||||||
const ids = websites.map(({ website_id }) => website_id);
|
|
||||||
const token = await createToken({ websites: ids });
|
|
||||||
const data = await getData(ids, subMinutes(new Date(), 30));
|
|
||||||
|
|
||||||
return ok(res, {
|
|
||||||
websites,
|
|
||||||
token,
|
|
||||||
data,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
if (type === 'update') {
|
|
||||||
const token = req.headers['x-umami-token'];
|
|
||||||
|
|
||||||
if (!token) {
|
|
||||||
return badRequest(res);
|
|
||||||
}
|
|
||||||
|
|
||||||
const { websites } = await parseToken(token);
|
|
||||||
|
|
||||||
const data = await getData(websites, new Date(+start_at));
|
|
||||||
|
|
||||||
return ok(res, data);
|
|
||||||
}
|
|
||||||
|
|
||||||
return badRequest(res);
|
|
||||||
}
|
|
||||||
|
|
||||||
return methodNotAllowed(res);
|
|
||||||
};
|
|
26
pages/api/realtime/init.js
Normal file
26
pages/api/realtime/init.js
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
import { subMinutes } from 'date-fns';
|
||||||
|
import { useAuth } from 'lib/middleware';
|
||||||
|
import { ok, methodNotAllowed } from 'lib/response';
|
||||||
|
import { getUserWebsites, getRealtimeData } from 'lib/queries';
|
||||||
|
import { createToken } from 'lib/crypto';
|
||||||
|
|
||||||
|
export default async (req, res) => {
|
||||||
|
await useAuth(req, res);
|
||||||
|
|
||||||
|
if (req.method === 'GET') {
|
||||||
|
const { user_id } = req.auth;
|
||||||
|
|
||||||
|
const websites = await getUserWebsites(user_id);
|
||||||
|
const ids = websites.map(({ website_id }) => website_id);
|
||||||
|
const token = await createToken({ websites: ids });
|
||||||
|
const data = await getRealtimeData(ids, subMinutes(new Date(), 30));
|
||||||
|
|
||||||
|
return ok(res, {
|
||||||
|
websites,
|
||||||
|
token,
|
||||||
|
data,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
return methodNotAllowed(res);
|
||||||
|
};
|
26
pages/api/realtime/update.js
Normal file
26
pages/api/realtime/update.js
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
import { useAuth } from 'lib/middleware';
|
||||||
|
import { ok, methodNotAllowed, badRequest } from 'lib/response';
|
||||||
|
import { getRealtimeData } from 'lib/queries';
|
||||||
|
import { parseToken } from 'lib/crypto';
|
||||||
|
|
||||||
|
export default async (req, res) => {
|
||||||
|
await useAuth(req, res);
|
||||||
|
|
||||||
|
if (req.method === 'GET') {
|
||||||
|
const { start_at } = req.query;
|
||||||
|
|
||||||
|
const token = req.headers['x-umami-token'];
|
||||||
|
|
||||||
|
if (!token) {
|
||||||
|
return badRequest(res);
|
||||||
|
}
|
||||||
|
|
||||||
|
const { websites } = await parseToken(token);
|
||||||
|
|
||||||
|
const data = await getRealtimeData(websites, new Date(+start_at));
|
||||||
|
|
||||||
|
return ok(res, data);
|
||||||
|
}
|
||||||
|
|
||||||
|
return methodNotAllowed(res);
|
||||||
|
};
|
Loading…
Reference in New Issue
Block a user