4
5
6
7
8
9
10
|
# File 'lib/turbo_boost/streams/tag_helper.rb', line 4
def turbo_stream_invoke_tag(method, args: [], delay: 0, selector: nil, camelize: true, id: nil)
id = SecureRandom.uuid if id.blank?
payload = HashWithIndifferentAccess.new(id: id.to_s, selector: selector)
payload.merge! method_details(method, args: args, delay: delay, camelize: camelize)
payload.select! { |_, v| v.present? }
%(<turbo-stream action="invoke" target="DOM"><template>#{payload.to_json}</template></turbo-stream>).html_safe
end
|