This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2023-04-26 09:21:32 -07: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 06:00:27 -07:00
|
|
|
data = { 'admin-component': name.to_s.camelcase, props: Oj.dump(props) }
|
2023-04-26 09:21:32 -07:00
|
|
|
div_tag_with_data(data)
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def div_tag_with_data(data)
|
|
|
|
content_tag(:div, nil, data: data)
|
|
|
|
end
|
|
|
|
end
|