Module: SemanticallyTaggable::TagsHelper

Defined in:
lib/semantically_taggable/tags_helper.rb

Instance Method Summary collapse

Instance Method Details

#tag_cloud(tags, classes) ⇒ Object



3
4
5
6
7
8
9
10
11
12
13
14
# File 'lib/semantically_taggable/tags_helper.rb', line 3

def tag_cloud(tags, classes)
  tags = tags.all if tags.respond_to?(:all)

  return [] if tags.empty?

  max_count = tags.sort_by(&:count).last.count.to_f

  tags.each do |tag|
    index = ((tag.count / max_count) * (classes.size - 1)).round
    yield tag, classes[index]
  end
end