From 51eb98dc23c71176fc9b4574cb4bebeacf42a1b9 Mon Sep 17 00:00:00 2001 From: chiu Date: Wed, 14 Aug 2019 13:12:48 +0800 Subject: [PATCH] Update personal_conferences_controller.rb --- .../personal_conferences_controller.rb | 59 +++++++++++++++++-- 1 file changed, 55 insertions(+), 4 deletions(-) diff --git a/app/controllers/personal_conferences_controller.rb b/app/controllers/personal_conferences_controller.rb index a3c2dc2..c214e7b 100644 --- a/app/controllers/personal_conferences_controller.rb +++ b/app/controllers/personal_conferences_controller.rb @@ -19,7 +19,41 @@ class PersonalConferencesController < ApplicationController "paper_title" ] end - + 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" + writing_conferences_show = writing_conferences_temp.select {|value| value.conference_paper_levels.collect{|x| x.title}.join(', ').to_s.include? params[:keywords]} + 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" + writing_conferences_show = writing_conferences_temp.select {|value| value.journal_paper_author_types.collect{|cat| cat.title}.join(", ").include? params[:keywords]} + 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 writing_conference_list = [] writing_conferences.each do |writing_conference| t = [] @@ -56,13 +90,30 @@ class PersonalConferencesController < ApplicationController "head-title" => t("personal_conference.#{fs}"), "col" => col } + choice_show << t("personal_conference.#{fs}") end - + 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:" { "writing_conferences" => writing_conference_list, - "extras" => { "widget-title" => t("module_name.personal_conference") }, + "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] }, "headers" => headers, - "total_pages" => writing_conferences.total_pages + "total_pages" => writing_conferences_total_pages, + "choice" => choice } end