Fix geocoding

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel 2020-06-09 15:20:07 +02:00
parent 512aa195c5
commit ba6e656015
No known key found for this signature in database
GPG Key ID: A061B9DDE0CA0773
4 changed files with 5 additions and 7 deletions

View File

@ -42,7 +42,7 @@ export const CONFIG = gql`
location { location {
latitude latitude
longitude longitude
accuracyRadius # accuracyRadius
} }
maps { maps {
tiles { tiles {

View File

@ -12,7 +12,7 @@ export interface IConfig {
location: { location: {
latitude: number; latitude: number;
longitude: number; longitude: number;
accuracyRadius: number; // accuracyRadius: number;
}; };
anonymous: { anonymous: {
participation: { participation: {

View File

@ -3,8 +3,6 @@ defmodule Mobilizon.GraphQL.Resolvers.Config do
Handles the config-related GraphQL calls. Handles the config-related GraphQL calls.
""" """
alias Geolix.Adapter.MMDB2.Record.{Country, Location}
alias Mobilizon.Config alias Mobilizon.Config
@doc """ @doc """
@ -15,13 +13,13 @@ defmodule Mobilizon.GraphQL.Resolvers.Config do
country_code = country_code =
case Map.get(geolix, :city) do case Map.get(geolix, :city) do
%{country: %Country{iso_code: country_code}} -> String.downcase(country_code) %{country: %{iso_code: country_code}} -> String.downcase(country_code)
_ -> nil _ -> nil
end end
location = location =
case Map.get(geolix, :city) do case Map.get(geolix, :city) do
%{location: %Location{} = location} -> Map.from_struct(location) %{location: %{} = location} -> location
_ -> nil _ -> nil
end end

View File

@ -39,7 +39,7 @@ defmodule Mobilizon.GraphQL.Schema.ConfigType do
object :lonlat do object :lonlat do
field(:longitude, :float) field(:longitude, :float)
field(:latitude, :float) field(:latitude, :float)
field(:accuracy_radius, :integer) # field(:accuracy_radius, :integer)
end end
object :geocoding do object :geocoding do