fix(search): Fix event search order

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel 2023-04-26 16:33:11 +02:00
parent 4375438dc9
commit a4e7ee37be
No known key found for this signature in database
GPG key ID: A061B9DDE0CA0773
5 changed files with 65 additions and 28 deletions

View file

@ -39,7 +39,7 @@ import { IAddress } from "@/types/address.model";
import { AddressSearchType } from "@/types/enums"; import { AddressSearchType } from "@/types/enums";
import { computed, defineAsyncComponent } from "vue"; import { computed, defineAsyncComponent } from "vue";
import { useI18n } from "vue-i18n"; import { useI18n } from "vue-i18n";
import { useRouter } from "vue-router"; import { useRouter, useRoute } from "vue-router";
import RouteName from "@/router/name"; import RouteName from "@/router/name";
const FullAddressAutoComplete = defineAsyncComponent( const FullAddressAutoComplete = defineAsyncComponent(
@ -53,6 +53,7 @@ const props = defineProps<{
}>(); }>();
const router = useRouter(); const router = useRouter();
const route = useRoute();
const emit = defineEmits<{ const emit = defineEmits<{
(event: "update:location", location: IAddress | null): void; (event: "update:location", location: IAddress | null): void;
@ -89,6 +90,7 @@ const submit = () => {
router.push({ router.push({
name: RouteName.SEARCH, name: RouteName.SEARCH,
query: { query: {
...route.query,
locationName: location.value?.locality ?? location.value?.region, locationName: location.value?.locality ?? location.value?.region,
lat, lat,
lon, lon,

View file

@ -818,6 +818,7 @@ enum ViewMode {
enum EventSortValues { enum EventSortValues {
MATCH_DESC = "MATCH_DESC", MATCH_DESC = "MATCH_DESC",
START_TIME_ASC = "START_TIME_ASC",
START_TIME_DESC = "START_TIME_DESC", START_TIME_DESC = "START_TIME_DESC",
CREATED_AT_DESC = "CREATED_AT_DESC", CREATED_AT_DESC = "CREATED_AT_DESC",
CREATED_AT_ASC = "CREATED_AT_ASC", CREATED_AT_ASC = "CREATED_AT_ASC",
@ -831,6 +832,7 @@ enum GroupSortValues {
enum SortValues { enum SortValues {
MATCH_DESC = "MATCH_DESC", MATCH_DESC = "MATCH_DESC",
START_TIME_ASC = "START_TIME_ASC",
START_TIME_DESC = "START_TIME_DESC", START_TIME_DESC = "START_TIME_DESC",
CREATED_AT_DESC = "CREATED_AT_DESC", CREATED_AT_DESC = "CREATED_AT_DESC",
CREATED_AT_ASC = "CREATED_AT_ASC", CREATED_AT_ASC = "CREATED_AT_ASC",
@ -1157,7 +1159,7 @@ const sortOptions = computed(() => {
if (contentType.value == ContentType.EVENTS) { if (contentType.value == ContentType.EVENTS) {
options.push( options.push(
{ {
key: SortValues.START_TIME_DESC, key: SortValues.START_TIME_ASC,
label: t("Event date"), label: t("Event date"),
}, },
{ {
@ -1239,6 +1241,9 @@ const sortByForType = (
value: SortValues, value: SortValues,
allowed: typeof EventSortValues | typeof GroupSortValues allowed: typeof EventSortValues | typeof GroupSortValues
): SortValues | undefined => { ): SortValues | undefined => {
if (value === SortValues.START_TIME_ASC && when.value === "past") {
value = SortValues.START_TIME_DESC;
}
return Object.values(allowed).includes(value) ? value : undefined; return Object.values(allowed).includes(value) ? value : undefined;
}; };

View file

@ -174,7 +174,8 @@ defmodule Mobilizon.GraphQL.Schema.SearchType do
enum :search_event_sort_options do enum :search_event_sort_options do
value(:match_desc, description: "The pertinence of the result") value(:match_desc, description: "The pertinence of the result")
value(:start_time_desc, description: "The start date of the result") value(:start_time_asc, description: "The start date of the result, ordered ascending")
value(:start_time_desc, description: "The start date of the result, ordered descending")
value(:created_at_desc, description: "When the event was published") value(:created_at_desc, description: "When the event was published")
value(:created_at_asc, description: "When the event was published") value(:created_at_asc, description: "When the event was published")
value(:participant_count_desc, description: "With the most participants") value(:participant_count_desc, description: "With the most participants")

View file

@ -562,11 +562,12 @@ defmodule Mobilizon.Events do
""" """
@spec build_events_for_search(map(), integer | nil, integer | nil) :: Page.t(Event.t()) @spec build_events_for_search(map(), integer | nil, integer | nil) :: Page.t(Event.t())
def build_events_for_search(%{term: term} = args, page \\ nil, limit \\ nil) do def build_events_for_search(%{term: term} = args, page \\ nil, limit \\ nil) do
term search_string = normalize_search_string(term)
|> normalize_search_string()
search_string
|> events_for_search_query() |> events_for_search_query()
|> events_for_begins_on(args) |> events_for_begins_on(Map.get(args, :begins_on, DateTime.utc_now()))
|> events_for_ends_on(args) |> events_for_ends_on(Map.get(args, :ends_on))
|> events_for_category(args) |> events_for_category(args)
|> events_for_categories(args) |> events_for_categories(args)
|> events_for_languages(args) |> events_for_languages(args)
@ -579,7 +580,7 @@ defmodule Mobilizon.Events do
|> filter_draft() |> filter_draft()
|> filter_local_or_from_followed_instances_events() |> filter_local_or_from_followed_instances_events()
|> filter_public_visibility() |> filter_public_visibility()
|> event_order(Map.get(args, :sort_by, :match_desc)) |> event_order(Map.get(args, :sort_by, :match_desc), search_string)
|> Page.build_page(page, limit, :begins_on) |> Page.build_page(page, limit, :begins_on)
end end
@ -1321,18 +1322,16 @@ defmodule Mobilizon.Events do
end end
end end
defp events_for_search_query(""), do: Event
defp events_for_search_query(search_string) do defp events_for_search_query(search_string) do
Event join(Event, :inner, [e], id_and_rank in matching_event_ids_and_ranks(search_string),
|> distinct(:id)
|> join(:inner, [e], id_and_rank in matching_event_ids_and_ranks(search_string),
on: id_and_rank.id == e.id on: id_and_rank.id == e.id
) )
end end
@spec events_for_begins_on(Ecto.Queryable.t(), map()) :: Ecto.Query.t() @spec events_for_begins_on(Ecto.Queryable.t(), DateTime.t() | nil) :: Ecto.Query.t()
defp events_for_begins_on(query, args) do defp events_for_begins_on(query, begins_on) do
begins_on = Map.get(args, :begins_on, DateTime.utc_now())
if is_nil(begins_on) do if is_nil(begins_on) do
query query
else else
@ -1345,10 +1344,8 @@ defmodule Mobilizon.Events do
end end
end end
@spec events_for_ends_on(Ecto.Queryable.t(), map()) :: Ecto.Query.t() @spec events_for_ends_on(Ecto.Queryable.t(), DateTime.t() | nil) :: Ecto.Query.t()
defp events_for_ends_on(query, args) do defp events_for_ends_on(query, ends_on) do
ends_on = Map.get(args, :ends_on)
if is_nil(ends_on) do if is_nil(ends_on) do
query query
else else
@ -1759,7 +1756,6 @@ defmodule Mobilizon.Events do
|> distinct([e], e.id) |> distinct([e], e.id)
|> join(:left, [e], et in "events_tags", on: e.id == et.event_id) |> join(:left, [e], et in "events_tags", on: e.id == et.event_id)
|> join(:left, [e], a in Address, on: e.physical_address_id == a.id) |> join(:left, [e], a in Address, on: e.physical_address_id == a.id)
|> events_for_begins_on(%{})
|> filter_draft() |> filter_draft()
|> filter_local_or_from_followed_instances_events() |> filter_local_or_from_followed_instances_events()
|> filter_public_visibility() |> filter_public_visibility()
@ -1948,17 +1944,49 @@ defmodule Mobilizon.Events do
defp event_order_by(query, _order_by, _direction), do: event_order_by(query, :begins_on, :asc) defp event_order_by(query, _order_by, _direction), do: event_order_by(query, :begins_on, :asc)
defp event_order(query, :match_desc), defp event_order(query, :match_desc, "") do
do: order_by(query, [e, f], desc: f.rank, asc: e.begins_on) query
|> distinct([e], desc: e.begins_on, asc: e.id)
|> order_by([e], desc: e.begins_on)
end
defp event_order(query, :start_time_desc), do: order_by(query, [e], asc: e.begins_on) defp event_order(query, :match_desc, _) do
defp event_order(query, :created_at_desc), do: order_by(query, [e], desc: e.publish_at) query
defp event_order(query, :created_at_asc), do: order_by(query, [e], asc: e.publish_at) |> distinct([e, f], desc: f.rank, asc: e.begins_on, asc: e.id)
|> order_by([e, f], desc: f.rank, asc: e.begins_on)
end
defp event_order(query, :participant_count_desc), defp event_order(query, :start_time_desc, _) do
do: order_by(query, [e], fragment("participant_stats->>'participant' DESC")) query
|> distinct([e], desc: e.begins_on, asc: e.id)
|> order_by([e], desc: e.begins_on)
end
defp event_order(query, _), do: query defp event_order(query, :start_time_asc, _) do
query
|> distinct([e], asc: e.begins_on, asc: e.id)
|> order_by([e], asc: e.begins_on)
end
defp event_order(query, :created_at_desc, _) do
query
|> distinct([e], desc: e.publish_at, asc: e.id)
|> order_by([e], desc: e.publish_at)
end
defp event_order(query, :created_at_asc, _) do
query
|> distinct([e], asc: e.publish_at, asc: e.id)
|> order_by([e], asc: e.publish_at)
end
defp event_order(query, :participant_count_desc, _) do
query
|> distinct(:id)
|> order_by([e], fragment("participant_stats->>'participant' DESC"))
end
defp event_order(query, _, _), do: query
defp participation_filter_begins_on(query, nil, nil), defp participation_filter_begins_on(query, nil, nil),
do: participation_order_begins_on_desc(query) do: participation_order_begins_on_desc(query)

View file

@ -17,6 +17,7 @@ defmodule Mobilizon.Service.GlobalSearch.SearchMobilizon do
@sort_by_options %{ @sort_by_options %{
match_desc: "-match", match_desc: "-match",
start_time_asc: "startTime",
start_time_desc: "-startTime", start_time_desc: "-startTime",
created_at_desc: "-createdAt", created_at_desc: "-createdAt",
created_at_asc: "createdAt", created_at_asc: "createdAt",