Sha256: 9551d0caf1da484261927f219ee7f8b7600e386436b08bb46db507f4af998f61

Contents?: true

Size: 1.65 KB

Versions: 5

Compression:

Stored size: 1.65 KB

Contents

require_dependency "pwb/application_controller"

module Pwb
  class Api::V1::SelectValuesController < ApplicationApiController
    # respond_to :json

    # protect_from_forgery with: :null_session

    # will return a hash of arrays with the i18n keys that are relevant
    # for each dropdown group of labels
    def by_field_names
      field_names_string = params["field_names"] || ""
      # "property-origins, property-types, property-states, provinces"

      # below used to populate dropdown list to select
      # client for property
      # if field_names_string == "clients"
      #   clients_array = [{:value => "", :label => ""}]
      #   # TODO - have some filter for below
      #   clients = Client.all
      #   clients.each do |client|
      #     clients_array.push( {:value => client.id,
      #                          :label => client.full_name})
      #   end
      #   return render json: { clients: clients_array}
      # end

      field_names_array = field_names_string.split(",")
      # above might return something like
      # ["extras"] or
      # ["provinces","property-states"]
      select_values = {}
      # a field_name_id identifies a dropdown field for
      # which I need a list of translation keys
      # for example extras
      field_names_array.each do |field_name_id|
        # a field_name_id might be:
        # extras
        field_name_id = field_name_id.strip

        # gets a list of translation keys for a given field:
        translation_keys = FieldKey.where(tag: field_name_id).visible.pluck("global_key")
        select_values[field_name_id] = translation_keys
      end
      render json: select_values
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
pwb-1.4.0 app/controllers/pwb/api/v1/select_values_controller.rb
pwb-1.3.0 app/controllers/pwb/api/v1/select_values_controller.rb
pwb-1.2.0 app/controllers/pwb/api/v1/select_values_controller.rb
pwb-1.1.1 app/controllers/pwb/api/v1/select_values_controller.rb
pwb-1.0.0 app/controllers/pwb/api/v1/select_values_controller.rb