class Avo::Fields::LocationField

def as_lat_long_field_id(get)

def as_lat_long_field_id(get)
  if get == :lat
    @stored_as.first
  elsif get == :long
    @stored_as.last
  end
end

def as_lat_long_placeholder(get)

def as_lat_long_placeholder(get)
  if get == :lat
    "Enter #{@stored_as.first}"
  elsif get == :long
    "Enter #{@stored_as.last}"
  end
end

def as_lat_long_value(get)

def as_lat_long_value(get)
  if get == :lat
    record.send(@stored_as.first)
  elsif get == :long
    record.send(@stored_as.last)
  end
end

def assign_value(record:, value:)

def assign_value(record:, value:)
  return super if @stored_as.blank?
  @stored_as.each_with_index do |database_id, index|
    record.send(:"#{database_id}=", value[index])
  end
end

def default_mapkick_options(render_static_map)

def default_mapkick_options(render_static_map)
  default_options = if render_static_map
    {
      width: 300,
      height: 300
    }
  else
    {
      id: "location-map",
      zoom: @args[:zoom]&.to_i || 15,
      controls: true
    }
  end
  default_options.merge(@args[:mapkick_options] || {})
end

def fill_field(record, key, value, params)

def fill_field(record, key, value, params)
  if value_as_array?
    latitude_field, longitude_field = @stored_as
    record.send(:"#{latitude_field}=", value[latitude_field])
    record.send(:"#{longitude_field}=", value[longitude_field])
    record
  else
    super(record, key, value.split(","), params)
  end
end

def initialize(id, **args, &block)

def initialize(id, **args, &block)
  hide_on :index
  super(id, **args, &block)
  # You can pass it an array of db columns [:latitude, :longitude]
  @stored_as = args[:stored_as]
end

def render_map(params)

def render_map(params)
  return "—" if !value_present?
  render_static_map = params[:action] == "preview" || @args[:static]
  Avo::Current.view_context.send render_static_map ? :static_map : :js_map,
    [{latitude: value[0], longitude: value[1]}],
     **default_mapkick_options(render_static_map)
end

def to_permitted_param

def to_permitted_param
  if value_as_array?
    [:"#{id}", "#{id}": {}]
  else
    super
  end
end

def value

def value
  if value_as_array?
    [@record.send(@stored_as.first), @record.send(@stored_as.last)]
  else
    super
  end
end

def value_as_array?

def value_as_array?
  @stored_as.is_a?(Array) && @stored_as.count == 2
end

def value_present?

def value_present?
  return value.first.present? && value.second.present? if value.is_a?(Array) && value.count == 2
  value.present?
end