2014-07-03 04:52:21 +00:00
|
|
|
class PersonalConferencesController < ApplicationController
|
|
|
|
def index
|
2016-03-22 10:00:05 +00:00
|
|
|
params = OrbitHelper.params
|
2016-04-11 11:22:07 +00:00
|
|
|
writing_conferences = WritingConference.where(:is_hidden=>false).sort_for_frontend.page(OrbitHelper.params[:page_no]).per(OrbitHelper.page_data_count)
|
2016-03-22 10:00:05 +00:00
|
|
|
page = Page.where(:page_id => params[:page_id]).first rescue nil
|
|
|
|
if page.custom_string_field == "table"
|
2016-04-01 05:58:56 +00:00
|
|
|
fields_to_show = page.custom_array_field rescue []
|
2016-03-22 10:00:05 +00:00
|
|
|
fields_to_show = [
|
|
|
|
"authors",
|
|
|
|
"paper_title",
|
|
|
|
"conference_title",
|
|
|
|
"location",
|
|
|
|
"paper_types",
|
|
|
|
"paper_levels"
|
2016-04-01 05:58:56 +00:00
|
|
|
] if fields_to_show.blank?
|
2016-03-22 10:00:05 +00:00
|
|
|
else
|
|
|
|
fields_to_show = [
|
|
|
|
"year",
|
|
|
|
"paper_title"
|
|
|
|
]
|
|
|
|
end
|
2019-08-14 05:12:48 +00:00
|
|
|
if params[:selectbox] !=nil
|
|
|
|
writing_conferences = WritingConference.where(:is_hidden=>false)
|
|
|
|
writing_conferences_count = writing_conferences.count
|
|
|
|
writing_conferences_temp = writing_conferences.take(writing_conferences_count).sort_by{ |tp| [-tp[:year].to_i,-tp[:publication_date].to_i] }
|
|
|
|
case params[:selectbox]
|
|
|
|
when "paper_title","default"
|
|
|
|
if page.custom_string_field == "table"
|
|
|
|
writing_conferences_show = writing_conferences_temp.select {|value| value.paper_title.include? params[:keywords]}
|
|
|
|
else
|
|
|
|
writing_conferences_show = writing_conferences_temp.select {|value| value.create_link.include? params[:keywords]}
|
|
|
|
end
|
|
|
|
when "paper_levels"
|
|
|
|
writing_conferences_show = writing_conferences_temp.select {|value| value.conference_paper_levels.collect{|x| x.title}.join(', ').to_s.include? params[:keywords]}
|
|
|
|
when "paper_types"
|
2019-08-14 06:14:53 +00:00
|
|
|
writing_conferences_show = writing_conferences_temp.select {|value| value.conference_paper_types.collect{|x| x.title}.join(', ').to_s.include? params[:keywords]}
|
2019-08-14 05:12:48 +00:00
|
|
|
when "period"
|
|
|
|
writing_conferences_show = writing_conferences_temp.select {|value| value.duration.include? params[:keywords]}
|
|
|
|
when "publication_date"
|
|
|
|
writing_conferences_show = writing_conferences_temp.select {|value| value.send("publication_date").strftime("%Y/%m").collect{|x| x.title}.join(', ').include? params[:keywords]}
|
|
|
|
when "author_type"
|
2019-08-14 05:22:39 +00:00
|
|
|
writing_conferences_show = writing_conferences_temp.select {|value| value.conference_author_types.collect{|cat| cat.title}.join(", ").include? params[:keywords]}
|
2019-08-14 05:12:48 +00:00
|
|
|
else
|
|
|
|
writing_conferences_show = writing_conferences_temp.select {|value| value.send(params[:selectbox]).to_s.include? params[:keywords]}
|
|
|
|
end
|
|
|
|
if params[:page_no].nil?
|
|
|
|
page_to_show = 1
|
|
|
|
else
|
|
|
|
page_to_show = params[:page_no].to_i
|
|
|
|
end
|
|
|
|
writing_conferences_show_last = writing_conferences_show[(page_to_show-1)*OrbitHelper.page_data_count...page_to_show*OrbitHelper.page_data_count]
|
|
|
|
writing_conferences = writing_conferences_show_last
|
|
|
|
writing_conferences_total_pages = (writing_conferences_show.length/OrbitHelper.page_data_count.to_f).ceil
|
|
|
|
else
|
|
|
|
writing_conferences_total_pages = writing_conferences.total_pages
|
|
|
|
end
|
2016-03-22 10:00:05 +00:00
|
|
|
writing_conference_list = []
|
|
|
|
writing_conferences.each do |writing_conference|
|
|
|
|
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(writing_conference.to_param)}'>#{writing_conference.paper_title}</a>"}
|
|
|
|
else
|
|
|
|
t << {"value" => "<a href='#{OrbitHelper.url_to_show(writing_conference.to_param)}'>#{writing_conference.create_link}</a>"}
|
|
|
|
end
|
|
|
|
when "paper_levels"
|
|
|
|
t << {"value" => ( !writing_conference.conference_paper_levels.blank? ? "(#{writing_conference.conference_paper_levels.collect{|x| x.title}.join(', ')})" : nil)}
|
|
|
|
when "paper_types"
|
2019-08-14 06:14:53 +00:00
|
|
|
t << {"value" => ( !writing_conference.conference_paper_types.blank? ? "(#{writing_conference.conference_paper_types.collect{|x| x.title}.join(', ')})" : nil)}
|
2016-04-01 12:58:59 +00:00
|
|
|
when "publication_date"
|
2016-04-11 11:54:51 +00:00
|
|
|
t << {"value" => (writing_conference.send(fs).strftime("%Y/%m") rescue "")}
|
2016-04-01 12:58:59 +00:00
|
|
|
when "author_type"
|
2016-04-06 04:53:45 +00:00
|
|
|
t << {"value" => (writing_conference.conference_author_types.collect{|cat| cat.title}.join(", ") rescue "")}
|
2016-04-06 06:31:26 +00:00
|
|
|
when "period"
|
|
|
|
t << {"value" => writing_conference.duration}
|
2016-03-22 10:00:05 +00:00
|
|
|
else
|
|
|
|
t << {"value" => writing_conference.send(fs)}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
writing_conference_list << {"cps" => t}
|
|
|
|
end
|
2019-08-14 05:22:39 +00:00
|
|
|
choice_show = []
|
2016-03-22 10:00:05 +00:00
|
|
|
headers = []
|
|
|
|
fields_to_show.each do |fs|
|
|
|
|
col = 2
|
|
|
|
col = 3 if fs == "paper_title"
|
|
|
|
headers << {
|
|
|
|
"head-title" => t("personal_conference.#{fs}"),
|
|
|
|
"col" => col
|
2014-07-03 04:52:21 +00:00
|
|
|
}
|
2019-08-14 05:12:48 +00:00
|
|
|
choice_show << t("personal_conference.#{fs}")
|
2014-07-03 04:52:21 +00:00
|
|
|
end
|
2019-08-14 05:12:48 +00:00
|
|
|
choice_value = fields_to_show
|
|
|
|
choice_value.unshift("default")
|
|
|
|
choice_select=choice_value.map{|iter| iter==params[:selectbox] ? "selected" : ""}
|
|
|
|
choice_select=choice_select.map{|value| {"choice_select" => value}}
|
|
|
|
choice_value=choice_value.map{|value| {"choice_value" => value}}
|
|
|
|
choice_default = params[:locale]!='en' ? "——選取分類——" : "——select class——"
|
|
|
|
choice_show.unshift(choice_default)
|
|
|
|
choice_show=choice_show.map{|value| {"choice_show" => value}}
|
|
|
|
choice=choice_value.zip(choice_show,choice_select)
|
|
|
|
choice=choice.map{|value| value.inject:merge}
|
|
|
|
select_text = params[:locale]!='en' ? "搜尋類別:" : "search class:"
|
|
|
|
search_text = params[:locale]!='en' ? "關鍵字搜尋:" : "word to search:"
|
2014-07-03 04:52:21 +00:00
|
|
|
{
|
|
|
|
"writing_conferences" => writing_conference_list,
|
2019-08-14 05:12:48 +00:00
|
|
|
"extras" => { "widget-title" => t("module_name.personal_conference"),
|
|
|
|
"url" => "/"+params[:locale]+params[:url],
|
|
|
|
"select_text" => select_text,
|
|
|
|
"search_text" => search_text,
|
|
|
|
"search_value" => params[:keywords] },
|
2016-03-22 10:00:05 +00:00
|
|
|
"headers" => headers,
|
2019-08-14 05:12:48 +00:00
|
|
|
"total_pages" => writing_conferences_total_pages,
|
|
|
|
"choice" => choice
|
2014-07-03 04:52:21 +00:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def show
|
|
|
|
params = OrbitHelper.params
|
2014-08-01 11:04:43 +00:00
|
|
|
plugin = WritingConference.where(:is_hidden=>false).find_by(uid: params[:uid])
|
|
|
|
|
|
|
|
fields_to_show = [
|
2015-01-09 07:32:31 +00:00
|
|
|
"year",
|
|
|
|
"authors",
|
|
|
|
"paper_title",
|
|
|
|
"conference_title",
|
|
|
|
"location",
|
|
|
|
"period_start_date",
|
|
|
|
"period_end_date",
|
2016-04-06 06:31:26 +00:00
|
|
|
"period",
|
2015-01-09 07:32:31 +00:00
|
|
|
"paper_type",
|
|
|
|
"paper_level",
|
|
|
|
"sponsor",
|
|
|
|
"author_type",
|
|
|
|
"number_of_authors",
|
|
|
|
"abstract",
|
|
|
|
"url",
|
|
|
|
"file",
|
|
|
|
"publication_date",
|
|
|
|
"isbn",
|
|
|
|
"isi_number" ,
|
|
|
|
"language"
|
|
|
|
]
|
2014-08-01 11:04:43 +00:00
|
|
|
|
|
|
|
{"plugin_datas"=>plugin.get_plugin_data(fields_to_show)}
|
2014-07-03 04:52:21 +00:00
|
|
|
end
|
2016-04-01 05:58:56 +00:00
|
|
|
|
|
|
|
def get_fields_for_index
|
|
|
|
@page = Page.find(params[:page_id]) rescue nil
|
|
|
|
@fields_to_show = [
|
|
|
|
"year",
|
|
|
|
"authors",
|
|
|
|
"paper_title",
|
|
|
|
"conference_title",
|
|
|
|
"location",
|
|
|
|
"period_start_date",
|
|
|
|
"period_end_date",
|
2016-04-06 06:31:26 +00:00
|
|
|
"period",
|
2016-04-01 05:58:56 +00:00
|
|
|
"paper_type",
|
|
|
|
"paper_level",
|
|
|
|
"sponsor",
|
|
|
|
"author_type",
|
|
|
|
"number_of_authors",
|
|
|
|
"abstract",
|
|
|
|
"url",
|
|
|
|
"publication_date",
|
|
|
|
"isbn",
|
|
|
|
"isi_number" ,
|
|
|
|
"language"
|
|
|
|
]
|
|
|
|
@fields_to_show = @fields_to_show.map{|fs| [t("personal_conference.#{fs}"), fs]}
|
|
|
|
@default_fields_to_show = [
|
|
|
|
"authors",
|
|
|
|
"paper_title",
|
|
|
|
"conference_title",
|
|
|
|
"location",
|
|
|
|
"paper_types",
|
|
|
|
"paper_levels"
|
|
|
|
]
|
|
|
|
render :layout => false
|
|
|
|
end
|
|
|
|
|
|
|
|
def save_index_fields
|
|
|
|
page = Page.find(params[:page_id]) rescue nil
|
|
|
|
page.custom_array_field = params[:keys]
|
|
|
|
page.save
|
|
|
|
render :json => {"success" => true}.to_json
|
|
|
|
end
|
2014-07-03 04:52:21 +00:00
|
|
|
end
|