We only want to render the account link and login items in the header. And we want only render the Multitenancy and Administrators sections in the admin sidebar. We include the administrators management so it's possible to give permissions to other users to manage tenants. In order to restrict access to other sections by typing the URL or following a link, we're only enabling the rest of the routes when we aren't in the multitenancy management mode.
37 lines
789 B
Ruby
37 lines
789 B
Ruby
class Layout::AdminHeaderComponent < ApplicationComponent
|
|
attr_reader :user
|
|
use_helpers :namespace, :namespaced_root_path, :show_admin_menu?
|
|
|
|
def initialize(user)
|
|
@user = user
|
|
end
|
|
|
|
private
|
|
|
|
def namespaced_header_title
|
|
if namespace == "moderation/budgets"
|
|
t("moderation.header.title")
|
|
elsif namespace == "management"
|
|
t("management.dashboard.index.title")
|
|
else
|
|
t("#{namespace}.header.title")
|
|
end
|
|
end
|
|
|
|
def namespace_path
|
|
if namespace == "officing"
|
|
"#"
|
|
else
|
|
namespaced_root_path
|
|
end
|
|
end
|
|
|
|
def show_account_menu?
|
|
show_admin_menu?(user) || namespace != "management"
|
|
end
|
|
|
|
def show_link_to_root_path?
|
|
!Rails.application.multitenancy_management_mode?
|
|
end
|
|
end
|