Class: Avo::Sidebar::LinkComponent

Inherits:
ViewComponent::Base
  • Object
show all
Defined in:
app/components/avo/sidebar/link_component.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(label: nil, path: nil, active: :inclusive, target: nil, data: {}, icon: nil) ⇒ LinkComponent

Returns a new instance of LinkComponent.



11
12
13
14
15
16
17
18
# File 'app/components/avo/sidebar/link_component.rb', line 11

def initialize(label: nil, path: nil, active: :inclusive, target: nil, data: {}, icon: nil)
  @label = label
  @path = path
  @active = active
  @target = target
  @data = data
  @icon = icon
end

Instance Attribute Details

#activeObject (readonly)

Returns the value of attribute active.



4
5
6
# File 'app/components/avo/sidebar/link_component.rb', line 4

def active
  @active
end

#dataObject (readonly)

Returns the value of attribute data.



8
9
10
# File 'app/components/avo/sidebar/link_component.rb', line 8

def data
  @data
end

#iconObject (readonly)

Returns the value of attribute icon.



9
10
11
# File 'app/components/avo/sidebar/link_component.rb', line 9

def icon
  @icon
end

#labelObject (readonly)

Returns the value of attribute label.



6
7
8
# File 'app/components/avo/sidebar/link_component.rb', line 6

def label
  @label
end

#pathObject (readonly)

Returns the value of attribute path.



7
8
9
# File 'app/components/avo/sidebar/link_component.rb', line 7

def path
  @path
end

#targetObject (readonly)

Returns the value of attribute target.



5
6
7
# File 'app/components/avo/sidebar/link_component.rb', line 5

def target
  @target
end

Instance Method Details

#classesObject



32
33
34
# File 'app/components/avo/sidebar/link_component.rb', line 32

def classes
  "px-4 pr-0 flex-1 flex mx-6 leading-none py-2 text-black rounded font-medium hover:bg-gray-100 gap-1"
end

#is_external?Boolean

Returns:

  • (Boolean)


20
21
22
23
24
25
# File 'app/components/avo/sidebar/link_component.rb', line 20

def is_external?
  # If the path contains the scheme, check if it includes the root path or not
  return !path.include?(Avo.mount_path) if URI(path).scheme.present?

  false
end

For external links active_link_to marks them all as active.



28
29
30
# File 'app/components/avo/sidebar/link_component.rb', line 28

def link_method
  is_external? ? :link_to : :active_link_to
end