Module: EnjuBookmark::BookmarkHelper

Defined in:
lib/enju_bookmark/bookmark_helper.rb

Instance Method Summary collapse

Instance Method Details



3
4
5
# File 'lib/enju_bookmark/bookmark_helper.rb', line 3

def link_to_tag(tag)
  link_to tag, manifestations_path(tag: tag.name)
end

#render_tag_cloud(tags, options = {}) ⇒ Object



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
# File 'lib/enju_bookmark/bookmark_helper.rb', line 7

def render_tag_cloud(tags, options = {})
  # TODO: add options to specify different limits and sorts
  # tags = Tag.all(:limit => 100, :order => 'taggings_count DESC').sort_by(&:name)

  # TODO: add option to specify which classes you want and overide this if you want?
  classes = %w(popular v-popular vv-popular vvv-popular vvvv-popular)

  max, min = 0, 0
  tags.each do |tag|
    # if options[:max] or options[:min]
    #  max = options[:max].to_i
    #  min = options[:min].to_i
    # end
    max = tag.taggings.size if tag.taggings.size > max
    min = tag.taggings.size if tag.taggings.size < min
  end
  divisor = ((max - min).div(classes.size)) + 1

   :div, class: "hTagcloud" do
     :ul, class: "popularity" do
      tags.collect do |tag|
        concat( :li, link_to(tag.name, manifestations_path(tag: tag.name), class: classes[(tag.taggings.size - min).div(divisor)]) + "\n")
      end
    end
  end
end