added excel export and charts

This commit is contained in:
Harry Bomrah 2016-06-02 17:57:23 +08:00
parent 016d87dd96
commit af0dfede24
9 changed files with 305 additions and 1 deletions

View File

@ -22,6 +22,28 @@ class Admin::WritingConferencesController < OrbitMemberController
end
end
def analysis_report
role = params[:role_id]
year_start = params[:year_start].to_i
year_end = params[:year_end].to_i
graph_by = params[:graph_by]
@data = get_chart_data(year_start,year_end,role,params[:graph_by])
render :layout => false
end
def download_excel
year_start = params[:year_start].to_i
year_end = params[:year_end].to_i
@data = get_data_for_excel(year_start,year_end)
respond_to do |format|
format.xlsx {
response.headers['Content-Disposition'] = 'attachment; filename="conference_papers.xlsx"'
}
end
end
def create
if !conference_params['member_profile_id'].blank?

View File

@ -129,4 +129,65 @@ module Admin::PersonalConferencesHelper
conference.member_profile = mp
conference.save
end
def get_data_for_excel(year_start,year_end)
data = []
roles = Role.where(:disabled => false, :title.ne => "", :title.ne => nil).asc(:key)
roles.each do |role|
d = {}
d["name"] = role.title
mps = role.member_profile_ids
d1 = DateTime.new(year_start,1,1,0,0)
d2 = DateTime.new(year_end,12,31,23,59)
d["data"] = WritingConference.where(:publication_date.gte => d1, :publication_date.lte => d2, :member_profile_id.in => mps) rescue []
data << d
end
return data
end
def get_chart_data(year_start,year_end,role,type)
case type
when "paper_type"
jls = ConferencePaperType.all
when "level_type"
jls = ConferencePaperLevel.all
when "author_type"
jls = ConferenceAuthorType.all
end
finaldata = []
role = Role.find(role) rescue nil
mps = []
if !role.nil?
mps = role.member_profile_ids
end
jls.each do |jl|
data = {}
data["name"] = jl.title
data["data"] = {}
(year_start..year_end).each do |year|
d1 = DateTime.new(year,1,1,0,0)
d2 = DateTime.new(year,12,31,23,59)
t = jl.writing_conferences.where(:publication_date.gte => d1, :publication_date.lte => d2, :member_profile_id.in => mps).count rescue 0
data["data"][year.to_s] = t
end
finaldata << data
end
data = {"name" => "N/A", "data" => {}}
(year_start..year_end).each do |year|
d1 = DateTime.new(year,1,1,0,0)
d2 = DateTime.new(year,12,31,23,59)
case type
when "paper_type"
t = WritingConference.where(:publication_date.gte => d1, :publication_date.lte => d2, :member_profile_id.in => mps, :conference_paper_type_id => nil).count rescue 0
when "level_type"
t = WritingConference.where(:publication_date.gte => d1, :publication_date.lte => d2, :member_profile_id.in => mps, :conference_paper_level_ids => nil).count rescue 0
when "author_type"
t = WritingConference.where(:publication_date.gte => d1, :publication_date.lte => d2, :member_profile_id.in => mps, :conference_paper_author_type_ids => nil).count rescue 0
end
data["data"][year.to_s] = t
end
finaldata << data
finaldata
end
end

View File

@ -0,0 +1,116 @@
<% # encoding: utf-8 %>
<% content_for :page_specific_css do %>
<%= stylesheet_link_tag "lib/main-forms" %>
<%= stylesheet_link_tag "lib/fileupload" %>
<%= stylesheet_link_tag "lib/main-list" %>
<%= stylesheet_link_tag "lib/main-form-col2" %>
<style>
.graph-type {
margin-right: 10px !important;
}
.analysis-show-area{
margin-top: 25px;
}
.role {
margin: 15px auto;
width: 90%;
height: 400px;
}
.role h3{
border-bottom: 1px solid #000;
}
.role .graph-area{
text-align: center;
}
.role .graph-area .loader {
margin-top: 170px;
}
</style>
<% end %>
<% content_for :page_specific_javascript do %>
<%= javascript_include_tag "//www.google.com/jsapi", "chartkick"%>
<%= javascript_include_tag "justgage.1.0.1.min" %>
<%= javascript_include_tag "raphael.2.1.0.min" %>
<%= javascript_include_tag "validator" %>
<% end %>
<div id="analysis-area">
<div class="analysis-form">
<form id="analysis-form" action="/admin/journal_papers/analysis_report" class="form-horizontal main-forms">
<div class="input-area">
<div class="control-group input-title">
<label class="control-label muted"><%= t("personal_journal.year") %> : </label>
<div class="controls">
<%= select_year(DateTime.now.year - 5, {:start_year => DateTime.now.year, :end_year => 1950}, {:name => 'start_year', :class => "span1"} ) %>
-
<%= select_year(DateTime.now.year, {:start_year => DateTime.now.year, :end_year => 1950}, {:name => 'end_year', :class => "span1"} ) %>
</div>
</div>
<div class="control-group input-title">
<label class="control-label muted"><%= t("personal_journal.graph_by") %> : </label>
<div class="controls">
<%= t("personal_journal.paper_type") %> <input type="radio" name="graph_by" class="graph-type" value="paper_type">
<%= t("personal_journal.level_type") %> <input type="radio" name="graph_by" class="graph-type" value="level_type">
<%= t("personal_journal.author_type") %> <input data-fv-validation="required;" data-fv-messages="Please select atleast one.;" type="radio" name="graph_by" class="graph-type" value="author_type">
</div>
</div>
</div>
<div class="form-actions">
<button id="generate_graph" class="btn btn-info">Graphs</button>
<a href="" id="generate_excel" class="btn btn-primary">Export</a>
</div>
</form>
</div>
<div class="analysis-show-area hide in">
<% Role.where(:disabled => false, :title.ne => "", :title.ne => nil).asc(:key).each do |role| %>
<div class="role muted" data-role-id="<%= role.id.to_s %>">
<h3><%= role.title %></h3>
<div class="graph-area">
<img class="loader" src="/assets/preloader.gif" alt="loading" width="70" height="70">
</div>
</div>
<% end %>
</div>
</div>
<script type="text/javascript">
var form = new FormValidator($("#analysis-form")),
roleArea = $("#analysis-area .analysis-show-area"),
totalRoles = roleArea.find(".role").length;
form.form.on("submit",function(){return false;})
$("#generate_excel").on("click",function(){
window.location.href = "/admin/writing_conferences/download_excel.xlsx?" + "year_start=" + form.form.find("select[name=start_year]").val() + "&year_end=" + form.form.find("select[name=end_year]").val();
return false;
})
$("#generate_graph").on("click",function(){
if(form.isFormValidated()){
generateCharts(0);
roleArea.removeClass("hide");
}
return false;
})
var generateCharts = function(index){
var role = roleArea.find(".role").eq(index);
$.ajax({
url : "/admin/writing_conferences/analysis_report",
data : {"role_id" : role.data("role-id"), "year_start" : form.form.find("select[name=start_year]").val(), "year_end" : form.form.find("select[name=end_year]").val(), "graph_by" : form.form.find("input[name=graph_by]:checked").val()},
type : "get",
dataType : "html"
}).done(function(html){
role.find(".graph-area").html(html);
if(index < totalRoles){
generateCharts(index + 1);
}
}).error(function(){
role.find(".graph-area").html("There was an error loading this graph.");
if(index < totalRoles){
generateCharts(index + 1);
}
})
}
</script>

View File

@ -0,0 +1 @@
<%= column_chart @data, :id => params[:role_id], :height => "350px", :xtitle => "Year", :ytitle => "Total number" %>

View File

@ -0,0 +1,99 @@
# encoding: utf-8
wb = xlsx_package.workbook
@data.each_with_index do |role,idx|
data = role["data"]
wb.add_worksheet(name: role["name"] + "-" + idx.to_s) do |sheet|
heading = sheet.styles.add_style(:b => true, :locked => true)
row = ["Name"]
@site_in_use_locales.each do |locale|
row << t("personal_conference.paper_title") + " - " + t(locale.to_s)
end
@site_in_use_locales.each do |locale|
row << t("personal_conference.conference_title") + " - " + t(locale.to_s)
end
@site_in_use_locales.each do |locale|
row << t("personal_conference.location") + " - " + t(locale.to_s)
end
@site_in_use_locales.each do |locale|
row << t("personal_conference.sponsor") + " - " + t(locale.to_s)
end
@site_in_use_locales.each do |locale|
row << t("personal_conference.authors") + " - " + t(locale.to_s)
end
row << t("personal_conference.year")
row << t("personal_conference.language")
row << t("personal_conference.period_start_date")
row << t("personal_conference.period_end_date")
row << t("personal_conference.paper_level")
row << t("personal_conference.paper_type")
row << t("personal_conference.author_type")
row << t("personal_conference.number_of_authors")
row << t("personal_conference.isbn")
row << t("personal_conference.publication_date")
row << t("personal_conference.isi_number")
row << t("personal_conference.url")
row << t("personal_conference.keywords")
row << t("personal_conference.abstract")
row << t("personal_conference.note")
sheet.add_row row, :style => heading
data.each do |cp|
row = [cp.member_profile.name]
@site_in_use_locales.each do |locale|
row << cp.paper_title_translations[locale.to_s]
end
@site_in_use_locales.each do |locale|
row << cp.conference_title_translations[locale.to_s]
end
@site_in_use_locales.each do |locale|
row << cp.location_translations[locale.to_s]
end
@site_in_use_locales.each do |locale|
row << cp.sponsor_translations[locale.to_s]
end
@site_in_use_locales.each do |locale|
row << cp.authors_translations[locale.to_s]
end
row << cp.year
row << cp.language
row << cp.period_start_date.strftime("%Y-%m-%d") rescue ""
row << cp.period_end_date.strftime("%Y-%m-%d") rescue ""
row << (cp.conference_paper_levels.map{|jl| jl.title}.join(", ") rescue "")
row << (cp.conference_paper_type.title rescue "")
row << (cp.conference_author_types.map{|jl| jl.title}.join(", ") rescue "")
row << cp.number_of_authors
row << cp.isbn
row << cp.publication_date.strftime("%Y-%m-%d") rescue ""
row << cp.isi_number
row << cp.url
row << cp.keywords
row << cp.abstract
row << cp.note
sheet.add_row row
end
end
end

View File

@ -38,6 +38,7 @@ en:
file : "File"
file_name : "File Name"
description : "File Description"
graph_by : "Graph by"
frontend:
writing_conferences: "Conference Paper Frontend"

View File

@ -37,6 +37,7 @@ zh_tw:
file : "檔案"
file_name : "檔案名稱"
description : "描述"
graph_by : "Graph by"
frontend:
writing_conferences: "研討會論文前台"

View File

@ -9,6 +9,9 @@ Rails.application.routes.draw do
resources :writing_conferences do
collection do
get 'toggle_hide' => 'writing_conferences#toggle_hide'
get 'analysis'
get 'analysis_report'
get "download_excel"
end
end

View File

@ -4,7 +4,7 @@ module PersonalConference
OrbitApp.registration "PersonalConference",:type=> 'ModuleApp' do
module_label 'module_name.personal_conference'
base_url File.expand_path File.dirname(__FILE__)
personal_plugin :enable => true, :sort_number => '6', :app_name=>"WritingConference", :intro_app_name=>"PersonalConferenceIntro",:path=>"/plugin/personal_conference/profile",:front_path=>"/profile",:admin_path=>"/admin/writing_conferences",:i18n=>'module_name.personal_conference', :module_app_name=>'PersonalConference', :one_line_title => true, :field_modifiable => true
personal_plugin :enable => true, :sort_number => '6', :app_name=>"WritingConference", :intro_app_name=>"PersonalConferenceIntro",:path=>"/plugin/personal_conference/profile",:front_path=>"/profile",:admin_path=>"/admin/writing_conferences",:i18n=>'module_name.personal_conference', :module_app_name=>'PersonalConference', :one_line_title => true, :field_modifiable => true, :analysis => true, :analysis_path => "/admin/writing_conferences/analysis"
version "0.1"
desktop_enabled true