13 lines
395 B
Ruby
13 lines
395 B
Ruby
class NestedForms::OwnedButtonComponent < ApplicationComponent
|
|
renders_one :button_label
|
|
|
|
def initialize(formaction:, http_method:, opt: {})
|
|
@formaction = formaction
|
|
@http_method = http_method
|
|
@opt = opt
|
|
end
|
|
|
|
def call
|
|
button_tag(content, @opt.merge(formaction: @formaction, form: NestedForms::FormOwnerComponent.form_id(@http_method), data: { turbo: 'true' }))
|
|
end
|
|
end
|