Files
grecia/app/controllers/admin/settings_controller.rb
Senén Rodero Rodríguez f8835debae Move logic from key definition to views
Before this change, two important things depend on the format of each key,
where to render it in the administration panel and which kind of interface
to use for each setting. Following this strategy led us to a very complex
code, very difficult to maintain or modify. So, we do not want to depend
on the setting key structure anymore to decide how or where to render each
setting.

With this commit, we get rid of the key format-based rules. Now we render
each setting explicitly passing to it the type and the tab where it belongs.
2024-01-25 18:29:38 +01:00

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[:latitude].to_f
Setting["map.longitude"] = params[:longitude].to_f
Setting["map.zoom"] = params[: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