Welcome to mirror list, hosted at ThFree Co, Russian Federation.

navigation.rb « gitlab « lib - gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 014f567f9c08857bc2ee6c992eaec04c05ea09df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# frozen_string_literal: true

require_relative '../helpers/generic'
require_relative '../helpers/icons_helper'

module Gitlab
  class Navigation
    include Nanoc::Helpers::Generic
    include Nanoc::Helpers::IconsHelper

    def initialize(items, item)
      @items = items
      @item = item

      disable_inactive_sections!
      omnibus_only_items!
    end

    def nav_items
      @nav_items ||= items["/_data/navigation.yaml"]
    end

    def element_href(element)
      "/#{element.url}"
    end

    def show_element?(element)
      item.path == "/#{element.url}"
    end

    def id_for(element)
      element.title.gsub(/[\s\/()]/, '')
    end

    def children
      @children ||= nav_items.fetch(:sections, []).map { |section| Section.new(section) }
    end

    private

    attr_reader :items, :item

    def disable_inactive_sections!
      return unless omnibus?

      children.each do |section|
        section.disable! unless has_active_element?([section])
      end
    end

    # Remove sections and categories menu items missing in Omnibus
    def omnibus_only_items!
      return unless omnibus?

      children.filter! do |section|
        if allowed_link?(section.url)
          section.children.filter! { |category| allowed_link?(category.url) }
          true
        end
      end
    end

    def allowed_link?(link)
      link.start_with?('ee/') || link.start_with?('http')
    end

    def has_active_element?(collection)
      return false unless collection

      collection.any? { |element| show_element?(element) || has_active_element?(element.children) }
    end

    def dir
      @dir ||= item.identifier.to_s[%r{(?<=/)[^/]+}]
    end
  end
end