Sha256: f818d7e0e6a0a1d7b24fa146345005e36ac3e53d30ee2a7076987473908d6e15
Contents?: true
Size: 1.32 KB
Versions: 58
Compression:
Stored size: 1.32 KB
Contents
require 'pagy' module CmAdmin module ViewHelpers module NavigationHelper include Pagy::Frontend def navigation_links(navigation_type) CmAdmin.config.cm_admin_models.map { |model| if model.is_visible_on_sidebar path = CmAdmin::Engine.mount_path + '/' + model.name.underscore.pluralize if policy([:cm_admin, model.name.classify.constantize]).index? if navigation_type == "sidebar" content_tag(:a, href: path) do content_tag(:div, class: 'menu-item') do content_tag(:span, class: 'menu-icon') do concat tag.i class: "#{model.icon_name}" end + model.name.titleize.pluralize end end elsif navigation_type == "quick_links" content_tag(:a, href: path, class: 'visible') do content_tag(:div, class: 'result-item') do content_tag(:span) do concat tag.i class: "#{model.icon_name}" end + content_tag(:span) do model.name end end end end end end }.join.html_safe end end end end
Version data entries
58 entries across 58 versions & 1 rubygems