This way we remove duplication.
Note that to check whether to render the button to remove a marker,
we're checking whether the map location belongs to a mappable. This
means we're changing the code that renders the map in the "new proposal"
and "new investment" forms so the map location belongs to a proposal or
investment. We're association the map location to a new record because
writing something like:
```
def map_location
proposal.map_location || MapLocation.new(proposal: proposal)
end
```
Would change the `proposal` object because of the way Rails treats
non-persisted `has_one` associations. Although probably safe in this
case, changing an object when rendering a view could have side effects.
Also note that we're changing the HTML ID of the map element from
`admin-map` to `new_map_location` (the latter is returned by the
`dom_id` method). We were only using this ID in tests since commit
289426c1c, so changing it doesn't really affect us.
50 lines
1.3 KiB
Ruby
50 lines
1.3 KiB
Ruby
class Admin::SettingsController < Admin::BaseController
|
|
def index
|
|
end
|
|
|
|
def update
|
|
@setting = Setting.find(params[:id])
|
|
@setting.update!(settings_params)
|
|
|
|
respond_to do |format|
|
|
format.html { redirect_to request_referer, notice: t("admin.settings.flash.updated") }
|
|
format.js
|
|
end
|
|
end
|
|
|
|
def update_map
|
|
Setting["map.latitude"] = params[:map_location][:latitude].to_f
|
|
Setting["map.longitude"] = params[:map_location][:longitude].to_f
|
|
Setting["map.zoom"] = params[:map_location][:zoom].to_i
|
|
redirect_to request_referer, notice: t("admin.settings.index.map.flash.update")
|
|
end
|
|
|
|
def update_content_types
|
|
setting = Setting.find(params[:id])
|
|
group = setting.content_type_group
|
|
mime_type_values = content_type_params.keys.map do |content_type|
|
|
Setting.mime_types[group][content_type]
|
|
end
|
|
setting.update! value: mime_type_values.join(" ")
|
|
redirect_to request_referer, notice: t("admin.settings.flash.updated")
|
|
end
|
|
|
|
private
|
|
|
|
def settings_params
|
|
params.require(:setting).permit(allowed_params)
|
|
end
|
|
|
|
def allowed_params
|
|
[:value]
|
|
end
|
|
|
|
def content_type_params
|
|
params.permit(:jpg, :png, :gif, :pdf, :doc, :docx, :xls, :xlsx, :csv, :zip)
|
|
end
|
|
|
|
def request_referer
|
|
request.referer + params[:tab].to_s
|
|
end
|
|
end
|