Sha256: 1acbfc38daeed6fd2d8130d231574ef41380ca14b4452380753f093cac537593

Contents?: true

Size: 763 Bytes

Versions: 31

Compression:

Stored size: 763 Bytes

Contents

- if tree.root?
  - tree.populate_urls_in_branches(self)
- visible ||= tree.root?
- if tree.visible?(self)
  %ul{:class => !tree.root? && "subtree", :style => "display:#{visible ? "block" : "none"}"}
    - last_branch = tree.branches.last
    - tree.branches.each do |branch|
      - if branch.visible?(self)
        - active = branch.active?(self)
        - classes = [] << (active && "active") << (branch.subtree? && "with-subtree") << (!tree.root? && branch == last_branch && "last-in-subtree")
        %li{:class => classes.reject{|e| !e}.join(" ")}
          = link_to branch.title, branch.options[:calculated_url] || "#"
          - if branch.subtree?
            = render_component(:"lolita/navigation", :tree, :tree => branch.children, :visible => active)

Version data entries

31 entries across 31 versions & 1 rubygems

Version Path
lolita-4.0.11 app/views/components/lolita/navigation/_tree.html.haml
lolita-4.2.0 app/views/components/lolita/navigation/_tree.html.haml
lolita-4.0.10 app/views/components/lolita/navigation/_tree.html.haml
lolita-4.0.9 app/views/components/lolita/navigation/_tree.html.haml
lolita-4.0.8 app/views/components/lolita/navigation/_tree.html.haml
lolita-4.0.7 app/views/components/lolita/navigation/_tree.html.haml
lolita-4.0.6 app/views/components/lolita/navigation/_tree.html.haml
lolita-4.0.5 app/views/components/lolita/navigation/_tree.html.haml
lolita-4.0.4 app/views/components/lolita/navigation/_tree.html.haml
lolita-4.0.3 app/views/components/lolita/navigation/_tree.html.haml
lolita-4.0.2 app/views/components/lolita/navigation/_tree.html.haml
lolita-4.0.1 app/views/components/lolita/navigation/_tree.html.haml
lolita-4.0.0 app/views/components/lolita/navigation/_tree.html.haml
lolita-3.4.3 app/views/components/lolita/navigation/_tree.html.haml
lolita-3.4.2 app/views/components/lolita/navigation/_tree.html.haml
lolita-3.4.1 app/views/components/lolita/navigation/_tree.html.haml
lolita-3.4.0 app/views/components/lolita/navigation/_tree.html.haml
lolita-3.3.9 app/views/components/lolita/navigation/_tree.html.haml
lolita-3.3.8 app/views/components/lolita/navigation/_tree.html.haml
lolita-3.3.7 app/views/components/lolita/navigation/_tree.html.haml