This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2023-04-26 18:21:32 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module ReactComponentHelper
|
|
|
|
def react_component(name, props = {}, &block)
|
|
|
|
data = { component: name.to_s.camelcase, props: Oj.dump(props) }
|
|
|
|
if block.nil?
|
|
|
|
div_tag_with_data(data)
|
|
|
|
else
|
|
|
|
content_tag(:div, data: data, &block)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def react_admin_component(name, props = {})
|
2023-06-02 15:00:27 +02:00
|
|
|
data = { 'admin-component': name.to_s.camelcase, props: Oj.dump(props) }
|
2023-04-26 18:21:32 +02:00
|
|
|
div_tag_with_data(data)
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def div_tag_with_data(data)
|
|
|
|
content_tag(:div, nil, data: data)
|
|
|
|
end
|
|
|
|
end
|