mirror of
https://github.com/umami-software/umami.git
synced 2026-02-10 15:47:13 +01:00
Refactored query filters.
This commit is contained in:
parent
b65c478689
commit
157862834d
16 changed files with 118 additions and 147 deletions
|
|
@ -70,6 +70,10 @@ function getFilterQuery(filters = {}) {
|
|||
arr.push(`and ${column} = {${key}:String}`);
|
||||
}
|
||||
|
||||
if (key === 'referrer') {
|
||||
arr.push('and referrer_domain != {domain:String}');
|
||||
}
|
||||
|
||||
return arr;
|
||||
}, []);
|
||||
|
||||
|
|
|
|||
|
|
@ -43,11 +43,6 @@ export const SESSION_COLUMNS = [
|
|||
'city',
|
||||
];
|
||||
|
||||
export const COLLECTION_TYPE = {
|
||||
event: 'event',
|
||||
identify: 'identify',
|
||||
};
|
||||
|
||||
export const FILTER_COLUMNS = {
|
||||
url: 'url_path',
|
||||
referrer: 'referrer_domain',
|
||||
|
|
@ -57,6 +52,11 @@ export const FILTER_COLUMNS = {
|
|||
region: 'subdivision1',
|
||||
};
|
||||
|
||||
export const COLLECTION_TYPE = {
|
||||
event: 'event',
|
||||
identify: 'identify',
|
||||
};
|
||||
|
||||
export const EVENT_TYPE = {
|
||||
pageView: 1,
|
||||
customEvent: 2,
|
||||
|
|
@ -120,37 +120,6 @@ export const ROLE_PERMISSIONS = {
|
|||
[ROLES.teamMember]: [],
|
||||
} as const;
|
||||
|
||||
export const WEBSITE_EVENT_FIELDS = {
|
||||
eventId: { name: 'event_id', type: 'uuid', label: 'Event ID' },
|
||||
websiteId: { name: 'website_id', type: 'uuid', label: 'Website ID' },
|
||||
sessionId: { name: 'session_id', type: 'uuid', label: 'Session ID' },
|
||||
createdAt: { name: 'created_at', type: 'date', label: 'Created date' },
|
||||
urlPath: { name: 'url_path', type: 'string', label: 'URL path' },
|
||||
urlQuery: { name: 'url_query', type: 'string', label: 'URL query' },
|
||||
referrerPath: { name: 'referrer_path', type: 'string', label: 'Referrer path' },
|
||||
referrerQuery: { name: 'referrer_query', type: 'string', label: 'Referrer query' },
|
||||
referrerDomain: { name: 'referrer_domain', type: 'string', label: 'Referrer domain' },
|
||||
pageTitle: { name: 'page_title', type: 'string', label: 'Page title' },
|
||||
eventType: { name: 'event_type', type: 'string', label: 'Event type' },
|
||||
eventName: { name: 'event_name', type: 'string', label: 'Event name' },
|
||||
};
|
||||
|
||||
export const SESSION_FIELDS = {
|
||||
sessionId: { name: 'session_id', type: 'uuid' },
|
||||
websiteId: { name: 'website_id', type: 'uuid' },
|
||||
hostname: { name: 'hostname', type: 'string' },
|
||||
browser: { name: 'browser', type: 'string' },
|
||||
os: { name: 'os', type: 'string' },
|
||||
device: { name: 'device', type: 'string' },
|
||||
screen: { name: 'screen', type: 'string' },
|
||||
language: { name: 'language', type: 'string' },
|
||||
country: { name: 'country', type: 'string' },
|
||||
subdivision1: { name: 'subdivision1', type: 'string' },
|
||||
subdivision2: { name: 'subdivision2', type: 'string' },
|
||||
city: { name: 'city', type: 'string' },
|
||||
createdAt: { name: 'created_at', type: 'date' },
|
||||
};
|
||||
|
||||
export const THEME_COLORS = {
|
||||
light: {
|
||||
primary: '#2680eb',
|
||||
|
|
|
|||
|
|
@ -73,6 +73,12 @@ function getFilterQuery(filters = {}): string {
|
|||
arr.push(`and ${column}={{${key}}}`);
|
||||
}
|
||||
|
||||
if (key === 'referrer') {
|
||||
arr.push(
|
||||
'and (website_event.referrer_domain != {{domain}} or website_event.referrer_domain is null)',
|
||||
);
|
||||
}
|
||||
|
||||
return arr;
|
||||
}, []);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue