2020-07-29 11:19:20 +02:00
|
|
|
module FoodsoftLinks
|
|
|
|
class Engine < ::Rails::Engine
|
|
|
|
def navigation(primary, context)
|
|
|
|
primary.item :links, I18n.t('navigation.links'), '#', if: Proc.new { visble_links(context).any? } do |subnav|
|
|
|
|
visble_links(context).each do |link|
|
|
|
|
subnav.item link.id, link.name, context.link_path(link)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
# move to left before admin item
|
|
|
|
if i = primary.items.index(primary[:admin])
|
|
|
|
primary.items.insert(i, primary.items.delete_at(-1))
|
|
|
|
end
|
2019-11-04 03:52:07 +01:00
|
|
|
|
|
|
|
unless primary[:admin].nil?
|
|
|
|
sub_nav = primary[:admin].sub_navigation
|
|
|
|
sub_nav.items <<
|
|
|
|
SimpleNavigation::Item.new(primary, :links, I18n.t('navigation.admin.links'), context.admin_links_path)
|
|
|
|
# move to right before config item
|
|
|
|
if i = sub_nav.items.index(sub_nav[:config])
|
|
|
|
sub_nav.items.insert(i, sub_nav.items.delete_at(-1))
|
|
|
|
end
|
|
|
|
end
|
2020-07-29 11:19:20 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def visble_links(context)
|
|
|
|
ret = Link.ordered
|
|
|
|
|
|
|
|
current_user = context.current_user
|
|
|
|
unless current_user.role_admin?
|
|
|
|
workgroups = current_user.workgroups.map(&:id)
|
|
|
|
ret = ret.where(workgroup: [nil] + workgroups)
|
|
|
|
end
|
|
|
|
|
|
|
|
ret
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|