2024-07-15 14:31:54 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
2024-07-15 02:19:27 +02:00
|
|
|
class ApplicationController < ActionController::Base
|
2024-07-21 00:33:38 +02:00
|
|
|
include Pagy::Backend
|
|
|
|
|
|
2024-09-05 22:54:38 +02:00
|
|
|
# allow_browser versions: :modern
|
2024-09-22 21:57:05 +02:00
|
|
|
helper_method :sidebar?
|
2024-09-05 22:54:38 +02:00
|
|
|
|
2024-07-15 14:31:54 +02:00
|
|
|
before_action :initialize_navbar
|
|
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
|
|
def initialize_navbar
|
2024-09-05 22:54:38 +02:00
|
|
|
return unless request.get?
|
|
|
|
|
|
2024-09-22 21:57:05 +02:00
|
|
|
@navbar_items = if rodauth.logged_in?
|
|
|
|
|
[
|
|
|
|
|
{ label: "Dashboard", icon: :speedometer2, path: :root },
|
|
|
|
|
{ label: Report.model_name.human(count: 2), icon: :'journal-text', path: :reports },
|
|
|
|
|
{ label: I18n.t("backoffice"), icon: :gear, path: :backoffice, active: %w[backoffice checklists checks links link_categories].include?(controller_name) },
|
|
|
|
|
{ label: Account.model_name.human, icon: :person, path: profile_path }
|
|
|
|
|
]
|
|
|
|
|
else
|
|
|
|
|
[ { label: "Login", icon: :'door-closed', path: rodauth.login_path, label_class: "text-info" } ]
|
|
|
|
|
end
|
2024-09-05 22:54:38 +02:00
|
|
|
@nav_path = controller_name
|
|
|
|
|
@search_url = nil
|
2024-09-22 21:57:05 +02:00
|
|
|
@sidebar_items = initialize_sidebar_items
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def sidebar?
|
|
|
|
|
@sidebar_items && @sidebar_items.any?
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def initialize_sidebar_items
|
|
|
|
|
[]
|
2024-07-15 14:31:54 +02:00
|
|
|
end
|
2024-07-15 02:19:27 +02:00
|
|
|
end
|