Add score filter to Explore view (#14397)

* backend score filtering and sorting

* score filter frontend

* use input for score filtering

* use correct score on search thumbnail

* add popover to explain top_score

* revert sublabel score calc

* update filters logic

* fix rounding on score

* wait until default view is loaded

* don't turn button to selected style for similarity searches

* clarify language

* fix alert dialog buttons to use correct destructive variant

* use root level top_score for very old events

* better arrangement of thumbnail footer items on smaller screens
This commit is contained in:
Josh Hawkins
2024-10-17 06:30:52 -05:00
committed by GitHub
parent edaccd86d6
commit 8173cd7776
16 changed files with 353 additions and 136 deletions

View File

@@ -35,6 +35,7 @@ export type SearchResult = {
zones: string[];
search_source: SearchSource;
search_distance: number;
top_score: number; // for old events
data: {
top_score: number;
score: number;
@@ -56,6 +57,8 @@ export type SearchFilter = {
zones?: string[];
before?: number;
after?: number;
min_score?: number;
max_score?: number;
time_range?: string;
search_type?: SearchSource[];
event_id?: string;
@@ -71,6 +74,8 @@ export type SearchQueryParams = {
zones?: string[];
before?: string;
after?: string;
min_score?: number;
max_score?: number;
search_type?: string;
limit?: number;
in_progress?: number;