notebook/app/views/layouts/_quick_add_fab.html.erb
2020-08-09 04:11:06 -07:00

14 lines
496 B
Plaintext

<% if user_signed_in? %>
<%
quick_actions = @activated_content_types.map do |content_type_name|
content_class = content_type_name.constantize
{
name: "Create new #{content_type_name}",
icon: content_class.icon,
color: content_class.color,
route: main_app.new_polymorphic_path(content_class)
}
end
%>
<%= react_component("QuickPageCreatesFab", { actions: quick_actions }) unless defined?(@show_footer) && !@show_footer %>
<% end %>