git_stats/lib/git_stats/stats_view/view.rb

78 lines
2.5 KiB
Ruby

# -*- encoding : utf-8 -*-
module GitStats
module StatsView
class View
def initialize(view_data, out_path)
@view_data, @out_path = view_data, out_path
@layout = Tilt.new("../../../../templates/layout.haml".absolute_path)
end
def render_all
prepare_static_content
prepare_assets
all_templates.reject {|t| t =~ /author_details/}.each do |template|
output = Template.new(template, @layout).render(@view_data, author: @view_data.repo, links: links)
write(output, "#@out_path/#{template}.html")
end
render_authors
end
def render_authors
done = []
@view_data.repo.authors.sort_by { |a| -a.commits.size }.each do |author|
next if done.include? author.dirname
done << author.dirname
(all_templates('activity/') + all_templates('author_details')).each do |template|
output = Template.new(template, @layout).render(@view_data,
author: author,
links: links,
active_page: "/authors/#{author.dirname}/#{template}")
write(output, "#@out_path/authors/#{author.dirname}/#{template}.html")
end
end
end
def all_templates(root = '')
(Dir["../../../../templates/#{root}**/[^_]*.haml".absolute_path].map {
|f| Pathname.new(f)
}.map { |f|
f.relative_path_from(Pathname.new('../../../../templates'.absolute_path)).sub_ext('')
}.map(&:to_s) - %w(layout))
end
private
def write(output, write_file)
FileUtils.mkdir_p(File.dirname(write_file))
File.open(write_file, 'w') { |f| f.write output }
end
def links
{
general: 'general.html',
activity: 'activity/by_date.html',
authors: 'authors/best_authors.html',
files: 'files/by_date.html',
lines: 'lines/by_date.html'
}
end
def prepare_static_content
create_out_dir
FileUtils.cp_r(Dir["../../../../templates/static/*".absolute_path], @out_path)
end
def create_out_dir
FileUtils.mkdir_p(@out_path) unless Dir.exists?(@out_path)
end
def prepare_assets
FileUtils.cp_r('../../../../templates/assets'.absolute_path, @out_path)
end
end
end
end