Module: Cms::ApplicationHelper

Defined in:
app/helpers/cms/application_helper.rb

Constant Summary collapse

{}

Instance Method Summary collapse

Instance Method Details

#sp_list_menu(options = {}) ⇒ Object



84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
# File 'app/helpers/cms/application_helper.rb', line 84

def sp_list_menu(options = {})

  if !options.has_key?(:name)
    logger.debug 'sp_list_menu require a :name option'
    return ''
  end

  max_depth = 0
  menu_id = nil
  link_options = {}
  start_menu_item = nil

  if Spud::Core.multisite_mode_enabled
    menu = SpudMenu.where(:name => options[:name], :site_id => current_site_id).first
  else
    menu = SpudMenu.where(:name => options[:name]).first
  end

  if menu.blank?
    return ''
  else
    menu_id = menu.id  
  end

  cache(['sp_list_menu', menu, options]) do
    link_options = options[:link_options] if options.has_key?(:link_options)

    start_menu_item = options[:start_menu_item_id] if options.has_key?(:start_menu_item_id)
    if options.has_key?(:id)
      content = "<ul id='#{options[:id]}' #{"class='#{options[:class]}'" if options.has_key?(:class)}>"
    else
      content = "<ul #{"class='#{options[:class]}'" if options.has_key?(:class)}>"
    end
    max_depth = options[:max_depth] if options.has_key?(:max_depth)

    menu_items = SpudMenuItem.where(:spud_menu_id => menu_id).select("
      #{SpudMenuItem.table_name}.id as id,
      #{SpudMenuItem.table_name}.url as url,
      #{SpudMenuItem.table_name}.classes as classes,
      #{SpudMenuItem.table_name}.parent_type as parent_type,
      #{SpudMenuItem.table_name}.menu_order as menu_order,
      #{SpudMenuItem.table_name}.parent_id as parent_id,
      #{SpudMenuItem.table_name}.name as name,
      #{SpudPage.table_name}.url_name as url_name").order(:parent_type,:parent_id).joins("LEFT JOIN #{SpudPage.table_name} ON (#{SpudPage.table_name}.id = #{SpudMenuItem.table_name}.spud_page_id)").to_a

    grouped_items = menu_items.group_by(&:parent_type)

    if grouped_items["SpudMenu"].blank?
      return ""
    end

    child_items = grouped_items["SpudMenuItem"].blank? ? [] : grouped_items["SpudMenuItem"].group_by(&:parent_id)

    parent_items = grouped_items["SpudMenu"]
    if start_menu_item != nil
      parent_items = child_items[start_menu_item]
    end

    parent_items.sort_by{|p| p.menu_order}.each do |item|
      active = false
      if !item.url_name.blank?
        if current_page?(page_path(:id => item.url_name))
          active = true
        elsif item.url_name == Spud::Cms.root_page_name && current_page?(root_path)
          active = true
        end
      elsif current_page?(item.url)
        active = true
      end
      link_tag = link_to item.name, !item.url_name.blank? ? (item.url_name == Spud::Cms.root_page_name ? root_path() : page_path(:id => item.url_name))  : item.url, {:class => "#{'menu-active' if active} #{item.classes if !item.classes.blank?}"}.merge(link_options)
      content += "<li class='#{"menu-active" if active} #{item.classes if !item.classes.blank?}'>#{link_tag}"
      if max_depth == 0 || max_depth > 1
        content += sp_list_menu_item(child_items,item.id,2,max_depth,options)
      end
      content += "</li>"
    end

    content += "</ul>"

    concat content.html_safe
  end
end

#sp_list_pages(options = {}) ⇒ Object



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
78
79
80
81
82
# File 'app/helpers/cms/application_helper.rb', line 23

def sp_list_pages(options = {})

  pages = SpudPage.viewable.published_pages

  if Spud::Core.multisite_mode_enabled
    site_config = Spud::Core.site_config_for_host(request.host_with_port)
    pages = pages.site(site_config[:site_id]) if !site_config.blank?
  end
  start_page = nil
  max_depth = 0
  active_class = "menu-active"

  if !options.blank?
    if options.has_key?(:exclude)

      pages = pages.where(["name NOT IN (?)",options[:exclude]])
    end
    if options.has_key?(:start_page_id)
      start_page = options[:start_page_id]
    end
    if options.has_key?(:id)
      content = "<ul id='#{options[:id]}' #{"class='#{options[:class]}'" if options.has_key?(:class)}>"
    else
      content = "<ul #{"class='#{options[:class]}'" if options.has_key?(:class)}>"
    end
    if options.has_key?(:active_class)
      active_class = options[:acive_class]
    end
    if options.has_key?(:max_depth)
      max_depth = options[:max_depth]
    end

  else
    content = "<ul>"
  end

  pages = pages.to_a.group_by(&:spud_page_id)
  if pages[start_page].blank?

    return ""
  end
  pages[start_page].sort_by{|p| p.page_order}.each do |page|
    active = false
    if !page.url_name.blank?
      if current_page?(page_path(:id => page.url_name))
        active = true
      elsif page.url_name == Spud::Cms.root_page_name && current_page?(root_path)
        active = true
      end
    end
    content += "<li class='#{active_class if active}'><a href='#{page_path(:id => page.url_name)}'>#{page.name}</a>"
    if max_depth == 0 || max_depth > 1
      content += sp_list_page(page,pages,2,max_depth,options)
    end
    content += "</li>"
  end
  content += "</ul>"

  return content.html_safe
end

#sp_menu_with_seperator(options = {}) ⇒ Object



167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
# File 'app/helpers/cms/application_helper.rb', line 167

def sp_menu_with_seperator(options={})

  seperator = "&nbsp;|&nbsp;".html_safe
  if(options.has_key?(:seperator))
    seperator = options[:seperator]
  end

  menu = SpudMenu.where(:name => options[:name])
  if Spud::Core.multisite_mode_enabled
    site_config = Spud::Core.site_config_for_host(request.host_with_port)
    menu = menu.site(site_config[:site_id]) if !site_config.blank?
  end
  menu = menu.first
  if(menu.blank?)
    return ""
  end
  menu_items = menu.spud_menu_items_combined.select("
    #{SpudMenuItem.table_name}.id as id,
    #{SpudMenuItem.table_name}.url as url,
    #{SpudMenuItem.table_name}.classes as classes,
    #{SpudMenuItem.table_name}.parent_type as parent_type,
    #{SpudMenuItem.table_name}.menu_order as menu_order,
    #{SpudMenuItem.table_name}.parent_id as parent_id,
    #{SpudMenuItem.table_name}.name as name,
    #{SpudPage.table_name}.url_name as url_name").order(:parent_type,:parent_id).joins("LEFT JOIN #{SpudPage.table_name} ON (#{SpudPage.table_name}.id = #{SpudMenuItem.table_name}.spud_page_id)").to_a

  menu_tags = []
  menu_items.sort_by{|p| p.menu_order}.each do |item|
    menu_tags += ["<a #{"class='#{item.classes}' " if !item.classes.blank?}href='#{!item.url_name.blank? ? (item.url_name == Spud::Cms.root_page_name ? root_path() : page_path(:id => item.url_name)) : item.url}'>#{item.name}</a>"]
  end

  return menu_tags.join(seperator).html_safe
end

#sp_snippet(name, snippets = nil) ⇒ Object



4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# File 'app/helpers/cms/application_helper.rb', line 4

def sp_snippet(name, snippets=nil)
  if name.blank?
    return ''
  end
  if !snippets.blank?
    snippet = snippets.select {|s| s.name == name}
  else
    snippet = SpudSnippet.where(:name => name).first
  end
  if !snippet.blank?
    # cache(snippet) do
    #   concat snippet.content_processed.html_safe
    # end
    snippet.content_processed.html_safe
  else
    return nil
  end
end