From 71f37eeba33af8cc670426c4b4727460abb98eae Mon Sep 17 00:00:00 2001 From: chiu Date: Tue, 20 Aug 2019 10:39:43 +0800 Subject: [PATCH] Update personal_journals_controller.rb coding style fix --- .../personal_journals_controller.rb | 322 ++++++++++-------- 1 file changed, 185 insertions(+), 137 deletions(-) diff --git a/app/controllers/personal_journals_controller.rb b/app/controllers/personal_journals_controller.rb index 5bcff11..682acb4 100644 --- a/app/controllers/personal_journals_controller.rb +++ b/app/controllers/personal_journals_controller.rb @@ -2,54 +2,76 @@ class PersonalJournalsController < ApplicationController def index params = OrbitHelper.params page_data_count = OrbitHelper.page_data_count - journal_papers = JournalPaper.where(:is_hidden=>false).sort_for_frontend.page(OrbitHelper.params[:page_no]).per(page_data_count) - page = Page.where(:page_id => params[:page_id]).first rescue nil - if page.custom_string_field == "table" - fields_to_show = page.custom_array_field rescue [] - fields_to_show = [ - "paper_title", - "journal_title", - "authors", - "year", - "issue_no", - "vol_no", - "level_type" - ] if fields_to_show.blank? + journal_papers = JournalPaper.where(is_hidden: false).sort_for_frontend.page(OrbitHelper.params[:page_no]).per(page_data_count) + page = begin + Page.where(page_id: params[:page_id]).first + rescue StandardError + nil + end + if page.custom_string_field == 'table' + fields_to_show = begin + page.custom_array_field + rescue StandardError + [] + end + if fields_to_show.blank? + fields_to_show = %w[ + paper_title + journal_title + authors + year + issue_no + vol_no + level_type + ] + end else - fields_to_show = [ - "year", - "paper_title" + fields_to_show = %w[ + year + paper_title ] end - if params[:selectbox] !=nil - journal_papers_temp = JournalPaper.where(:is_hidden=>false).sort_by{ |tp| [-tp[:year].to_i,-tp[:publication_date].to_i] } + if !params[:selectbox].nil? + journal_papers_temp = JournalPaper.where(is_hidden: false).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" - journal_papers_show = journal_papers_temp.select {|value| search_all_words(value.paper_title, params[:keywords])} + when 'paper_title', 'default' + if page.custom_string_field == 'table' + journal_papers_show = journal_papers_temp.select { |value| search_all_words(value.paper_title, params[:keywords]) } else - journal_papers_show = journal_papers_temp.select {|value| search_all_words(value.create_link, params[:keywords])} + journal_papers_show = journal_papers_temp.select { |value| search_all_words(value.create_link, params[:keywords]) } end - when "level_type" - journal_papers_show = journal_papers_temp.select {|value| search_all_words(value.journal_levels.collect{|x| x.title}.join(', ').to_s, params[:keywords])} - when "publication_date" - journal_papers_show = journal_papers_temp.select {|value| search_all_words((value.send("publication_date").strftime("%Y/%m/%d") rescue ""), params[:keywords])} - when "author_type" - journal_papers_show = journal_papers_temp.select {|value| search_all_words(value.journal_paper_author_types.collect{|jat| jat.title}.join(", "), params[:keywords])} - when "paper_type" - journal_papers_show = journal_papers_temp.select {|value| search_all_words((value.journal_paper_type.title rescue ""), params[:keywords])} - when "language" - journal_papers_show = journal_papers_temp.select {|value| search_all_words((!value.language.nil? ? t("#{value.language}") : ""), params[:keywords])} + when 'level_type' + journal_papers_show = journal_papers_temp.select { |value| search_all_words(value.journal_levels.collect(&:title).join(', ').to_s, params[:keywords]) } + when 'publication_date' + journal_papers_show = journal_papers_temp.select do |value| + search_all_words((begin + value.send('publication_date').strftime('%Y/%m/%d') + rescue StandardError + '' + end), params[:keywords]) + end + when 'author_type' + journal_papers_show = journal_papers_temp.select { |value| search_all_words(value.journal_paper_author_types.collect(&:title).join(', '), params[:keywords]) } + when 'paper_type' + journal_papers_show = journal_papers_temp.select do |value| + search_all_words((begin + value.journal_paper_type.title + rescue StandardError + '' + end), params[:keywords]) + end + when 'language' + journal_papers_show = journal_papers_temp.select { |value| search_all_words((!value.language.nil? ? t(value.language.to_s) : ''), params[:keywords]) } else - journal_papers_show = journal_papers_temp.select {|value| search_all_words(value.send(params[:selectbox]).to_s, params[:keywords])} + journal_papers_show = journal_papers_temp.select { |value| search_all_words(value.send(params[:selectbox]).to_s, params[:keywords]) } end - if params[:page_no].nil? - page_to_show = 1 - else - page_to_show = params[:page_no].to_i - end - journal_papers = journal_papers_show[(page_to_show-1)*page_data_count...page_to_show*page_data_count] - journal_papers_total_pages = (journal_papers_show.length/page_data_count.to_f).ceil + page_to_show = if params[:page_no].nil? + 1 + else + params[:page_no].to_i + end + journal_papers = journal_papers_show[(page_to_show - 1) * page_data_count...page_to_show * page_data_count] + journal_papers_total_pages = (journal_papers_show.length / page_data_count.to_f).ceil else journal_papers_total_pages = journal_papers.total_pages end @@ -58,135 +80,161 @@ class PersonalJournalsController < ApplicationController t = [] fields_to_show.each do |fs| case fs - when "paper_title" - if page.custom_string_field == "table" - t << {"value" => "#{journal_paper.paper_title}"} + when 'paper_title' + if page.custom_string_field == 'table' + t << { 'value' => "#{journal_paper.paper_title}" } else - t << {"value" => "#{journal_paper.create_link}"} + t << { 'value' => "#{journal_paper.create_link}" } end - when "level_type" - t << {"value" => ( !journal_paper.journal_levels.blank? ? "(#{journal_paper.journal_levels.collect{|x| x.title}.join(', ')})" : nil)} - when "publication_date" - t << {"value" => (journal_paper.send(fs).strftime("%Y/%m") rescue "")} - when "author_type" - t << {"value" => (journal_paper.journal_paper_author_types.collect{|jat| jat.title}.join(", ") rescue "")} - when "paper_type" - t << {"value" => (journal_paper.journal_paper_type.title rescue "")} - when "language" - t << {"value" => (!journal_paper.language.nil? ? t("#{journal_paper.language}") : "")} + when 'level_type' + t << { 'value' => (!journal_paper.journal_levels.blank? ? "(#{journal_paper.journal_levels.collect(&:title).join(', ')})" : nil) } + when 'publication_date' + t << { 'value' => (begin + journal_paper.send(fs).strftime('%Y/%m') + rescue StandardError + '' + end) } + when 'author_type' + t << { 'value' => (begin + journal_paper.journal_paper_author_types.collect(&:title).join(', ') + rescue StandardError + '' + end) } + when 'paper_type' + t << { 'value' => (begin + journal_paper.journal_paper_type.title + rescue StandardError + '' + end) } + when 'language' + t << { 'value' => (!journal_paper.language.nil? ? t(journal_paper.language.to_s) : '') } else - t << {"value" => (journal_paper.send(fs) rescue "")} + t << { 'value' => (begin + journal_paper.send(fs) + rescue StandardError + '' + end) } end end - journal_paper_list << {"jps" => t} + journal_paper_list << { 'jps' => t } end headers = [] choice_show = [] fields_to_show.each do |fs| col = 2 - col = 3 if fs == "paper_title" + col = 3 if fs == 'paper_title' headers << { - "head-title" => t("personal_journal.#{fs}"), - "col" => col + 'head-title' => t("personal_journal.#{fs}"), + 'col' => col } choice_show << t("personal_journal.#{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 = t("personal_journal.select_class") + 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 = t('personal_journal.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 = t("personal_journal.search_class") - search_text = t("personal_journal.word_to_search") + 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 = t('personal_journal.search_class') + search_text = t('personal_journal.word_to_search') { - "journal_papers" => journal_paper_list, - "headers" => headers, - "extras" => {"widget-title" => t("module_name.journal_paper"), - "url" => "/"+params[:locale]+params[:url], - "select_text" => select_text, - "search_text" => search_text, - "search_value" => params[:keywords]}, - "total_pages" => journal_papers_total_pages, - "choice" => choice + 'journal_papers' => journal_paper_list, + 'headers' => headers, + 'extras' => { 'widget-title' => t('module_name.journal_paper'), + 'url' => '/' + params[:locale] + params[:url], + 'select_text' => select_text, + 'search_text' => search_text, + 'search_value' => params[:keywords] }, + 'total_pages' => journal_papers_total_pages, + 'choice' => choice } 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 = JournalPaper.where(is_hidden: false).find_by(uid: params[:uid]) + fields_to_show = %w[ + 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)} + { 'plugin_datas' => plugin.get_plugin_data(fields_to_show) } end + def get_fields_for_index - @page = Page.find(params[:page_id]) rescue nil - @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" + @page = begin + Page.find(params[:page_id]) + rescue StandardError + nil + end + @fields_to_show = %w[ + 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 ] - @fields_to_show = @fields_to_show.map{|fs| [t("personal_journal.#{fs}"), fs]} - @default_fields_to_show = [ - "paper_title", - "journal_title", - "authors", - "year", - "issue_no", - "vol_no", - "level_type" + @fields_to_show = @fields_to_show.map { |fs| [t("personal_journal.#{fs}"), fs] } + @default_fields_to_show = %w[ + paper_title + journal_title + authors + year + issue_no + vol_no + level_type ] - render :layout => false + render layout: false end def save_index_fields - page = Page.find(params[:page_id]) rescue nil + page = begin + Page.find(params[:page_id]) + rescue StandardError + nil + end page.custom_array_field = params[:keys] page.save - render :json => {"success" => true}.to_json + render json: { 'success' => true }.to_json end -private - def search_all_words(target,word) - target=target.upcase - words=word.upcase.split(' ') - return words.select{|value| target.include? value}==words + + private + + def search_all_words(target, word) + target = target.upcase + words = word.upcase.split(' ') + words.select { |value| target.include? value } == words end end