summaryrefslogtreecommitdiff
path: root/lib/sidebars/context.rb
blob: 5db059322659f784c4439be4f4752bfd5d0cfa8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# frozen_string_literal: true

# This class stores all the information needed to display and
# render the sidebar and menus.
# It usually stores information regarding the context and calculated
# values where the logic is in helpers.
module Sidebars
  class Context
    attr_reader :current_user, :container, :route_is_active

    def initialize(current_user:, container:, **args)
      @current_user = current_user
      @container = container

      args.each do |key, value|
        singleton_class.public_send(:attr_reader, key) # rubocop:disable GitlabSecurity/PublicSend
        instance_variable_set("@#{key}", value)
      end

      @route_is_active ||= ->(_) { false }
    end
  end
end