Extract component for restore and hide actions

By doing so, we remove a lot of duplication.
This commit is contained in:
Javi Martín
2020-06-14 18:32:21 +02:00
parent 64b0cc741b
commit eb3f2bc2ca
9 changed files with 66 additions and 66 deletions

View File

@@ -0,0 +1,34 @@
class Admin::HiddenTableActionsComponent < ApplicationComponent
attr_reader :record
def initialize(record)
@record = record
end
private
def restore_text
t("admin.actions.restore")
end
def restore_path
action_path(:restore)
end
def confirm_hide_text
t("admin.actions.confirm_hide")
end
def confirm_hide_path
action_path(:confirm_hide)
end
def action_path(action)
url_for({
controller: "admin/hidden_#{record.model_name.plural}",
action: action,
id: record,
only_path: true
}.merge(request.query_parameters))
end
end