diff --git a/app/controllers/stats_controller.rb b/app/controllers/stats_controller.rb index cc0fe6cf..5512abad 100644 --- a/app/controllers/stats_controller.rb +++ b/app/controllers/stats_controller.rb @@ -552,49 +552,11 @@ class StatsController < ApplicationController end def get_stats_tags - # tag cloud code inspired by this article - # http://www.juixe.com/techknow/index.php/2006/07/15/acts-as-taggable-tag-cloud/ + tags = Stats::TagCloudQuery.new(current_user).result + @tag_cloud = Stats::TagCloud.new(tags) - levels=10 - # TODO: parameterize limit - - # Get the tag cloud for all tags for actions - query = "SELECT tags.id, name, count(*) AS count" - query << " FROM taggings, tags, todos" - query << " WHERE tags.id = tag_id" - query << " AND taggings.taggable_id = todos.id" - query << " AND todos.user_id="+current_user.id.to_s+" " - query << " AND taggings.taggable_type='Todo' " - query << " GROUP BY tags.id, tags.name" - query << " ORDER BY count DESC, name" - query << " LIMIT 100" - @tags_for_cloud = Tag.find_by_sql(query).sort_by { |tag| tag.name.downcase } - tag_counts = @tags_for_cloud.map(&:count) - max = tag_counts.max || 0 - @tags_min = tag_counts.min || 0 - - @tags_divisor = ((max - @tags_min) / levels) + 1 - - # Get the tag cloud for all tags for actions - query = "SELECT tags.id, tags.name AS name, count(*) AS count" - query << " FROM taggings, tags, todos" - query << " WHERE tags.id = tag_id" - query << " AND todos.user_id=? " - query << " AND taggings.taggable_type='Todo' " - query << " AND taggings.taggable_id=todos.id " - query << " AND (todos.created_at > ? OR " - query << " todos.completed_at > ?) " - query << " GROUP BY tags.id, tags.name" - query << " ORDER BY count DESC, name" - query << " LIMIT 100" - @tags_for_cloud_90days = Tag.find_by_sql( - [query, current_user.id, @cut_off_3months, @cut_off_3months] - ).sort_by { |tag| tag.name.downcase } - - tag_counts_90days = @tags_for_cloud_90days.map(&:count) - max_90days = tag_counts_90days.max || 0 - @tags_min_90days = tag_counts_90days.min || 0 - @tags_divisor_90days = ((max_90days - @tags_min_90days) / levels) + 1 + tags = Stats::TagCloudQuery.new(current_user, @cut_off_3months).result + @tag_cloud_90days = Stats::TagCloud.new(tags) end def get_ids_from (actions, week_from, week_to, at_end) diff --git a/app/models/stats/tag_cloud.rb b/app/models/stats/tag_cloud.rb new file mode 100644 index 00000000..ef03c8fc --- /dev/null +++ b/app/models/stats/tag_cloud.rb @@ -0,0 +1,38 @@ +# tag cloud code inspired by this article +# http://www.juixe.com/techknow/index.php/2006/07/15/acts-as-taggable-tag-cloud/ +module Stats + class TagCloud + + attr_reader :levels, :tags + def initialize(tags) + @levels = 10 + @tags = tags.sort_by { |tag| tag.name.downcase } + end + + def empty? + tags.empty? + end + + def font_size(tag) + (9 + 2*(tag.count-min)/divisor) + end + + private + + def max + @max ||= counts.max + end + + def min + @min ||= counts.min + end + + def divisor + @divisor ||= ((max - min) / levels) + 1 + end + + def counts + @counts ||= tags.map {|t| t.count} + end + end +end diff --git a/app/models/stats/tag_cloud_query.rb b/app/models/stats/tag_cloud_query.rb new file mode 100644 index 00000000..e754cc6c --- /dev/null +++ b/app/models/stats/tag_cloud_query.rb @@ -0,0 +1,38 @@ +module Stats + class TagCloudQuery + + attr_reader :user, :cutoff + def initialize(user, cutoff = nil) + @user = user + @cutoff = cutoff + end + + def result + Tag.find_by_sql(query_options) + end + + def query_options + options = [sql, user.id] + options += [cutoff, cutoff] if cutoff + options + end + + def sql + # TODO: parameterize limit + query = "SELECT tags.id, tags.name AS name, count(*) AS count" + query << " FROM taggings, tags, todos" + query << " WHERE tags.id = tag_id" + query << " AND todos.user_id=? " + query << " AND taggings.taggable_type='Todo' " + query << " AND taggings.taggable_id=todos.id " + if cutoff + query << " AND (todos.created_at > ? OR " + query << " todos.completed_at > ?) " + end + query << " GROUP BY tags.id, tags.name" + query << " ORDER BY count DESC, name" + query << " LIMIT 100" + end + + end +end diff --git a/app/views/stats/_tags.html.erb b/app/views/stats/_tags.html.erb index e1f53f83..98140297 100755 --- a/app/views/stats/_tags.html.erb +++ b/app/views/stats/_tags.html.erb @@ -1,34 +1,19 @@
<%= t('stats.tag_cloud_description') %>
- -- <% if @tags_for_cloud.size < 1 +
<%= t("stats.tag_cloud#{key}_description") %>
++<% + if tag_cloud.empty? t('stats.no_tags_available') - else - @tags_for_cloud.each do |t| %> - <%= link_to t.name, tag_path(t.name), { - :style => "font-size: " + (9 + 2*(t.count.to_i-@tags_min)/@tags_divisor).to_s + "pt", - :title => t.count.to_s+" #{t('common.actions_midsentence', :count => t.count)}"} - -%> <% + else + tag_cloud.tags.each do |t| +%><%= + link_to t.name, tag_path(t.name), { + :style => "font-size: " + "#{tag_cloud.font_size(t)}pt", + :title => "#{t.count} #{t('common.actions_midsentence', :count => t.count)}"} +-%><% + end end - end-%> +-%>
<%= t('stats.tag_cloud_90days_description') %>
-- <% if @tags_for_cloud_90days.size < 1 - t('stats.no_tags_available') - else - @tags_for_cloud_90days.each do |t| %> - <%= link_to t.name, tag_path(t.name), { - :style => "font-size: " + (9 + 2*(t.count.to_i-@tags_min_90days)/@tags_divisor_90days).to_s + "pt", - :title => t.count.to_s+" #{t('common.actions_midsentence', :count => t.count)}"} - -%> <% - end - end-%> -
-