88 lines
2.4 KiB
Ruby
88 lines
2.4 KiB
Ruby
class PersonalJournalsController < ApplicationController
|
|
def index
|
|
params = OrbitHelper.params
|
|
journal_papers = JournalPaper.where(:is_hidden=>false).order_by(:year=>'desc').page(OrbitHelper.params[:page_no]).per(OrbitHelper.page_data_count)
|
|
page = Page.where(:page_id => params[:page_id]).first rescue nil
|
|
if page.custom_string_field == "table"
|
|
fields_to_show = [
|
|
"paper_title",
|
|
"journal_title",
|
|
"authors",
|
|
"year",
|
|
"issue_no",
|
|
"vol_no",
|
|
"level_type"
|
|
]
|
|
else
|
|
fields_to_show = [
|
|
"year",
|
|
"paper_title"
|
|
]
|
|
end
|
|
journal_paper_list = []
|
|
journal_papers.each do |journal_paper|
|
|
t = []
|
|
fields_to_show.each do |fs|
|
|
case fs
|
|
when "paper_title"
|
|
if page.custom_string_field == "table"
|
|
t << {"value" => "<a href='#{OrbitHelper.url_to_show(journal_paper.to_param)}'>#{journal_paper.paper_title}</a>"}
|
|
else
|
|
t << {"value" => "<a href='#{OrbitHelper.url_to_show(journal_paper.to_param)}'>#{journal_paper.create_link}</a>"}
|
|
end
|
|
when "level_type"
|
|
t << {"value" => ( !journal_paper.journal_levels.blank? ? "(#{journal_paper.journal_levels.collect{|x| x.title}.join(', ')})" : nil)}
|
|
else
|
|
t << {"value" => journal_paper.send(fs)}
|
|
end
|
|
end
|
|
journal_paper_list << {"jps" => t}
|
|
end
|
|
|
|
headers = []
|
|
fields_to_show.each do |fs|
|
|
col = 2
|
|
col = 3 if fs == "paper_title"
|
|
headers << {
|
|
"head-title" => t("personal_journal.#{fs}"),
|
|
"col" => col
|
|
}
|
|
end
|
|
|
|
{
|
|
"journal_papers" => journal_paper_list,
|
|
"headers" => headers,
|
|
"extras" => {"widget-title" => t("module_name.journal_paper")},
|
|
"total_pages" => journal_papers.total_pages
|
|
}
|
|
end
|
|
|
|
def show
|
|
params = OrbitHelper.params
|
|
plugin = JournalPaper.where(:is_hidden=>false).find_by(uid: params[:uid])
|
|
fields_to_show = [
|
|
"year",
|
|
"authors",
|
|
"author_type",
|
|
"paper_title",
|
|
"journal_title",
|
|
"vol_no",
|
|
"issue_no",
|
|
"form_to_start",
|
|
"form_to_end",
|
|
"level_type",
|
|
"paper_type",
|
|
"total_pages",
|
|
"publication_date",
|
|
"isbn",
|
|
"abstract",
|
|
"language",
|
|
"url",
|
|
"associated_project",
|
|
"file"
|
|
]
|
|
|
|
{"plugin_datas"=>plugin.get_plugin_data(fields_to_show)}
|
|
end
|
|
end
|